diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json deleted file mode 100644 index c0ed497..0000000 --- a/.codesandbox/ci.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "sandboxes": [ - "new", - "simple-parser-2xxljf" - ], - "node": "18" -} diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 16eda10..a48a2d8 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: ['18', '22'] + node: ['22'] name: Node ${{ matrix.node }} build steps: @@ -31,3 +31,4 @@ jobs: - run: node pkg-tests/node-load.cjs - run: node pkg-tests/node-load.mjs - run: node pkg-tests/node-umd.mjs + - run: pnpm dlx pkg-pr-new publish diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e59122d..d92cc8c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: - name: Setup node uses: actions/setup-node@v2 with: - node-version: '20.x' + node-version: '22.x' - uses: pnpm/action-setup@v3 with: @@ -36,7 +36,7 @@ jobs: - name: Setup node uses: actions/setup-node@v2 with: - node-version: '20.x' + node-version: '22.x' - name: Set tag id: tagName diff --git a/.prettierrc b/.prettierrc index b8fab9b..f9eedc5 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,5 @@ { - "singleQuote": true, + "singleQuote": false, "printWidth": 120, "trailingComma": "es5" } diff --git a/README.md b/README.md index 0eb3adc..0e3fcee 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ npm i @iiif/parser This is a parser and set of low-level utilities for the following IIIF Specifications: - [IIIF Presentation 3](https://iiif.io/api/presentation/3.0/) (current) +- [IIIF Presentation 4](https://preview.iiif.io/api/prezi-4/presentation/4.0/) (preview support via `/presentation-4`) - [IIIF Image 3](https://iiif.io/api/image/3.0/) (current) - [IIIF Presentation 2](https://iiif.io/api/presentation/2.1/) @@ -16,12 +17,41 @@ These include: > [!NOTE] -> A new version of the IIIF Presentation API is being developed (v4) which handles 3D content. This parser will -> support this version soon. You can read about the additions [here](https://github.com/IIIF/3d/blob/main/temp-draft-4.md) +> Presentation API v4 support is available from `@iiif/parser/presentation-4` and is designed for mixed v2.1/v3.0/v4.0 ingestion with a v4 normalization pipeline. ### Features The features of this library are focussed on encoding the structure of all types of IIIF and providing utilities for extracting data from the IIIF or converting it into another format that is easier to develop with. The aim of the parser is to maximize the IIIF compatibility of other tools built on top of it. +#### Type Modules and DX Helpers + +Type surfaces are available directly from parser subpaths: + +- `@iiif/parser/presentation-2/types` +- `@iiif/parser/presentation-3/types` +- `@iiif/parser/presentation-3-normalized/types` +- `@iiif/parser/presentation-4/types` +- `@iiif/parser/presentation-4-normalized/types` + +The versioned parser entrypoints also re-export `infer`, `cast` and `narrow` helpers: + +```ts +import { infer, cast, narrow, type Manifest } from '@iiif/parser/presentation-3'; + +const manifest = { + id: 'https://example.org/manifest', + type: 'Manifest', + label: { en: ['Example'] }, + items: [], +} satisfies Manifest; + +const typed = infer.Manifest(manifest); +const checked = cast.Manifest(manifest); + +if (narrow.isImage({ id: 'https://example.org/image.jpg', type: 'Image' })) { + // narrowed image resource +} +``` + #### IIIF Presentation 3 - **Empty types** for each resource (e.g. Manifest, Canvas) which can be used as starting points for creating IIIF @@ -104,6 +134,35 @@ export type TraversalMap = { }; ``` +#### IIIF Presentation 4 + +- `upgradeToPresentation4()` to ingest v2.1, v3.0 or v4.0 into a v4-compatible shape +- `Traverse` with v4 container support (`Timeline`, `Canvas`, `Scene`) +- `normalize()` with deterministic ID minting for missing IDs +- `validatePresentation4()` with traversal-first diagnostics (`tolerant` or `strict`) +- `serializeConfigPresentation4` for native v4 output +- `serializeConfigPresentation3` for strict v4→v3 downgrade (fails on unsupported v4-only constructs) +- `pnpm run update-cookbook-v4` to refresh local `fixtures/cookbook-v4` from [preview cookbook v4](https://preview.iiif.io/cookbook/v4/) + +```ts +import { + upgradeToPresentation4, + normalize, + validatePresentation4, + serialize, + serializeConfigPresentation4 +} from '@iiif/parser/presentation-4'; + +const upgraded = upgradeToPresentation4(loadSomeManifest()); +const report = validatePresentation4(upgraded); +const normalized = normalize(upgraded); +const serialized = serialize( + { entities: normalized.entities, mapping: normalized.mapping, requests: {} }, + normalized.resource, + serializeConfigPresentation4 +); +``` + #### Image 3 The Image 3 parser is adapted from an Image Server implementation, and supports: @@ -128,7 +187,7 @@ The Image 3 parser is adapted from an Image Server implementation, and supports: ```ts import { parseImageServiceRequest, imageServiceRequestInfo } from '@iiif/parser/image-3'; -import { ImageService } from '@iiif/presentation-3'; +import { ImageService } from '@iiif/parser/presentation-3/types'; const parsed = parseImageServiceRequest( 'https://munch.emuseum.com/apis/iiif/image/v2/17261/full/max/0/default.jpg', diff --git a/__tests__/image-3-parser/supports.test.ts b/__tests__/image-3-parser/supports.test.ts index eddbce0..9d6fb18 100644 --- a/__tests__/image-3-parser/supports.test.ts +++ b/__tests__/image-3-parser/supports.test.ts @@ -1,6 +1,6 @@ // noinspection DuplicatedCode -import { ImageService } from '@iiif/presentation-3'; +import { ImageService } from '../../src/presentation-3/types'; import { imageServiceRequestToString, parseImageServiceRequest, diff --git a/__tests__/presentation-3-parser/__snapshots__/cookbook.tests.ts.snap b/__tests__/presentation-3-parser/__snapshots__/cookbook.tests.ts.snap index b3097ed..a16b5db 100644 --- a/__tests__/presentation-3-parser/__snapshots__/cookbook.tests.ts.snap +++ b/__tests__/presentation-3-parser/__snapshots__/cookbook.tests.ts.snap @@ -1,6 +1,6 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`Cookbook > Testing normalize %p (%p) 0001-mvm-image https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 1`] = ` { "entities": { "Agent": {}, @@ -177,7 +177,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0001-mvm-image https://iiif.io/api } `; -exports[`Cookbook > Testing normalize %p (%p) 0001-mvm-image https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 2`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json", @@ -219,7 +219,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0001-mvm-image https://iiif.io/api } `; -exports[`Cookbook > Testing normalize %p (%p) 0002-mvm-audio https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 3`] = ` { "entities": { "Agent": {}, @@ -395,7 +395,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0002-mvm-audio https://iiif.io/api } `; -exports[`Cookbook > Testing normalize %p (%p) 0002-mvm-audio https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 4`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json", @@ -435,7 +435,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0002-mvm-audio https://iiif.io/api } `; -exports[`Cookbook > Testing normalize %p (%p) 0003-mvm-video https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 5`] = ` { "entities": { "Agent": {}, @@ -613,7 +613,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0003-mvm-video https://iiif.io/api } `; -exports[`Cookbook > Testing normalize %p (%p) 0003-mvm-video https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 6`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json", @@ -657,226 +657,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0003-mvm-video https://iiif.io/api } `; -exports[`Cookbook > Testing normalize %p (%p) 0004-canvas-size https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image": { - "body": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 1080, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", - "type": "AnnotationPage", - }, - ], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 1920, - }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { - "format": "image/png", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", - "type": "Image", - }, - ], - "type": "Image", - "width": 640, - }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", - "type": "Manifest", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Still image from an opera performance at Indiana University", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": {}, - }, - "mapping": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1": "AnnotationPage", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0004-canvas-size https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", - "items": [ - { - "height": 1080, - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", - "items": [ - { - "body": { - "format": "image/png", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "type": "Image", - "width": 640, - }, - "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 1920, - }, - ], - "label": { - "en": [ - "Still image from an opera performance at Indiana University", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0005-image-service https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 7`] = ` { "entities": { "Agent": {}, @@ -1070,7 +851,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0005-image-service https://iiif.io } `; -exports[`Cookbook > Testing normalize %p (%p) 0005-image-service https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 8`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", @@ -1124,7 +905,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0005-image-service https://iiif.io } `; -exports[`Cookbook > Testing normalize %p (%p) 0006-text-language https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 9`] = ` { "entities": { "Agent": {}, @@ -1372,7 +1153,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0006-text-language https://iiif.io } `; -exports[`Cookbook > Testing normalize %p (%p) 0006-text-language https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 10`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json", @@ -1482,23 +1263,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0006-text-language https://iiif.io } `; -exports[`Cookbook > Testing normalize %p (%p) 0007-string-formats https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 11`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", "type": "Annotation", }, ], @@ -1507,7 +1288,115 @@ exports[`Cookbook > Testing normalize %p (%p) 0007-string-formats https://iiif.i ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", "type": "Canvas", }, "type": "SpecificResource", @@ -1517,20 +1406,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0007-string-formats https://iiif.i }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", "type": "Annotation", }, ], @@ -1546,27 +1435,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0007-string-formats https://iiif.i "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1": { "behavior": [], - "duration": 0, - "height": 3024, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", "type": "AnnotationPage", }, ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", + "type": "Annotation", + }, + ], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -1575,266 +1462,222 @@ exports[`Cookbook > Testing normalize %p (%p) 0007-string-formats https://iiif.i "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 4032, + "type": "AnnotationPage", }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "type": "AnnotationPage", }, ], - "service": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", + "type": "Annotation", }, ], - "type": "Image", - "width": 4032, + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", + "type": "Annotation", }, ], - "label": { - "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", - ], - }, - "metadata": [ + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", + "iiif-parser:hasPart": [ { - "label": { - "en": [ - "Author", - ], - }, - "value": { - "none": [ - "Glen Robson", - ], - }, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "type": "AnnotationPage", }, ], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], "provider": [], "rendering": [], - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 ", - ], - }, - }, - "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "requiredStatement": null, + "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], - "summary": { - "en": [ - "

Picture taken by the IIIF Technical Coordinator

", - ], - }, + "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0007-string-formats https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", - "items": [ - { - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4032, - }, - "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 4032, - }, - ], - "label": { - "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Author", - ], - }, - "value": { - "none": [ - "Glen Robson", - ], - }, - }, - ], - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 ", - ], - }, - }, - "rights": "http://creativecommons.org/licenses/by-sa/3.0/", - "summary": { - "en": [ - "

Picture taken by the IIIF Technical Coordinator

", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0008-rights https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image": { - "body": [ + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4613, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "type": "AnnotationPage", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", - "iiif-parser:hasPart": [ + "label": { + "en": [ + "Blank page", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 3204, + }, + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4612, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", + "type": "AnnotationPage", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", + "label": { + "en": [ + "Frontispiece", + ], }, - "type": "Annotation", + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 3186, }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 4613, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", "type": "AnnotationPage", }, ], + "label": { + "en": [ + "Title page", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 3204, + }, + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4578, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "Blank page", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -1843,25 +1686,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0008-rights https://iiif.io/api/co "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 3174, }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 3024, + "height": 4632, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "Bookplate", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -1875,57 +1721,159 @@ exports[`Cookbook > Testing normalize %p (%p) 0008-rights https://iiif.io/api/co "summary": null, "thumbnail": [], "type": "Canvas", - "width": 4032, + "width": 3198, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "height": 4613, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4032, + "width": 3204, + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4612, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3186, + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4613, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3204, + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4578, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3174, + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4632, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3198, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [], + "behavior": [ + "paged", + ], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", "type": "Canvas", }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "Simple Manifest - Book", ], }, "metadata": [], @@ -1934,29 +1882,14 @@ exports[`Cookbook > Testing normalize %p (%p) 0008-rights https://iiif.io/api/co "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 ", - ], - }, - }, - "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "requiredStatement": null, + "rights": null, "seeAlso": [], "service": [], "services": [], "start": null, "structures": [], - "summary": { - "en": [ - "

Picture taken by the IIIF Technical Coordinator

", - ], - }, + "summary": null, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", @@ -1965,192 +1898,293 @@ exports[`Cookbook > Testing normalize %p (%p) 0008-rights https://iiif.io/api/co "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0008-rights https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 12`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "behavior": [ + "paged", + ], + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", "items": [ { - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "height": 4613, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "height": 4613, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4032, + "width": 3204, }, - "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "label": { + "en": [ + "Blank page", + ], + }, "type": "Canvas", - "width": 4032, - }, - ], - "label": { - "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", - ], - }, - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 ", - ], + "width": 3204, }, - }, - "rights": "http://creativecommons.org/licenses/by-sa/3.0/", - "summary": { - "en": [ - "

Picture taken by the IIIF Technical Coordinator

", + { + "height": 4612, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4612, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3186, + }, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Frontispiece", + ], + }, + "type": "Canvas", + "width": 3186, + }, + { + "height": 4613, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4613, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3204, + }, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Title page", + ], + }, + "type": "Canvas", + "width": 3204, + }, + { + "height": 4578, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4578, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3174, + }, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Blank page", + ], + }, + "type": "Canvas", + "width": 3174, + }, + { + "height": 4632, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4632, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3198, + }, + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Bookplate", + ], + }, + "type": "Canvas", + "width": 3198, + }, + ], + "label": { + "en": [ + "Simple Manifest - Book", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 13`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", "type": "Annotation", }, ], @@ -2159,34 +2193,34 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "id": "vault://8c31cd02", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", "type": "Annotation", }, ], "motivation": [ - "painting", + "commenting", ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", "type": "Canvas", }, "type": "SpecificResource", @@ -2196,20 +2230,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", "type": "Annotation", }, ], @@ -2225,20 +2259,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", "type": "Annotation", }, ], @@ -2254,25 +2288,32 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", - "iiif-parser:hasPart": [ + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1": { + "accompanyingCanvas": null, + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", "type": "AnnotationPage", }, ], + "behavior": [], + "duration": 0, + "height": 3024, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "type": "AnnotationPage", }, ], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -2281,119 +2322,72 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 4032, }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "type": "Image", }, ], - "items": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "type": "Image", + "width": 4032, }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", + "vault://8c31cd02": { + "format": "text/html", + "id": "vault://8c31cd02", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", - "type": "Annotation", + "id": "vault://8c31cd02", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "type": "TextualBody", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "language": "de", + "type": "TextualBody", + "value": "

Göttinger Marktplatz mit Gänseliesel Brunnen Wikipedia logo

", }, }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1": { + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4613, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "type": "Manifest", }, ], - "label": { - "en": [ - "Blank page", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 3204, - }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4612, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas", }, ], "label": { "en": [ - "Frontispiece", + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "metadata": [], @@ -2406,32 +2400,163 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 3186, + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4613, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Title page", + }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + "vault://8c31cd02": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 14`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "items": [ + { + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "items": [ + { + "body": { + "format": "text/html", + "language": "de", + "type": "TextualBody", + "value": "

Göttinger Marktplatz mit Gänseliesel Brunnen Wikipedia logo

", + }, + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "motivation": "commenting", + "target": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Annotation", + }, ], + "type": "AnnotationPage", }, - "metadata": [], - "navDate": null, + ], + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4032, + }, + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "type": "Canvas", + "width": 4032, + }, + ], + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference", + ], + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 15`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": {}, + "AnnotationCollection": {}, + "AnnotationPage": {}, + "Canvas": {}, + "Collection": { + "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", + "type": "Collection", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "The Gulf Stream", + ], + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "Northeaster", + ], + }, + "type": "Manifest", + }, + ], + "label": { + "en": [ + "Simple Collection Example", + ], + }, + "metadata": [], + "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], @@ -2440,28 +2565,26 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co "rights": null, "seeAlso": [], "service": [], + "services": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 3204, + "type": "Collection", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4": { + }, + "ContentResource": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4578, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "iiif-parser:isExternal": true, + "items": [], "label": { "en": [ - "Blank page", + "The Gulf Stream", ], }, "metadata": [], @@ -2474,28 +2597,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 3174, + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4632, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "iiif-parser:isExternal": true, + "items": [], "label": { "en": [ - "Bookplate", + "Northeaster", ], }, "metadata": [], @@ -2508,165 +2628,237 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 3198, + "type": "Manifest", + "viewingDirection": "left-to-right", }, }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4613, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", - "type": "Image", - }, + "Range": {}, + "Selector": {}, + "Service": {}, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json": "Collection", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": "Manifest", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", + "type": "Collection", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 16`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "label": { + "en": [ + "The Gulf Stream", ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", - "profile": "level1", - "type": "ImageService3", - }, + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "label": { + "en": [ + "Northeaster", ], - "type": "Image", - "width": 3204, }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4612, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", - "iiif-parser:hasPart": [ + "type": "Manifest", + }, + ], + "label": { + "en": [ + "Simple Collection Example", + ], + }, + "type": "Collection", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 17`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image": { + "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", - "type": "Image", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "service": [ + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "type": "Annotation", }, ], - "type": "Image", - "width": 3186, + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4613, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "AnnotationPage", }, ], - "service": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "type": "Annotation", }, ], - "type": "Image", - "width": 3204, + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4578, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", - "type": "Image", - }, - ], - "service": [ + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 3540, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "type": "AnnotationPage", }, ], - "type": "Image", - "width": 3174, + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 5886, }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg": { + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4632, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "height": 3540, + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3198, + "width": 5886, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [ - "paged", - ], + "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", "type": "Canvas", }, ], "label": { "en": [ - "Simple Manifest - Book", + "The Gulf Stream", ], }, - "metadata": [], + "metadata": [ + { + "label": { + "en": [ + "Artist", + ], + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)", + ], + }, + }, + { + "label": { + "en": [ + "Date", + ], + }, + "value": { + "en": [ + "1899", + ], + }, + }, + ], "navDate": null, "partOf": [], "placeholderCanvas": null, @@ -2688,347 +2880,409 @@ exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/co "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art": { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0009-book-1 https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 18`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "behavior": [ - "paged", - ], - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", "items": [ { - "height": 4613, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "height": 3540, + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4613, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "height": 3540, + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3204, + "width": 5886, }, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "type": "Canvas", + "width": 5886, + }, + ], + "label": { + "en": [ + "The Gulf Stream", + ], + }, + "metadata": [ + { "label": { "en": [ - "Blank page", + "Artist", + ], + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)", ], }, - "type": "Canvas", - "width": 3204, }, { - "height": 4612, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4612, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3186, - }, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0002-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], "label": { "en": [ - "Frontispiece", + "Date", + ], + }, + "value": { + "en": [ + "1899", ], }, - "type": "Canvas", - "width": 3186, }, - { - "height": 4613, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4613, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3204, - }, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", - "type": "Annotation", - }, + ], + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 19`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 2572, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "type": "AnnotationPage", + }, + ], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 3764, + }, + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2572, + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3764, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Northeaster", ], - "type": "AnnotationPage", }, - ], - "label": { - "en": [ - "Title page", + "metadata": [ + { + "label": { + "en": [ + "Artist", + ], + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)", + ], + }, + }, + { + "label": { + "en": [ + "Date", + ], + }, + "value": { + "en": [ + "1895", + ], + }, + }, ], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "type": "Canvas", - "width": 3204, }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895": { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 20`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "items": [ { - "height": 4578, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "height": 2572, + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4578, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "height": 2572, + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3174, + "width": 3764, }, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "target": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "type": "Canvas", + "width": 3764, + }, + ], + "label": { + "en": [ + "Northeaster", + ], + }, + "metadata": [ + { "label": { "en": [ - "Blank page", + "Artist", + ], + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)", ], }, - "type": "Canvas", - "width": 3174, }, { - "height": 4632, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4632, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3198, - }, - "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0005-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], "label": { "en": [ - "Bookplate", + "Date", + ], + }, + "value": { + "en": [ + "1895", ], }, - "type": "Canvas", - "width": 3198, }, ], - "label": { - "en": [ - "Simple Manifest - Book", - ], - }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-manifest-rtl https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 21`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", "type": "Annotation", }, ], @@ -3037,25 +3291,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", "type": "Annotation", }, ], @@ -3064,25 +3318,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", "type": "Annotation", }, ], @@ -3091,7 +3345,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", "type": "Canvas", }, "type": "SpecificResource", @@ -3101,20 +3355,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", "type": "Annotation", }, ], @@ -3130,20 +3384,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", "type": "Annotation", }, ], @@ -3159,20 +3413,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", "type": "Annotation", }, ], @@ -3188,83 +3442,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 2504, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4823, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "type": "AnnotationPage", }, ], "label": { "en": [ - "front cover", + "f. 1r", ], }, "metadata": [], @@ -3280,62 +3476,36 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "summary": null, "thumbnail": [], "type": "Canvas", - "width": 3497, + "width": 1768, }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 4804, + "height": 2504, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2", + "items": [], "label": { "en": [ - "pages 1–2", + "f. 1v — MISSING", ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 6062, - }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4776, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", - "items": [ + "metadata": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", - "type": "AnnotationPage", + "label": { + "en": [ + "Description", + ], + }, + "value": { + "en": [ + "Image unavailable or does not exist", + ], + }, }, ], - "label": { - "en": [ - "pages 3–4", - ], - }, - "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, @@ -3348,25 +3518,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "summary": null, "thumbnail": [], "type": "Canvas", - "width": 6127, + "width": 1768, }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 4751, + "height": 2456, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "pages 5–6", + "f. 2r", ], }, "metadata": [], @@ -3382,25 +3552,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "summary": null, "thumbnail": [], "type": "Canvas", - "width": 6124, + "width": 1792, }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 4808, + "height": 2440, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "back cover", + "f. 2v", ], }, "metadata": [], @@ -3416,157 +3586,111 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "summary": null, "thumbnail": [], "type": "Canvas", - "width": 3510, + "width": 1760, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3497, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4804, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6062, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4776, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "height": 2504, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 6127, + "width": 1768, }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4751, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "height": 2456, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 6124, + "width": 1792, }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4808, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "height": 2440, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3510, + "width": 1760, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", "type": "Canvas", }, ], "label": { "en": [ - "Book with Right-to-Left Viewing Direction", + "Ethiopic Ms 10", ], }, "metadata": [], @@ -3582,106 +3706,85 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "services": [], "start": null, "structures": [], - "summary": { - "en": [ - "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", - ], - }, + "summary": null, "thumbnail": [], "type": "Manifest", - "viewingDirection": "right-to-left", + "viewingDirection": "left-to-right", }, }, "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-manifest-rtl https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 22`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", "items": [ { - "height": 4823, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "height": 2504, + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "height": 2504, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3497, + "width": 1768, }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", "type": "Annotation", }, ], @@ -3690,115 +3793,63 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "label": { "en": [ - "front cover", + "f. 1r", ], }, "type": "Canvas", - "width": 3497, + "width": 1768, }, { - "height": 4804, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4804, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6062, - }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], + "height": 2504, + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2", + "items": [], "label": { "en": [ - "pages 1–2", + "f. 1v — MISSING", ], }, - "type": "Canvas", - "width": 6062, - }, - { - "height": 4776, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", - "items": [ + "metadata": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4776, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6127, - }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", + "label": { + "en": [ + "Description", + ], + }, + "value": { + "en": [ + "Image unavailable or does not exist", + ], + }, }, ], - "label": { - "en": [ - "pages 3–4", - ], - }, "type": "Canvas", - "width": 6127, + "width": 1768, }, { - "height": 4751, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "height": 2456, + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4751, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "height": 2456, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 6124, + "width": 1792, }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "target": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", "type": "Annotation", }, ], @@ -3807,37 +3858,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "label": { "en": [ - "pages 5–6", + "f. 2r", ], }, "type": "Canvas", - "width": 6124, + "width": 1792, }, { - "height": 4808, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "height": 2440, + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4808, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "height": 2440, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3510, + "width": 1760, }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "target": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", "type": "Annotation", }, ], @@ -3846,45 +3897,47 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "label": { "en": [ - "back cover", + "f. 2v", ], }, "type": "Canvas", - "width": 3510, + "width": 1760, }, ], "label": { "en": [ - "Book with Right-to-Left Viewing Direction", - ], - }, - "summary": { - "en": [ - "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + "Ethiopic Ms 10", ], }, "type": "Manifest", - "viewingDirection": "right-to-left", } `; -exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-manifest-ttb https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 23`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image": { + "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/body/b1", + "selector": { + "region": "1768,2423,1768,2080", + "type": "ImageApiSelector", + }, + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "type": "ContentResource", + }, + "type": "SpecificResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", "type": "Annotation", }, ], @@ -3893,52 +3946,238 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image": { - "body": [ + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "AnnotationPage", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", "type": "Annotation", }, ], - "motivation": [ - "painting", + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 2080, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "type": "AnnotationPage", + }, ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 1768, + }, + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4999, + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3536, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", "type": "Canvas", }, - "type": "SpecificResource", + ], + "label": { + "en": [ + "Berliner Tageblatt article, 'Ein neuer Sicherungsplan?'", + ], }, - "type": "Annotation", + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image": { + }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 24`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "items": [ + { + "height": 2080, + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "items": [ + { + "body": { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/body/b1", + "selector": { + "region": "1768,2423,1768,2080", + "type": "ImageApiSelector", + }, + "source": { + "format": "image/jpeg", + "height": 4999, + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3536, + }, + "type": "SpecificResource", + }, + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "type": "Canvas", + "width": 1768, + }, + ], + "label": { + "en": [ + "Berliner Tageblatt article, 'Ein neuer Sicherungsplan?'", + ], + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 25`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", "type": "Annotation", }, ], @@ -3947,25 +4186,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", "type": "Annotation", }, ], @@ -3974,7 +4213,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", "type": "Canvas", }, "type": "SpecificResource", @@ -3984,25 +4223,36 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", "type": "AnnotationPage", }, ], - "items": [ + "iiif-parser:isExternal": true, + "items": [], + "label": null, + "metadata": [], + "next": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "partOf": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", - "type": "Annotation", + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "label": { + "en": [ + "Newspaper layout markup", + ], + }, + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "total": 8, + "type": "AnnotationCollection", }, ], - "label": null, - "metadata": [], "provider": [], "rendering": [], "requiredStatement": null, @@ -4013,25 +4263,36 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", "type": "AnnotationPage", }, ], - "items": [ + "iiif-parser:isExternal": true, + "items": [], + "label": null, + "metadata": [], + "partOf": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", - "type": "Annotation", + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "label": { + "en": [ + "Newspaper layout markup", + ], + }, + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "total": 8, + "type": "AnnotationCollection", }, ], - "label": null, - "metadata": [], + "prev": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", "provider": [], "rendering": [], "requiredStatement": null, @@ -4042,20 +4303,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", "type": "Annotation", }, ], @@ -4071,20 +4332,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", "type": "Annotation", }, ], @@ -4102,57 +4363,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1": { "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 3152, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", - "items": [ + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "image 1", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2251, - }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2": { - "accompanyingCanvas": null, - "annotations": [], "behavior": [], "duration": 0, - "height": 3135, + "height": 5000, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", "type": "AnnotationPage", }, ], "label": { - "en": [ - "image 2", + "none": [ + "p. 1", ], }, "metadata": [], @@ -4168,59 +4400,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2268, + "width": 3602, }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2": { "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 3135, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", - "items": [ + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "image 3", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2274, - }, - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4": { - "accompanyingCanvas": null, - "annotations": [], "behavior": [], "duration": 0, - "height": 3135, + "height": 5000, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", "type": "AnnotationPage", }, ], "label": { - "en": [ - "image 4", + "none": [ + "p. 2", ], }, "metadata": [], @@ -4236,132 +4439,80 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2268, + "width": 3602, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3152, - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2251, - }, - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3135, - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2268, - }, - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 3135, - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2274, }, - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 3135, - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2268, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json": { + "@context": [ + "http://iiif.io/api/presentation/3/context.json", + ], "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", "type": "Canvas", }, ], "label": { - "en": [ - "Diary with Top-to-Bottom Viewing Direction", + "de": [ + "Berliner Tageblatt - 1925-02-16", ], }, "metadata": [], @@ -4370,143 +4521,116 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": null, - "rights": null, + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "

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

", + ], + }, + }, + "rights": "http://creativecommons.org/publicdomain/mark/1.0/", "seeAlso": [], "service": [], "services": [], "start": null, "structures": [], - "summary": { - "en": [ - "William Lewis Sachtleben was an American long-distance cyclist who rode across Asia from Istanbul to Peking in 1891 to 1892 with Thomas Gaskell Allen Jr., his classmate from Washington University. This was part of a longer journey that began the day after they had graduated from college, when they travelled to New York and on to Liverpool; in all they travelled 15,044 miles by bicycle, 'the longest continuous land journey ever made around the world' as reported in their book Across Asia on a bicycle (1895). Sachtleben documented his travels with photographs and diaries, the latter of which he numbered sequentially. The diary of notebook 'No. 10' covers a portion of their journey through the Armenian area of Turkey from April 12 to May 9 (there is a 2-page reading list at the end). During this time they rode from Ankara (Angora in the diary) to Sivas, where they stayed for ten days while Allen had a bout of typhoid fever, and the first half of a ten-day excursion to Merzifon (Mersovan in the diary), taken by Sachtleben to give Allen additional time to recover.", - ], - }, + "summary": null, "thumbnail": [], "type": "Manifest", - "viewingDirection": "top-to-bottom", + "viewingDirection": "left-to-right", }, }, "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02": { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03": { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04": { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04", + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05": { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05", + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2": "Annotation", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-manifest-ttb https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 26`] = ` { - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "@context": [ + "http://iiif.io/api/presentation/3/context.json", + ], + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", "items": [ { - "height": 3152, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", - "items": [ + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "next": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "partOf": [ { - "body": { - "format": "image/jpeg", - "height": 3152, - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", - "profile": "level1", - "type": "ImageService3", - }, + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "label": { + "en": [ + "Newspaper layout markup", ], - "type": "Image", - "width": 2251, }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", - "type": "Annotation", + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "total": 8, + "type": "AnnotationCollection", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "image 1", - ], - }, - "type": "Canvas", - "width": 2251, - }, - { - "height": 3135, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "height": 5000, + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", "items": [ { "body": { "format": "image/jpeg", - "height": 3135, - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2268, }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "target": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", "type": "Annotation", }, ], @@ -4514,77 +4638,57 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani }, ], "label": { - "en": [ - "image 2", + "none": [ + "p. 1", ], }, "type": "Canvas", - "width": 2268, + "width": 3602, }, { - "height": 3135, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", - "items": [ + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "partOf": [ { - "body": { - "format": "image/jpeg", - "height": 3135, - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04", - "profile": "level1", - "type": "ImageService3", - }, + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "label": { + "en": [ + "Newspaper layout markup", ], - "type": "Image", - "width": 2274, }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", - "type": "Annotation", + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "total": 8, + "type": "AnnotationCollection", }, ], + "prev": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "image 3", - ], - }, - "type": "Canvas", - "width": 2274, - }, - { - "height": 3135, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "height": 5000, + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", "items": [ { "body": { "format": "image/jpeg", - "height": 3135, - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2268, }, - "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "target": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", "type": "Annotation", }, ], @@ -4592,46 +4696,53 @@ exports[`Cookbook > Testing normalize %p (%p) 0010-book-2-viewing-direction-mani }, ], "label": { - "en": [ - "image 4", + "none": [ + "p. 2", ], }, "type": "Canvas", - "width": 2268, + "width": 3602, }, ], "label": { - "en": [ - "Diary with Top-to-Bottom Viewing Direction", + "de": [ + "Berliner Tageblatt - 1925-02-16", ], }, - "summary": { - "en": [ - "William Lewis Sachtleben was an American long-distance cyclist who rode across Asia from Istanbul to Peking in 1891 to 1892 with Thomas Gaskell Allen Jr., his classmate from Washington University. This was part of a longer journey that began the day after they had graduated from college, when they travelled to New York and on to Liverpool; in all they travelled 15,044 miles by bicycle, 'the longest continuous land journey ever made around the world' as reported in their book Across Asia on a bicycle (1895). Sachtleben documented his travels with photographs and diaries, the latter of which he numbered sequentially. The diary of notebook 'No. 10' covers a portion of their journey through the Armenian area of Turkey from April 12 to May 9 (there is a 2-page reading list at the end). During this time they rode from Ankara (Angora in the diary) to Sivas, where they stayed for ten days while Allen had a bout of typhoid fever, and the first half of a ten-day excursion to Merzifon (Mersovan in the diary), taken by Sachtleben to give Allen additional time to recover.", - ], + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "

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

", + ], + }, }, + "rights": "http://creativecommons.org/publicdomain/mark/1.0/", "type": "Manifest", - "viewingDirection": "top-to-bottom", } `; -exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-continuous https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 27`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", "type": "Annotation", }, ], @@ -4640,88 +4751,42 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-cont ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", "type": "ContentResource", }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image": { - "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", + "id": "vault://69cc99ce", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", "type": "Annotation", }, ], "motivation": [ - "painting", + "commenting", ], "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", - "type": "Annotation", + "selector": { + "type": "FragmentSelector", + "value": "xywh=138,550,1477,1710", }, - ], - "motivation": [ - "painting", - ], - "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", "type": "Canvas", }, "type": "SpecificResource", @@ -4731,20 +4796,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-cont }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", "type": "Annotation", }, ], @@ -4760,20 +4825,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-cont "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", "type": "Annotation", }, ], @@ -4789,25 +4854,32 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-cont "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", - "iiif-parser:hasPart": [ + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1": { + "accompanyingCanvas": null, + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", "type": "AnnotationPage", }, ], + "behavior": [], + "duration": 0, + "height": 3024, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "type": "AnnotationPage", }, ], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -4816,158 +4888,83 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-cont "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 4032, }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg": { + "format": "image/jpeg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "type": "Image", }, ], - "items": [ + "type": "Image", + }, + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "type": "Image", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 1592, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", - "items": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", }, ], - "label": { - "en": [ - "Section 1 [Recto]", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 11368, + "type": "Image", + "width": 4032, }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 1536, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", - "items": [ + "vault://69cc99ce": { + "id": "vault://69cc99ce", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", - "type": "AnnotationPage", + "id": "vault://69cc99ce", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "type": "TextualBody", }, ], - "label": { - "en": [ - "Section 2 [Recto]", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 11608, + "language": "en", + "type": "TextualBody", + "value": "Night picture of the Gänseliesel fountain in Göttingen taken during the 2019 IIIF Conference", }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3": { + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 1504, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "type": "Manifest", }, ], - "label": { - "en": [ - "Section 3 [Recto]", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 10576, - }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 1464, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas", }, ], "label": { "en": [ - "Section 4 [Recto]", + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "metadata": [], @@ -4980,481 +4977,135 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-cont "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 2488, - }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1592, - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 11368, - }, - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1536, - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 11608, - }, - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1504, - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 10576, - }, - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1464, - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2488, - }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], - "behavior": [ - "continuous", - ], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", - "type": "Manifest", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", - "type": "Canvas", - }, - ], - "label": { - "gez": [ - "Ms. 21 Māzemurā Dāwit, Asmat [መዝሙረ ዳዊት]", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "Manifest", + "viewingDirection": "left-to-right", }, }, "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + "vault://69cc99ce": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-continuous https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 28`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "behavior": [ - "continuous", - ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", "items": [ { - "height": 1592, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 1592, - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 11368, - }, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Section 1 [Recto]", - ], - }, - "type": "Canvas", - "width": 11368, - }, - { - "height": 1536, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 1536, - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 11608, - }, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Section 2 [Recto]", - ], - }, - "type": "Canvas", - "width": 11608, - }, - { - "height": 1504, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", - "items": [ + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", "items": [ { - "body": { - "format": "image/jpeg", - "height": 1504, - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 10576, - }, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", + "body": [ + { + "format": "image/jpeg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "type": "Image", + }, + { + "language": "en", + "type": "TextualBody", + "value": "Night picture of the Gänseliesel fountain in Göttingen taken during the 2019 IIIF Conference", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "motivation": "commenting", + "target": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1#xywh=138,550,1477,1710", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Section 3 [Recto]", - ], - }, - "type": "Canvas", - "width": 10576, - }, - { - "height": 1464, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", "items": [ { "body": { "format": "image/jpeg", - "height": 1464, - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2488, + "width": 4032, }, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", + "target": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Section 4 [Recto]", - ], - }, "type": "Canvas", - "width": 2488, + "width": 4032, }, ], "label": { - "gez": [ - "Ms. 21 Māzemurā Dāwit, Asmat [መዝሙረ ዳዊት]", + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-individuals https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 29`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image": { + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", + "id": "vault://adac293e", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", "type": "Annotation", }, ], @@ -5463,7 +5114,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-indi ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", "type": "Canvas", }, "type": "SpecificResource", @@ -5473,20 +5124,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-indi }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1": { + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", "type": "Annotation", }, ], @@ -5502,54 +5153,27 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-indi "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 16, + "height": 0, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", "type": "AnnotationPage", }, ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", - "type": "Annotation", - }, - ], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -5558,301 +5182,140 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-indi "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 0, }, }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2250, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", - "type": "AnnotationPage", - }, - ], + "Collection": {}, + "ContentResource": { + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac": { + "duration": 16, + "format": "audio/flac", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", "label": { "en": [ - "inside cover; 1r", + "FLAC", ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 3375, + "type": "Sound", }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2250, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", - "type": "AnnotationPage", - }, - ], + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a": { + "duration": 16, + "format": "audio/alac", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", "label": { "en": [ - "2v, 3r", + "ALAC", ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 3375, + "type": "Sound", }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2250, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", - "type": "AnnotationPage", - }, - ], + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3": { + "duration": 16, + "format": "audio/mpeg", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", "label": { "en": [ - "3v, 4r", + "MP3", ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 3375, + "type": "Sound", }, - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2250, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", - "type": "AnnotationPage", - }, - ], + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg": { + "duration": 16, + "format": "audio/mpeg", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", "label": { "en": [ - "4v, 5r", + "MPEG2", ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 3375, + "type": "Sound", }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2250, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg": { + "duration": 16, + "format": "audio/ogg", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", + "label": { + "en": [ + "OGG Vorbis OGG", + ], + }, + "type": "Sound", + }, + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav": { + "duration": 16, + "format": "audio/wav", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", + "label": { + "en": [ + "WAV", + ], + }, + "type": "Sound", + }, + "vault://adac293e": { + "id": "vault://adac293e", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", - "profile": "level1", - "type": "ImageService3", + "id": "vault://adac293e", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "type": "Choice", }, ], - "type": "Image", - "width": 3375, - }, - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2250, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", - "type": "Image", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", + "type": "ContentResource", }, - ], - "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master", - "profile": "level1", - "type": "ImageService3", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", + "type": "ContentResource", }, - ], - "type": "Image", - "width": 3375, - }, - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2250, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", - "type": "Image", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", + "type": "ContentResource", }, - ], - "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master", - "profile": "level1", - "type": "ImageService3", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", + "type": "ContentResource", }, - ], - "type": "Image", - "width": 3375, - }, - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2250, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", - "type": "Image", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", + "type": "ContentResource", }, - ], - "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master", - "profile": "level1", - "type": "ImageService3", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", + "type": "ContentResource", }, ], - "type": "Image", - "width": 3375, + "type": "Choice", }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json": { + "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [ - "individuals", - ], + "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", "type": "Canvas", }, ], "label": { - "ca": [ - "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", + "en": [ + "Excerpt from Egbe Iyawo", ], }, "metadata": [], @@ -5862,13 +5325,17 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-indi "provider": [], "rendering": [], "requiredStatement": null, - "rights": null, + "rights": "http://creativecommons.org/publicdomain/zero/1.0/", "seeAlso": [], "service": [], "services": [], "start": null, "structures": [], - "summary": null, + "summary": { + "en": [ + "Excerpt from a performance of Egbe Iyawo recorded in Kabba Division, Kwara State. ", + ], + }, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", @@ -5876,273 +5343,156 @@ exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-indi }, "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master": { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master": { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master": { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master": { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg": "ContentResource", + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac": "ContentResource", + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a": "ContentResource", + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3": "ContentResource", + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg": "ContentResource", + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg": "ContentResource", + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json": "Manifest", + "vault://adac293e": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0011-book-3-behavior-manifest-individuals https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 30`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "behavior": [ - "individuals", - ], - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", "items": [ { - "height": 2250, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "duration": 16, + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", "items": [ { "body": { - "format": "image/jpeg", - "height": 2250, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", - "service": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", - "profile": "level1", - "type": "ImageService3", + "duration": 16, + "format": "audio/alac", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", + "label": { + "en": [ + "ALAC", + ], + }, + "type": "Sound", }, - ], - "type": "Image", - "width": 3375, - }, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "inside cover; 1r", - ], - }, - "type": "Canvas", - "width": 3375, - }, - { - "height": 2250, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 2250, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", - "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master", - "profile": "level1", - "type": "ImageService3", + "duration": 16, + "format": "audio/mpeg", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", + "label": { + "en": [ + "MP3", + ], + }, + "type": "Sound", + }, + { + "duration": 16, + "format": "audio/flac", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", + "label": { + "en": [ + "FLAC", + ], + }, + "type": "Sound", + }, + { + "duration": 16, + "format": "audio/ogg", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", + "label": { + "en": [ + "OGG Vorbis OGG", + ], + }, + "type": "Sound", + }, + { + "duration": 16, + "format": "audio/mpeg", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", + "label": { + "en": [ + "MPEG2", + ], + }, + "type": "Sound", + }, + { + "duration": 16, + "format": "audio/wav", + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", + "label": { + "en": [ + "WAV", + ], + }, + "type": "Sound", }, ], - "type": "Image", - "width": 3375, + "type": "Choice", }, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "target": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "2v, 3r", - ], - }, "type": "Canvas", - "width": 3375, - }, - { - "height": 2250, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 2250, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3375, - }, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "3v, 4r", - ], - }, - "type": "Canvas", - "width": 3375, - }, - { - "height": 2250, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 2250, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3375, - }, - "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "4v, 5r", - ], - }, - "type": "Canvas", - "width": 3375, }, ], "label": { - "ca": [ - "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", + "en": [ + "Excerpt from Egbe Iyawo", + ], + }, + "rights": "http://creativecommons.org/publicdomain/zero/1.0/", + "summary": { + "en": [ + "Excerpt from a performance of Egbe Iyawo recorded in Kabba Division, Kwara State. ", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0013-placeholderCanvas https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 31`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image": { - "body": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video": { + "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", "type": "Annotation", }, ], @@ -6151,7 +5501,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0013-placeholderCanvas https://iii ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", @@ -6161,49 +5511,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0013-placeholderCanvas https://iii }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1": { + "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", "type": "Annotation", }, ], @@ -6221,50 +5542,17 @@ exports[`Cookbook > Testing normalize %p (%p) 0013-placeholderCanvas https://iii }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 7278.466, - "height": 360, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", - "type": "AnnotationPage", - }, - ], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", - "type": "Canvas", - }, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 640, - }, - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder": { + "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 360, + "height": 3024, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", "type": "AnnotationPage", }, ], @@ -6282,81 +5570,101 @@ exports[`Cookbook > Testing normalize %p (%p) 0013-placeholderCanvas https://iii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 640, + "width": 4032, }, }, "Collection": {}, "ContentResource": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { - "format": "image/png", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", "type": "Image", }, ], - "type": "Image", - "width": 640, - }, - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": { - "duration": 7278.466, - "format": "video/mp4", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", - "iiif-parser:hasPart": [ + "service": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", - "type": "Video", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", }, ], - "type": "Video", - "width": 640, + "type": "Image", + "width": 4032, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", "type": "Canvas", }, ], "label": { "en": [ - "Video recording of Donizetti's _The Elixer of Love_", + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, - "metadata": [], + "metadata": [ + { + "label": { + "en": [ + "Author", + ], + }, + "value": { + "none": [ + "Glen Robson", + ], + }, + }, + ], "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": null, - "rights": null, + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 ", + ], + }, + }, + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", "seeAlso": [], "service": [], "services": [], "start": null, "structures": [], - "summary": null, + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

", + ], + }, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", @@ -6364,141 +5672,126 @@ exports[`Cookbook > Testing normalize %p (%p) 0013-placeholderCanvas https://iii }, "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": "ContentResource", - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti": "Canvas", - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder": "Canvas", - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video": "Annotation", - "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0013-placeholderCanvas https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 32`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", "items": [ { - "duration": 7278.466, - "height": 360, - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", "items": [ { "body": { - "duration": 7278.466, - "format": "video/mp4", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", - "type": "Video", - "width": 640, + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4032, }, - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "target": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "placeholderCanvas": { - "height": 360, - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", - "items": [ - { - "body": { - "format": "image/png", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "type": "Image", - "width": 640, - }, - "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 640, - }, "type": "Canvas", - "width": 640, + "width": 4032, }, ], "label": { "en": [ - "Video recording of Donizetti's _The Elixer of Love_", + "Picture of Göttingen taken during the 2019 IIIF Conference", + ], + }, + "metadata": [ + { + "label": { + "en": [ + "Author", + ], + }, + "value": { + "none": [ + "Glen Robson", + ], + }, + }, + ], + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 ", + ], + }, + }, + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0014-accompanyingcanvas https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 33`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio": { + "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image": { "body": [ { - "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", "type": "Annotation", }, ], @@ -6507,7 +5800,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0014-accompanyingcanvas https://ii ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", @@ -6517,20 +5810,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0014-accompanyingcanvas https://ii }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page": { + "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", "type": "Annotation", }, ], @@ -6546,25 +5839,27 @@ exports[`Cookbook > Testing normalize %p (%p) 0014-accompanyingcanvas https://ii "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 3024, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "type": "AnnotationPage", }, ], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -6573,27 +5868,58 @@ exports[`Cookbook > Testing normalize %p (%p) 0014-accompanyingcanvas https://ii "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 4032, }, }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying": { + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4032, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 998, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "type": "Manifest", + }, + ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas", }, ], "label": { "en": [ - "First page of score for Gustav Mahler, Symphony No. 3", + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "metadata": [], @@ -6602,130 +5928,29 @@ exports[`Cookbook > Testing normalize %p (%p) 0014-accompanyingcanvas https://ii "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 772, - }, - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1": { - "accompanyingCanvas": { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", - "type": "Canvas", - }, - "annotations": [], - "behavior": [], - "duration": 1985.024, - "height": 0, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Gustav Mahler, Symphony No. 3, CD 1", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 0, - }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4": { - "duration": 1985.024, - "format": "video/mp4", - "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", - "type": "Sound", - }, - ], - "type": "Sound", - }, - "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg": { - "format": "image/jpeg", - "height": 998, - "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 772, - }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", - "type": "Manifest", + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", - "type": "Canvas", + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 ", + ], }, - ], - "label": { - "en": [ - "Partial audio recording of Gustav Mahler's _Symphony No. 3_", - ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", "seeAlso": [], "service": [], "services": [], "start": null, "structures": [], - "summary": null, + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

", + ], + }, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", @@ -6734,132 +5959,111 @@ exports[`Cookbook > Testing normalize %p (%p) 0014-accompanyingcanvas https://ii "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0": { - "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying": "Canvas", - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio": "Annotation", - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0014-accompanyingcanvas https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 34`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", "items": [ { - "accompanyingCanvas": { - "height": 998, - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 998, - "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 772, - }, - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "First page of score for Gustav Mahler, Symphony No. 3", - ], - }, - "type": "Canvas", - "width": 772, - }, - "duration": 1985.024, - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", "items": [ { "body": { - "duration": 1985.024, - "format": "video/mp4", - "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", - "type": "Sound", + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4032, }, - "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Gustav Mahler, Symphony No. 3, CD 1", - ], - }, "type": "Canvas", + "width": 4032, }, ], "label": { "en": [ - "Partial audio recording of Gustav Mahler's _Symphony No. 3_", + "Picture of Göttingen taken during the 2019 IIIF Conference", + ], + }, + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 ", + ], + }, + }, + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0015-start https://iiif.io/api/cookbook/recipe/0015-start/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 35`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", "type": "Annotation", }, ], @@ -6868,7 +6072,115 @@ exports[`Cookbook > Testing normalize %p (%p) 0015-start https://iiif.io/api/coo ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", "type": "Canvas", }, "type": "SpecificResource", @@ -6878,20 +6190,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0015-start https://iiif.io/api/coo }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", "type": "Annotation", }, ], @@ -6907,34 +6219,54 @@ exports[`Cookbook > Testing normalize %p (%p) 0015-start https://iiif.io/api/coo "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1": { "behavior": [], - "duration": 1801.055, - "height": 0, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", "type": "AnnotationPage", }, ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "type": "Annotation", + }, + ], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -6943,50 +6275,85 @@ exports[`Cookbook > Testing normalize %p (%p) 0015-start https://iiif.io/api/coo "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 0, + "type": "AnnotationPage", }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": { - "duration": 1801.055, - "format": "video/mp4", - "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", - "type": "Video", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "type": "AnnotationPage", }, ], - "type": "Video", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4823, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "type": "AnnotationPage", }, ], "label": { "en": [ - "Video of a 30-minute digital clock", + "front cover", ], }, "metadata": [], @@ -6995,175 +6362,106 @@ exports[`Cookbook > Testing normalize %p (%p) 0015-start https://iiif.io/api/coo "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "The video was created by DrLex1 and was released using a Creative Commons Attribution license", - ], - }, - }, - "rights": "http://creativecommons.org/licenses/by/3.0/", + "requiredStatement": null, + "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas-start/segment1", - "selector": { - "t": 120.5, - "type": "PointSelector", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 3497, }, - }, - "Range": {}, - "Selector": {}, - "Service": {}, - }, - "mapping": { - "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video": "Annotation", - "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json": "Manifest", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0015-start https://iiif.io/api/cookbook/recipe/0015-start/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", - "items": [ - { - "duration": 1801.055, - "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", - "items": [ - { - "body": { - "duration": 1801.055, - "format": "video/mp4", - "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", - "type": "Video", - }, - "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Video of a 30-minute digital clock", - ], - }, - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "The video was created by DrLex1 and was released using a Creative Commons Attribution license", - ], - }, - }, - "rights": "http://creativecommons.org/licenses/by/3.0/", - "start": { - "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas-start/segment1", - "selector": { - "t": 120.5, - "type": "PointSelector", - }, - "source": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", - "type": "SpecificResource", - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0017-transcription-av https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation": { - "body": [ - { - "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", - "iiif-parser:hasPart": [ + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4804, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", + "type": "AnnotationPage", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", - "type": "Canvas", - }, - "type": "SpecificResource", + "label": { + "en": [ + "pages 1–2", + ], }, - "type": "Annotation", + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 6062, }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 4776, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", "type": "AnnotationPage", }, ], + "label": { + "en": [ + "pages 3–4", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 6127, + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4751, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "pages 5–6", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -7172,36 +6470,34 @@ exports[`Cookbook > Testing normalize %p (%p) 0017-transcription-av https://iiif "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 6124, }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 662.037, - "height": 1080, + "duration": 0, + "height": 4808, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "back cover", + ], + }, "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], - "rendering": [ - { - "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", - "type": "ContentResource", - }, - ], + "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], @@ -7209,68 +6505,157 @@ exports[`Cookbook > Testing normalize %p (%p) 0017-transcription-av https://iiif "summary": null, "thumbnail": [], "type": "Canvas", - "width": 1920, + "width": 3510, }, }, "Collection": {}, "ContentResource": { - "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4": { - "duration": 662.037, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", - "type": "Video", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "type": "Image", }, ], - "type": "Video", - "width": 1920, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3497, }, - "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt": { - "format": "text/plain", - "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4804, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", - "type": "Text", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", + "type": "Image", }, ], - "label": { - "en": [ - "Transcript", - ], - }, - "type": "Text", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6062, + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4776, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6127, + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4751, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6124, + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4808, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3510, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", "type": "Canvas", }, ], "label": { "en": [ - "Volleyball for Boys", + "Book with Right-to-Left Viewing Direction", ], }, "metadata": [], @@ -7286,104 +6671,309 @@ exports[`Cookbook > Testing normalize %p (%p) 0017-transcription-av https://iiif "services": [], "start": null, "structures": [], - "summary": null, + "summary": { + "en": [ + "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + ], + }, "thumbnail": [], "type": "Manifest", - "viewingDirection": "left-to-right", + "viewingDirection": "right-to-left", }, }, "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4": "ContentResource", - "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas": "Canvas", - "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation": "Annotation", - "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0017-transcription-av https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 36`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", "items": [ { - "duration": 662.037, - "height": 1080, - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "height": 4823, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", "items": [ { "body": { - "duration": 662.037, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", - "type": "Video", - "width": 1920, + "format": "image/jpeg", + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3497, }, - "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "rendering": [ - { - "format": "text/plain", - "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", - "label": { - "en": [ - "Transcript", - ], - }, - "type": "Text", - }, - ], + "label": { + "en": [ + "front cover", + ], + }, "type": "Canvas", - "width": 1920, + "width": 3497, + }, + { + "height": 4804, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4804, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6062, + }, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "pages 1–2", + ], + }, + "type": "Canvas", + "width": 6062, + }, + { + "height": 4776, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4776, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6127, + }, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "pages 3–4", + ], + }, + "type": "Canvas", + "width": 6127, + }, + { + "height": 4751, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4751, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6124, + }, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "pages 5–6", + ], + }, + "type": "Canvas", + "width": 6124, + }, + { + "height": 4808, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4808, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3510, + }, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "back cover", + ], + }, + "type": "Canvas", + "width": 3510, }, ], "label": { "en": [ - "Volleyball for Boys", + "Book with Right-to-Left Viewing Direction", + ], + }, + "summary": { + "en": [ + "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", ], }, "type": "Manifest", + "viewingDirection": "right-to-left", } `; -exports[`Cookbook > Testing normalize %p (%p) 0019-html-in-annotations https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 37`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", "type": "Annotation", }, ], @@ -7392,34 +6982,88 @@ exports[`Cookbook > Testing normalize %p (%p) 0019-html-in-annotations https://i ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image": { "body": [ { - "id": "vault://8c31cd02", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", "type": "Annotation", }, ], "motivation": [ - "commenting", + "painting", ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", "type": "Canvas", }, "type": "SpecificResource", @@ -7429,20 +7073,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0019-html-in-annotations https://i }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", "type": "Annotation", }, ], @@ -7458,20 +7102,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0019-html-in-annotations https://i "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", "type": "Annotation", }, ], @@ -7487,32 +7131,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0019-html-in-annotations https://i "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1": { - "accompanyingCanvas": null, - "annotations": [ + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", "type": "AnnotationPage", }, ], - "behavior": [], - "duration": 0, - "height": 3024, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "type": "Annotation", }, ], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -7521,72 +7158,124 @@ exports[`Cookbook > Testing normalize %p (%p) 0019-html-in-annotations https://i "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 4032, + "type": "AnnotationPage", }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "type": "AnnotationPage", }, ], - "service": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "type": "Annotation", }, ], - "type": "Image", - "width": 4032, + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - "vault://8c31cd02": { - "format": "text/html", - "id": "vault://8c31cd02", - "iiif-parser:hasPart": [ + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 3152, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "items": [ { - "id": "vault://8c31cd02", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", - "type": "TextualBody", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "type": "AnnotationPage", }, ], - "language": "de", - "type": "TextualBody", - "value": "

Göttinger Marktplatz mit Gänseliesel Brunnen Wikipedia logo

", + "label": { + "en": [ + "image 1", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2251, }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 3135, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", + "type": "AnnotationPage", }, ], + "label": { + "en": [ + "image 2", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2268, + }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 3135, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "type": "AnnotationPage", }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "image 3", ], }, "metadata": [], @@ -7599,196 +7288,34 @@ exports[`Cookbook > Testing normalize %p (%p) 0019-html-in-annotations https://i "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", + "type": "Canvas", + "width": 2274, }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", - "vault://8c31cd02": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0019-html-in-annotations https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", - "items": [ - { - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", - "items": [ - { - "body": { - "format": "text/html", - "language": "de", - "type": "TextualBody", - "value": "

Göttinger Marktplatz mit Gänseliesel Brunnen Wikipedia logo

", - }, - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", - "motivation": "commenting", - "target": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", - "type": "Annotation", - }, + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 3135, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "image 4", ], - "type": "AnnotationPage", }, - ], - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4032, - }, - "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 4032, - }, - ], - "label": { - "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0021-tagging https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag": { - "body": [ - { - "id": "vault://605b9d93", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "tagging", - ], - "target": { - "selector": { - "type": "FragmentSelector", - "value": "xywh=265,661,1260,1239", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", - "type": "Annotation", - }, - ], - "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -7797,137 +7324,133 @@ exports[`Cookbook > Testing normalize %p (%p) 0021-tagging https://iiif.io/api/c "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 2268, }, - "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3152, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "type": "Image", }, ], - "items": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "profile": "level1", + "type": "ImageService3", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "type": "Image", + "width": 2251, }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [ + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3135, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", + "type": "Image", }, ], - "behavior": [], - "duration": 0, - "height": 3024, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", - "items": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", + "profile": "level1", + "type": "ImageService3", }, ], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 4032, + "type": "Image", + "width": 2268, }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "height": 3135, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4032, + "width": 2274, }, - "vault://605b9d93": { - "format": "text/plain", - "id": "vault://605b9d93", + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3135, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "vault://605b9d93", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", - "type": "TextualBody", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "type": "Image", }, ], - "language": "de", - "type": "TextualBody", - "value": "Gänseliesel-Brunnen", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2268, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", "type": "Canvas", }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "Diary with Top-to-Bottom Viewing Direction", ], }, "metadata": [], @@ -7943,125 +7466,261 @@ exports[`Cookbook > Testing normalize %p (%p) 0021-tagging https://iiif.io/api/c "services": [], "start": null, "structures": [], - "summary": null, + "summary": { + "en": [ + "William Lewis Sachtleben was an American long-distance cyclist who rode across Asia from Istanbul to Peking in 1891 to 1892 with Thomas Gaskell Allen Jr., his classmate from Washington University. This was part of a longer journey that began the day after they had graduated from college, when they travelled to New York and on to Liverpool; in all they travelled 15,044 miles by bicycle, 'the longest continuous land journey ever made around the world' as reported in their book Across Asia on a bicycle (1895). Sachtleben documented his travels with photographs and diaries, the latter of which he numbered sequentially. The diary of notebook 'No. 10' covers a portion of their journey through the Armenian area of Turkey from April 12 to May 9 (there is a 2-page reading list at the end). During this time they rode from Ankara (Angora in the diary) to Sivas, where they stayed for ten days while Allen had a bout of typhoid fever, and the first half of a ten-day excursion to Merzifon (Mersovan in the diary), taken by Sachtleben to give Allen additional time to recover.", + ], + }, "thumbnail": [], "type": "Manifest", - "viewingDirection": "left-to-right", + "viewingDirection": "top-to-bottom", }, }, "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02": { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03": { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04": { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05": { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag": "Annotation", - "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", - "vault://605b9d93": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0021-tagging https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 38`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", "items": [ { - "annotations": [ + "height": 3152, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", "items": [ { "body": { - "format": "text/plain", - "language": "de", - "type": "TextualBody", - "value": "Gänseliesel-Brunnen", + "format": "image/jpeg", + "height": 3152, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2251, }, - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", - "motivation": "tagging", - "target": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1#xywh=265,661,1260,1239", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "label": { + "en": [ + "image 1", + ], + }, + "type": "Canvas", + "width": 2251, + }, + { + "height": 3135, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", "items": [ { "body": { "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "height": 3135, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4032, + "width": 2268, }, - "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "label": { + "en": [ + "image 2", + ], + }, "type": "Canvas", - "width": 4032, + "width": 2268, + }, + { + "height": 3135, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3135, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2274, + }, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "image 3", + ], + }, + "type": "Canvas", + "width": 2274, + }, + { + "height": 3135, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3135, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2268, + }, + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "image 4", + ], + }, + "type": "Canvas", + "width": 2268, }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "Diary with Top-to-Bottom Viewing Direction", + ], + }, + "summary": { + "en": [ + "William Lewis Sachtleben was an American long-distance cyclist who rode across Asia from Istanbul to Peking in 1891 to 1892 with Thomas Gaskell Allen Jr., his classmate from Washington University. This was part of a longer journey that began the day after they had graduated from college, when they travelled to New York and on to Liverpool; in all they travelled 15,044 miles by bicycle, 'the longest continuous land journey ever made around the world' as reported in their book Across Asia on a bicycle (1895). Sachtleben documented his travels with photographs and diaries, the latter of which he numbered sequentially. The diary of notebook 'No. 10' covers a portion of their journey through the Armenian area of Turkey from April 12 to May 9 (there is a 2-page reading list at the end). During this time they rode from Ankara (Angora in the diary) to Sivas, where they stayed for ten days while Allen had a bout of typhoid fever, and the first half of a ten-day excursion to Merzifon (Mersovan in the diary), taken by Sachtleben to give Allen additional time to recover.", ], }, "type": "Manifest", + "viewingDirection": "top-to-bottom", } `; -exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 39`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", "type": "Annotation", }, ], @@ -8070,25 +7729,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", "type": "Annotation", }, ], @@ -8097,25 +7756,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", "type": "Annotation", }, ], @@ -8124,79 +7783,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", "type": "Annotation", }, ], @@ -8205,7 +7810,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", "type": "Canvas", }, "type": "SpecificResource", @@ -8215,78 +7820,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", "type": "Annotation", }, ], @@ -8302,20 +7849,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", "type": "Annotation", }, ], @@ -8331,20 +7878,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", "type": "Annotation", }, ], @@ -8360,20 +7907,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", "type": "Annotation", }, ], @@ -8391,91 +7938,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2504, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "f. 1r", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 1768, - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2512, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "f. 1v", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 1792, - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 2456, + "height": 1592, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "f. 2r", + "Section 1 [Recto]", ], }, "metadata": [], @@ -8491,25 +7970,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap "summary": null, "thumbnail": [], "type": "Canvas", - "width": 1792, + "width": 11368, }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 2440, + "height": 1536, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "f. 2v", + "Section 2 [Recto]", ], }, "metadata": [], @@ -8525,25 +8004,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap "summary": null, "thumbnail": [], "type": "Canvas", - "width": 1760, + "width": 11608, }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 2416, + "height": 1504, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "f. 3r", + "Section 3 [Recto]", ], }, "metadata": [], @@ -8559,25 +8038,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap "summary": null, "thumbnail": [], "type": "Canvas", - "width": 1776, + "width": 10576, }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 2416, + "height": 1464, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "f. 3v", + "Section 4 [Recto]", ], }, "metadata": [], @@ -8593,182 +8072,134 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap "summary": null, "thumbnail": [], "type": "Canvas", - "width": 1776, + "width": 2488, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2504, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1768, - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2512, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1792, - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 2456, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "height": 1592, + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1792, + "width": 11368, }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 2440, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "height": 1536, + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1760, + "width": 11608, }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 2416, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", + "height": 1504, + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1776, + "width": 10576, }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 2416, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", + "height": 1464, + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1776, + "width": 2488, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [], + "behavior": [ + "continuous", + ], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", "type": "Canvas", }, ], "label": { - "en": [ - "Ethiopic Ms 10", + "gez": [ + "Ms. 21 Māzemurā Dāwit, Asmat [መዝሙረ ዳዊት]", ], }, "metadata": [], @@ -8783,557 +8214,97 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap "service": [], "services": [], "start": null, - "structures": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", - "type": "Range", - }, - ], + "structures": [], "summary": null, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", }, }, - "Range": { - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", - "type": "Canvas", - }, - ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", + "profile": "level1", + "type": "ImageService3", }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", - "type": "Canvas", - }, - ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master", + "profile": "level1", + "type": "ImageService3", }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", - "type": "Canvas", - }, - ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", - "type": "Canvas", - }, - ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", - "type": "Canvas", - }, - ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", - "type": "Canvas", - }, - ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", - "type": "Range", - }, - ], - "label": { - "en": [ - "Table of Contents", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", - "type": "Range", - }, - ], - "items": [ - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - ], - "label": { - "gez": [ - "Tabiba Tabiban [ጠቢበ ጠቢባን]", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", - "type": "Range", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", - "type": "Range", - }, - ], - "label": { - "gez": [ - "Arede'et [አርድዕት]", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", - "type": "Range", - }, - ], - "items": [ - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - ], - "label": { - "en": [ - "Monday", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", - "type": "Range", - }, - ], - "items": [ - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - ], - "label": { - "en": [ - "Tuesday", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", - }, - }, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6": "Canvas", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0": "Range", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1": "Range", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2": "Range", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1": "Range", - "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2": "Range", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 40`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "behavior": [ + "continuous", + ], + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", "items": [ { - "height": 2504, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "height": 1592, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 2504, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "height": 1592, + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1768, + "width": 11368, }, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", "type": "Annotation", }, ], @@ -9342,37 +8313,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap ], "label": { "en": [ - "f. 1r", + "Section 1 [Recto]", ], }, "type": "Canvas", - "width": 1768, + "width": 11368, }, { - "height": 2512, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "height": 1536, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", "items": [ { "body": { "format": "image/jpeg", - "height": 2512, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", + "height": 1536, + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1792, + "width": 11608, }, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", "type": "Annotation", }, ], @@ -9381,37 +8352,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap ], "label": { "en": [ - "f. 1v", + "Section 2 [Recto]", ], }, "type": "Canvas", - "width": 1792, + "width": 11608, }, { - "height": 2456, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "height": 1504, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", "items": [ { "body": { "format": "image/jpeg", - "height": 2456, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "height": 1504, + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1792, + "width": 10576, }, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", "type": "Annotation", }, ], @@ -9420,37 +8391,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap ], "label": { "en": [ - "f. 2r", + "Section 3 [Recto]", ], }, "type": "Canvas", - "width": 1792, + "width": 10576, }, { - "height": 2440, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "height": 1464, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", "items": [ { "body": { "format": "image/jpeg", - "height": 2440, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "height": 1464, + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1760, + "width": 2488, }, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", "type": "Annotation", }, ], @@ -9459,198 +8430,39 @@ exports[`Cookbook > Testing normalize %p (%p) 0024-book-4-toc https://iiif.io/ap ], "label": { "en": [ - "f. 2v", + "Section 4 [Recto]", ], }, "type": "Canvas", - "width": 1760, - }, - { - "height": 2416, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 2416, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1776, - }, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "f. 3r", - ], - }, - "type": "Canvas", - "width": 1776, - }, - { - "height": 2416, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 2416, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1776, - }, - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "f. 3v", - ], - }, - "type": "Canvas", - "width": 1776, + "width": 2488, }, ], "label": { - "en": [ - "Ethiopic Ms 10", + "gez": [ + "Ms. 21 Māzemurā Dāwit, Asmat [መዝሙረ ዳዊት]", ], }, - "structures": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", - "type": "Canvas", - }, - ], - "label": { - "gez": [ - "Tabiba Tabiban [ጠቢበ ጠቢባን]", - ], - }, - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Monday", - ], - }, - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Tuesday", - ], - }, - "type": "Range", - }, - ], - "label": { - "gez": [ - "Arede'et [አርድዕት]", - ], - }, - "type": "Range", - }, - ], - "label": { - "en": [ - "Table of Contents", - ], - }, - "type": "Range", - }, - ], "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 41`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", "type": "Annotation", }, ], @@ -9659,7 +8471,88 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", "type": "Canvas", }, "type": "SpecificResource", @@ -9669,20 +8562,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", "type": "Annotation", }, ], @@ -9698,27 +8591,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1": { "behavior": [], - "duration": 7278.422, - "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", "type": "AnnotationPage", }, ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", + "type": "Annotation", + }, + ], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -9727,129 +8618,87 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 1920, - }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": { - "duration": 7278.422, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", - "type": "Video", - }, - ], - "type": "Video", - "width": 1920, + "type": "AnnotationPage", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", + "type": "Annotation", }, ], - "label": { - "en": [ - "The Elixir of Love", - ], - "it": [ - "L'Elisir D'Amore", - ], - }, + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", - "type": "Range", - }, - ], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, - }, - "Range": { - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", + "type": "Annotation", }, ], - "items": [], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 2250, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, + "label": { + "en": [ + "inside cover; 1r", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -9860,28 +8709,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], "type": "Canvas", - "viewingDirection": "left-to-right", + "width": 3375, }, - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 2250, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, + "label": { + "en": [ + "2v, 3r", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -9892,32 +8743,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], "type": "Canvas", - "viewingDirection": "left-to-right", + "width": 3375, }, - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 2250, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Gaetano Donizetti, L'Elisir D'Amore", + "en": [ + "3v, 4r", ], }, "metadata": [], @@ -9930,39 +8777,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 3375, }, - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 2250, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", - "type": "Range", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Atto Primo", + "en": [ + "4v, 5r", ], }, "metadata": [], @@ -9975,138 +8811,137 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 3375, }, - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2250, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", - "type": "Range", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "type": "Image", }, ], - "items": [ + "service": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=0,302.05", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "profile": "level1", + "type": "ImageService3", }, ], - "label": { - "it": [ - "Preludio e Coro d'introduzione – Bel conforto al mietitore", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Image", + "width": 3375, }, - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2250, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", - "type": "Range", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", + "type": "Image", }, ], - "items": [ + "service": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=302.05,3971.24", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master", + "profile": "level1", + "type": "ImageService3", }, ], - "label": { - "en": [ - "Remainder of Atto Primo", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Image", + "width": 3375, }, - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2250, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3375, + }, + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2250, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3375, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [], + "behavior": [ + "individuals", + ], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "type": "Manifest", }, ], "items": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=3971.24", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "type": "Canvas", }, ], "label": { - "it": [ - "Atto Secondo", + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", ], }, "metadata": [], @@ -10119,172 +8954,257 @@ exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api "rights": null, "seeAlso": [], "service": [], + "services": [], "start": null, + "structures": [], "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", + "type": "Manifest", "viewingDirection": "left-to-right", }, }, + "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05": "Canvas", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24": "Canvas", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24": "Canvas", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1": "Range", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2": "Range", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3": "Range", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4": "Range", - "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5": "Range", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0026-toc-opera https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 42`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "behavior": [ + "individuals", + ], + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", "items": [ { - "duration": 7278.422, - "height": 1080, - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "height": 2250, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", "items": [ { "body": { - "duration": 7278.422, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", - "type": "Video", - "width": 1920, + "format": "image/jpeg", + "height": 2250, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3375, }, - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "label": { + "en": [ + "inside cover; 1r", + ], + }, "type": "Canvas", - "width": 1920, + "width": 3375, }, - ], - "label": { - "en": [ - "The Elixir of Love", - ], - "it": [ - "L'Elisir D'Amore", - ], - }, - "structures": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "height": 2250, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", - "type": "Canvas", - }, - ], - "label": { - "it": [ - "Preludio e Coro d'introduzione – Bel conforto al mietitore", + "body": { + "format": "image/jpeg", + "height": 2250, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master", + "profile": "level1", + "type": "ImageService3", + }, ], + "type": "Image", + "width": 3375, }, - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "type": "Annotation", }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "2v, 3r", + ], + }, + "type": "Canvas", + "width": 3375, + }, + { + "height": 2250, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Remainder of Atto Primo", + "body": { + "format": "image/jpeg", + "height": 2250, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master", + "profile": "level1", + "type": "ImageService3", + }, ], + "type": "Image", + "width": 3375, }, - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "type": "Annotation", }, ], - "label": { - "it": [ - "Atto Primo", - ], - }, - "type": "Range", + "type": "AnnotationPage", }, + ], + "label": { + "en": [ + "3v, 4r", + ], + }, + "type": "Canvas", + "width": 3375, + }, + { + "height": 2250, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", - "type": "Canvas", + "body": { + "format": "image/jpeg", + "height": 2250, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3375, + }, + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "type": "Annotation", }, ], - "label": { - "it": [ - "Atto Secondo", - ], - }, - "type": "Range", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Gaetano Donizetti, L'Elisir D'Amore", + "en": [ + "4v, 5r", ], }, - "type": "Range", + "type": "Canvas", + "width": 3375, }, ], + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", + ], + }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 43`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", "type": "Annotation", }, ], @@ -10293,25 +9213,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iii ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", "type": "Annotation", }, ], @@ -10320,7 +9240,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iii ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", "type": "Canvas", }, "type": "SpecificResource", @@ -10330,20 +9250,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iii }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", "type": "Annotation", }, ], @@ -10359,20 +9279,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iii "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", "type": "Annotation", }, ], @@ -10390,42 +9310,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iii }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 1271, + "duration": 7278.466, + "height": 360, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Painting under natural light", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Description", - ], - }, - "value": { - "en": [ - "The scene is the house at Mortlake of Dr John Dee (1527-1608). At the court of Queen Elizabeth I, Dee was revered for the range of his scientific knowledge, which embraced the fields of mathematics, navigation, geography, alchemy/chemistry, medicine and optics. In the painting he is showing the effect of combining two elements, either to cause combustion or to extinguish it. Behind him is his assistant Edward Kelly, wearing a long skullcap to conceal the fact that his ears had been cropped as a punishment for forgery.", - ], - }, - }, - ], + "label": null, + "metadata": [], "navDate": null, "partOf": [], - "placeholderCanvas": null, + "placeholderCanvas": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas", + }, "provider": [], "rendering": [], "requiredStatement": null, @@ -10435,41 +9341,24 @@ exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2000, + "width": 640, }, - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 1271, + "height": 360, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "X-ray view of painting", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Description", - ], - }, - "value": { - "en": [ - "The painting originally showed Dee standing in a circle of skulls on the floor, stretching from the floor area in front of the Queen (on the left) to the floor near Edward Kelly (on the right). The skulls were at an early stage painted over, but have since become visible. Another pentimento is visible in the tapestry on the right: shelves containing monstrous animals are visible behind it. The pentimenti were clarified when the painting was X-rayed in 2015.", - ], - }, - }, - ], + "label": null, + "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, @@ -10482,151 +9371,74 @@ exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2000, + "width": 640, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { + "format": "image/png", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", "type": "Image", }, ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", - "profile": "level1", - "type": "ImageService3", - }, - ], "type": "Image", - "width": 2000, + "width": 640, }, - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": { + "duration": 7278.466, + "format": "video/mp4", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", - "profile": "level1", - "type": "ImageService3", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "type": "Video", }, ], - "type": "Image", - "width": 2000, + "type": "Video", + "width": 640, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", "type": "Canvas", }, ], "label": { "en": [ - "John Dee performing an experiment before Queen Elizabeth I.", + "Video recording of Donizetti's _The Elixer of Love_", ], }, - "metadata": [ - { - "label": { - "en": [ - "Creator", - ], - }, - "value": { - "en": [ - "Glindoni, Henry Gillard, 1852-1913", - ], - }, - }, - { - "label": { - "en": [ - "Date", - ], - }, - "value": { - "en": [ - "1800-1899", - ], - }, - }, - { - "label": { - "en": [ - "Physical Description", - ], - }, - "value": { - "en": [ - "1 painting : oil on canvas ; canvas 152 x 244.4 cm", - ], - }, - }, - { - "label": { - "en": [ - "Reference", - ], - }, - "value": { - "en": [ - "Wellcome Library no. 47369i", - ], - }, - }, - ], + "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "Wellcome Collection. Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", - ], - }, - }, + "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], @@ -10641,333 +9453,352 @@ exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iii }, "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural": { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray": { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti": "Canvas", + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder": "Canvas", + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video": "Annotation", + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json": "Manifest", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0029-metadata-anywhere https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 44`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", "items": [ { - "height": 1271, - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "duration": 7278.466, + "height": 360, + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", "items": [ { "body": { - "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2000, + "duration": 7278.466, + "format": "video/mp4", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video", + "width": 640, }, - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Painting under natural light", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Description", - ], - }, - "value": { - "en": [ - "The scene is the house at Mortlake of Dr John Dee (1527-1608). At the court of Queen Elizabeth I, Dee was revered for the range of his scientific knowledge, which embraced the fields of mathematics, navigation, geography, alchemy/chemistry, medicine and optics. In the painting he is showing the effect of combining two elements, either to cause combustion or to extinguish it. Behind him is his assistant Edward Kelly, wearing a long skullcap to conceal the fact that his ears had been cropped as a punishment for forgery.", + "placeholderCanvas": { + "height": 360, + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "items": [ + { + "body": { + "format": "image/png", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "width": 640, + }, + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Annotation", + }, ], + "type": "AnnotationPage", }, - }, - ], - "type": "Canvas", - "width": 2000, - }, - { - "height": 1271, - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2000, - }, - "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "X-ray view of painting", ], + "type": "Canvas", + "width": 640, }, - "metadata": [ - { - "label": { - "en": [ - "Description", - ], - }, - "value": { - "en": [ - "The painting originally showed Dee standing in a circle of skulls on the floor, stretching from the floor area in front of the Queen (on the left) to the floor near Edward Kelly (on the right). The skulls were at an early stage painted over, but have since become visible. Another pentimento is visible in the tapestry on the right: shelves containing monstrous animals are visible behind it. The pentimenti were clarified when the painting was X-rayed in 2015.", - ], - }, - }, - ], "type": "Canvas", - "width": 2000, + "width": 640, }, ], "label": { "en": [ - "John Dee performing an experiment before Queen Elizabeth I.", + "Video recording of Donizetti's _The Elixer of Love_", ], }, - "metadata": [ - { - "label": { - "en": [ - "Creator", - ], - }, - "value": { - "en": [ - "Glindoni, Henry Gillard, 1852-1913", - ], - }, - }, - { - "label": { - "en": [ - "Date", + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 45`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "ContentResource", + }, ], - }, - "value": { - "en": [ - "1800-1899", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "Annotation", + }, ], - }, - }, - { - "label": { - "en": [ - "Physical Description", + "motivation": [ + "painting", ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - "value": { - "en": [ - "1 painting : oil on canvas ; canvas 152 x 244.4 cm", + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio": { + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "ContentResource", + }, ], - }, - }, - { - "label": { - "en": [ - "Reference", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "Annotation", + }, ], - }, - "value": { - "en": [ - "Wellcome Library no. 47369i", + "motivation": [ + "painting", ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, }, - ], - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "Wellcome Collection. Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", - ], - }, - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-collection https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": {}, "AnnotationCollection": {}, - "AnnotationPage": {}, - "Canvas": {}, - "Collection": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], - "behavior": [ - "multi-part", - ], + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page": { + "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", - "type": "Collection", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", - "iiif-parser:isExternal": true, - "label": { - "jp": [ - "巻 1 [Vol. 1]", - ], - }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", - "iiif-parser:isExternal": true, - "label": { - "jp": [ - "巻 2 [Vol. 2]", - ], - }, - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation", }, ], - "label": { - "jp": [ - "青楼絵本年中行事 [Seirō ehon nenjū gyōji]", - ], - }, + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], "summary": null, "thumbnail": [], - "type": "Collection", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, - }, - "ContentResource": {}, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", - "iiif-parser:isExternal": true, - "items": [], - "label": { - "jp": [ - "巻 1 [Vol. 1]", - ], - }, + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 998, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", - "iiif-parser:isExternal": true, - "items": [], + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage", + }, + ], "label": { - "jp": [ - "巻 2 [Vol. 2]", + "en": [ + "First page of score for Gustav Mahler, Symphony No. 3", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 772, + }, + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1": { + "accompanyingCanvas": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas", + }, + "annotations": [], + "behavior": [], + "duration": 1985.024, + "height": 0, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Gustav Mahler, Symphony No. 3, CD 1", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 0, + }, + }, + "Collection": {}, + "ContentResource": { + "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4": { + "duration": 1985.024, + "format": "video/mp4", + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "iiif-parser:hasPart": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Sound", + }, + ], + "type": "Sound", + }, + "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg": { + "format": "image/jpeg", + "height": 998, + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 772, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Partial audio recording of Gustav Mahler's _Symphony No. 3_", ], }, "metadata": [], @@ -10991,181 +9822,133 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-collection https }, "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0": { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json": "Collection", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": "Manifest", + "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying": "Canvas", + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio": "Annotation", + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", - "type": "Collection", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-collection https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 46`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "behavior": [ - "multi-part", - ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", - "label": { - "jp": [ - "巻 1 [Vol. 1]", + "accompanyingCanvas": { + "height": 998, + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 998, + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 772, + }, + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, ], + "label": { + "en": [ + "First page of score for Gustav Mahler, Symphony No. 3", + ], + }, + "type": "Canvas", + "width": 772, }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "duration": 1985.024, + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "items": [ + { + "body": { + "duration": 1985.024, + "format": "video/mp4", + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + }, + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], "label": { - "jp": [ - "巻 2 [Vol. 2]", + "en": [ + "Gustav Mahler, Symphony No. 3, CD 1", ], }, - "type": "Manifest", + "type": "Canvas", }, ], "label": { - "jp": [ - "青楼絵本年中行事 [Seirō ehon nenjū gyōji]", + "en": [ + "Partial audio recording of Gustav Mahler's _Symphony No. 3_", ], }, - "type": "Collection", + "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 47`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image": { + "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", "type": "Annotation", }, ], @@ -11174,7 +9957,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", "type": "Canvas", }, "type": "SpecificResource", @@ -11184,20 +9967,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", "type": "Annotation", }, ], @@ -11213,25 +9996,34 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 1801.055, + "height": 0, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "type": "Canvas", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "type": "AnnotationPage", }, ], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -11240,154 +10032,254 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 0, }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + }, + "Collection": {}, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": { + "duration": 1801.055, + "format": "video/mp4", + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", - "type": "Annotation", + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "type": "Video", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "type": "Video", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1": { + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas", }, ], - "label": null, + "label": { + "en": [ + "Video of a 30-minute digital clock", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": null, - "rights": null, + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "The video was created by DrLex1 and was released using a Creative Commons Attribution license", + ], + }, + }, + "rights": "http://creativecommons.org/licenses/by/3.0/", "seeAlso": [], "service": [], + "services": [], + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas-start/segment1", + "selector": { + "t": 120.5, + "type": "PointSelector", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "structures": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", - "type": "AnnotationPage", - }, - ], - "items": [ + }, + "Range": {}, + "Selector": {}, + "Service": {}, + }, + "mapping": { + "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video": "Annotation", + "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json": "Manifest", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 48`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "items": [ + { + "duration": 1801.055, + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "items": [ + { + "body": { + "duration": 1801.055, + "format": "video/mp4", + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video", + }, + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Video of a 30-minute digital clock", + ], + }, + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "The video was created by DrLex1 and was released using a Creative Commons Attribution license", + ], + }, + }, + "rights": "http://creativecommons.org/licenses/by/3.0/", + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas-start/segment1", + "selector": { + "t": 120.5, + "type": "PointSelector", + }, + "source": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "SpecificResource", + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 49`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", "type": "Annotation", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 5730, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", - "items": [ + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "label": { - "en": [ - "Front cover", - ], + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 4301, + "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2": { - "accompanyingCanvas": null, - "annotations": [], + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1": { "behavior": [], - "duration": 0, - "height": 5702, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Page spread 1", - ], - }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -11396,32 +10288,27 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 7451, + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1": { "behavior": [], - "duration": 0, - "height": 5702, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Page spread 2", - ], - }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -11430,29 +10317,43 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 7451, + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 5702, + "height": 1271, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Page spread 3", + "Painting under natural light", ], }, - "metadata": [], + "metadata": [ + { + "label": { + "en": [ + "Description", + ], + }, + "value": { + "en": [ + "The scene is the house at Mortlake of Dr John Dee (1527-1608). At the court of Queen Elizabeth I, Dee was revered for the range of his scientific knowledge, which embraced the fields of mathematics, navigation, geography, alchemy/chemistry, medicine and optics. In the painting he is showing the effect of combining two elements, either to cause combustion or to extinguish it. Behind him is his assistant Edward Kelly, wearing a long skullcap to conceal the fact that his ears had been cropped as a punishment for forgery.", + ], + }, + }, + ], "navDate": null, "partOf": [], "placeholderCanvas": null, @@ -11465,28 +10366,41 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http "summary": null, "thumbnail": [], "type": "Canvas", - "width": 7451, + "width": 2000, }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 5702, + "height": 1271, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Page spread 4", + "X-ray view of painting", ], }, - "metadata": [], + "metadata": [ + { + "label": { + "en": [ + "Description", + ], + }, + "value": { + "en": [ + "The painting originally showed Dee standing in a circle of skulls on the floor, stretching from the floor area in front of the Queen (on the left) to the floor near Edward Kelly (on the right). The skulls were at an early stage painted over, but have since become visible. Another pentimento is visible in the tapestry on the right: shelves containing monstrous animals are visible behind it. The pentimenti were clarified when the painting was X-rayed in 2015.", + ], + }, + }, + ], "navDate": null, "partOf": [], "placeholderCanvas": null, @@ -11499,168 +10413,151 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http "summary": null, "thumbnail": [], "type": "Canvas", - "width": 7451, + "width": 2000, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 5730, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4301, - }, - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 5702, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 7451, - }, - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 5702, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 7451, - }, - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 5702, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7451, + "width": 2000, }, - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 5702, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7451, + "width": 2000, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [ - "individuals", - ], + "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", "type": "Canvas", }, + ], + "label": { + "en": [ + "John Dee performing an experiment before Queen Elizabeth I.", + ], + }, + "metadata": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", - "type": "Canvas", + "label": { + "en": [ + "Creator", + ], + }, + "value": { + "en": [ + "Glindoni, Henry Gillard, 1852-1913", + ], + }, }, { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", - "type": "Canvas", + "label": { + "en": [ + "Date", + ], + }, + "value": { + "en": [ + "1800-1899", + ], + }, }, { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", - "type": "Canvas", + "label": { + "en": [ + "Physical Description", + ], + }, + "value": { + "en": [ + "1 painting : oil on canvas ; canvas 152 x 244.4 cm", + ], + }, + }, + { + "label": { + "en": [ + "Reference", + ], + }, + "value": { + "en": [ + "Wellcome Library no. 47369i", + ], + }, }, ], - "label": { - "en": [ - "Seirō ehon nenjū gyōji : kan 1 | 青楼絵本年中行事 : 巻 1", - ], - }, - "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": null, + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "Wellcome Collection. Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", + ], + }, + }, "rights": null, "seeAlso": [], "service": [], @@ -11670,102 +10567,72 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http "summary": null, "thumbnail": [], "type": "Manifest", - "viewingDirection": "right-to-left", + "viewingDirection": "left-to-right", }, }, "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001": { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002": { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003": { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007": { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007", + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008": { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008", + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 50`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "behavior": [ - "individuals", - ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", "items": [ { - "height": 5730, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "height": 1271, + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 5730, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4301, + "width": 2000, }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", "type": "Annotation", }, ], @@ -11774,37 +10641,51 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http ], "label": { "en": [ - "Front cover", + "Painting under natural light", ], }, + "metadata": [ + { + "label": { + "en": [ + "Description", + ], + }, + "value": { + "en": [ + "The scene is the house at Mortlake of Dr John Dee (1527-1608). At the court of Queen Elizabeth I, Dee was revered for the range of his scientific knowledge, which embraced the fields of mathematics, navigation, geography, alchemy/chemistry, medicine and optics. In the painting he is showing the effect of combining two elements, either to cause combustion or to extinguish it. Behind him is his assistant Edward Kelly, wearing a long skullcap to conceal the fact that his ears had been cropped as a punishment for forgery.", + ], + }, + }, + ], "type": "Canvas", - "width": 4301, + "width": 2000, }, { - "height": 5702, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "height": 1271, + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", "items": [ { "body": { "format": "image/jpeg", - "height": 5702, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7451, + "width": 2000, }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "target": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", "type": "Annotation", }, ], @@ -11813,157 +10694,115 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v1 http ], "label": { "en": [ - "Page spread 1", + "X-ray view of painting", ], }, - "type": "Canvas", - "width": 7451, - }, - { - "height": 5702, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", - "items": [ + "metadata": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 5702, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 7451, - }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", + "label": { + "en": [ + "Description", + ], + }, + "value": { + "en": [ + "The painting originally showed Dee standing in a circle of skulls on the floor, stretching from the floor area in front of the Queen (on the left) to the floor near Edward Kelly (on the right). The skulls were at an early stage painted over, but have since become visible. Another pentimento is visible in the tapestry on the right: shelves containing monstrous animals are visible behind it. The pentimenti were clarified when the painting was X-rayed in 2015.", + ], + }, }, ], + "type": "Canvas", + "width": 2000, + }, + ], + "label": { + "en": [ + "John Dee performing an experiment before Queen Elizabeth I.", + ], + }, + "metadata": [ + { "label": { "en": [ - "Page spread 2", + "Creator", + ], + }, + "value": { + "en": [ + "Glindoni, Henry Gillard, 1852-1913", ], }, - "type": "Canvas", - "width": 7451, }, { - "height": 5702, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 5702, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 7451, - }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], "label": { "en": [ - "Page spread 3", + "Date", + ], + }, + "value": { + "en": [ + "1800-1899", ], }, - "type": "Canvas", - "width": 7451, }, { - "height": 5702, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 5702, - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 7451, - }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], "label": { "en": [ - "Page spread 4", + "Physical Description", + ], + }, + "value": { + "en": [ + "1 painting : oil on canvas ; canvas 152 x 244.4 cm", + ], + }, + }, + { + "label": { + "en": [ + "Reference", + ], + }, + "value": { + "en": [ + "Wellcome Library no. 47369i", ], }, - "type": "Canvas", - "width": 7451, }, ], - "label": { - "en": [ - "Seirō ehon nenjū gyōji : kan 1 | 青楼絵本年中行事 : 巻 1", - ], + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "Wellcome Collection. Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", + ], + }, }, "type": "Manifest", - "viewingDirection": "right-to-left", } `; -exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 51`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", "type": "Annotation", }, ], @@ -11972,25 +10811,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", "type": "Annotation", }, ], @@ -11999,25 +10838,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", "type": "Annotation", }, ], @@ -12026,25 +10865,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", "type": "Annotation", }, ], @@ -12053,25 +10892,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", "type": "Annotation", }, ], @@ -12080,7 +10919,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", "type": "Canvas", }, "type": "SpecificResource", @@ -12090,20 +10929,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", "type": "Annotation", }, ], @@ -12119,20 +10958,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", "type": "Annotation", }, ], @@ -12148,20 +10987,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", "type": "Annotation", }, ], @@ -12177,20 +11016,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", "type": "Annotation", }, ], @@ -12206,20 +11045,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", "type": "Annotation", }, ], @@ -12237,23 +11076,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 5745, + "height": 4823, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Front cover", + "front cover", ], }, "metadata": [], @@ -12269,25 +11108,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "summary": null, "thumbnail": [], "type": "Canvas", - "width": 4114, + "width": 3497, }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 5745, + "height": 4804, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Page spread 1", + "pages 1–2", ], }, "metadata": [], @@ -12303,25 +11142,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "summary": null, "thumbnail": [], "type": "Canvas", - "width": 7253, + "width": 6062, }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 5745, + "height": 4776, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Page spread 2", + "pages 3–4", ], }, "metadata": [], @@ -12337,25 +11176,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "summary": null, "thumbnail": [], "type": "Canvas", - "width": 7253, + "width": 6127, }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 5745, + "height": 4751, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Page spread 3", + "pages 5–6", ], }, "metadata": [], @@ -12371,25 +11210,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "summary": null, "thumbnail": [], "type": "Canvas", - "width": 7253, + "width": 6124, }, - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 5745, + "height": 4808, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Page spread 4", + "back cover", ], }, "metadata": [], @@ -12405,159 +11244,174 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "summary": null, "thumbnail": [], "type": "Canvas", - "width": 7253, + "width": 3510, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg": { + "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf": { + "format": "application/pdf", + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "iiif-parser:hasPart": [ + { + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "type": "Text", + }, + ], + "label": { + "en": [ + "PDF version", + ], + }, + "type": "Text", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4114, + "width": 3497, }, - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", + "height": 4804, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7253, + "width": 6062, }, - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "height": 4776, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7253, + "width": 6127, }, - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "height": 4751, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7253, + "width": 6124, }, - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "height": 4808, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7253, + "width": 3510, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [ - "individuals", - ], + "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", "type": "Canvas", }, ], "label": { "en": [ - "Seirō ehon nenjū gyōji : kan 2 | 青楼絵本年中行事 : 巻 2", + "Alternative Representations Through Rendering", ], }, "metadata": [], @@ -12565,7 +11419,12 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "partOf": [], "placeholderCanvas": null, "provider": [], - "rendering": [], + "rendering": [ + { + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "type": "ContentResource", + }, + ], "requiredStatement": null, "rights": null, "seeAlso": [], @@ -12573,7 +11432,11 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "services": [], "start": null, "structures": [], - "summary": null, + "summary": { + "en": [ + "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + ], + }, "thumbnail": [], "type": "Manifest", "viewingDirection": "right-to-left", @@ -12582,96 +11445,94 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001": { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002": { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003": { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004": { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005": { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg": "ContentResource", + "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 52`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "behavior": [ - "individuals", - ], - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", "items": [ { - "height": 5745, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "height": 4823, + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4114, + "width": 3497, }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", "type": "Annotation", }, ], @@ -12680,37 +11541,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "label": { "en": [ - "Front cover", + "front cover", ], }, "type": "Canvas", - "width": 4114, + "width": 3497, }, { - "height": 5745, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "height": 4804, + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", "items": [ { "body": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", + "height": 4804, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7253, + "width": 6062, }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", "type": "Annotation", }, ], @@ -12719,37 +11580,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "label": { "en": [ - "Page spread 1", + "pages 1–2", ], }, "type": "Canvas", - "width": 7253, + "width": 6062, }, { - "height": 5745, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "height": 4776, + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", "items": [ { "body": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "height": 4776, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7253, + "width": 6127, }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", "type": "Annotation", }, ], @@ -12758,37 +11619,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "label": { "en": [ - "Page spread 2", + "pages 3–4", ], }, "type": "Canvas", - "width": 7253, + "width": 6127, }, { - "height": 5745, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "height": 4751, + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", "items": [ { "body": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "height": 4751, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7253, + "width": 6124, }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", "type": "Annotation", }, ], @@ -12797,37 +11658,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "label": { "en": [ - "Page spread 3", + "pages 5–6", ], }, "type": "Canvas", - "width": 7253, + "width": 6124, }, { - "height": 5745, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "height": 4808, + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", "items": [ { "body": { "format": "image/jpeg", - "height": 5745, - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "height": 4808, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 7253, + "width": 3510, }, - "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", "type": "Annotation", }, ], @@ -12836,16 +11697,33 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http ], "label": { "en": [ - "Page spread 4", + "back cover", ], }, "type": "Canvas", - "width": 7253, + "width": 3510, }, ], "label": { "en": [ - "Seirō ehon nenjū gyōji : kan 2 | 青楼絵本年中行事 : 巻 2", + "Alternative Representations Through Rendering", + ], + }, + "rendering": [ + { + "format": "application/pdf", + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "label": { + "en": [ + "PDF version", + ], + }, + "type": "Text", + }, + ], + "summary": { + "en": [ + "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", ], }, "type": "Manifest", @@ -12853,158 +11731,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0030-multi-volume-manifest_v2 http } `; -exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 53`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", "type": "Annotation", }, ], @@ -13013,7 +11756,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", "type": "Canvas", }, "type": "SpecificResource", @@ -13023,20 +11766,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", "type": "Annotation", }, ], @@ -13052,25 +11795,31 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 3000, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "type": "AnnotationPage", }, ], - "label": null, + "label": { + "none": [ + "Front", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -13079,80 +11828,384 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 2315, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg": { + "format": "image/jpeg", + "height": 3000, + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "type": "Image", }, ], - "items": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "type": "Image", + "width": 2315, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1": { + "https://www.getty.edu/art/collection/object/103RQQ": { + "format": "text/html", + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "iiif-parser:hasPart": [ + { + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "type": "Text", + }, + ], + "label": { + "en": [ + "Home page at the Getty Museum Collection", + ], + }, + "language": [ + "en", + ], + "type": "Text", + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", + "homepage": [ + { + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas", }, ], - "label": null, + "label": { + "none": [ + "Laocöon", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "summary": null, - "thumbnail": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg": "ContentResource", + "https://www.getty.edu/art/collection/object/103RQQ": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 54`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "homepage": [ + { + "format": "text/html", + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "label": { + "en": [ + "Home page at the Getty Museum Collection", + ], + }, + "language": [ + "en", + ], + "type": "Text", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "items": [ + { + "height": 3000, + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3000, + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2315, + }, + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "none": [ + "Front", + ], + }, + "type": "Canvas", + "width": 2315, + }, + ], + "label": { + "none": [ + "Laocöon", + ], + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 55`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", "type": "Annotation", }, ], @@ -13168,20 +12221,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", "type": "Annotation", }, ], @@ -13197,31 +12250,54 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1": { "behavior": [], - "duration": 0, - "height": 7230, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "type": "AnnotationPage", + }, + ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Front cover", - ], - }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -13230,26 +12306,27 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 5428, + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 7230, + "height": 4823, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Inside front cover", + "front cover", ], }, "metadata": [], @@ -13265,25 +12342,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 5428, + "width": 3497, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 7230, + "height": 4804, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Vol. 1 title page", + "pages 1–2", ], }, "metadata": [], @@ -13299,25 +12376,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 5428, + "width": 6062, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 7230, + "height": 4776, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Vol. 1 title page (verso)", + "pages 3–4", ], }, "metadata": [], @@ -13333,25 +12410,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 5428, + "width": 6127, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 7230, + "height": 4751, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Vol. 2 title page", + "pages 5–6", ], }, "metadata": [], @@ -13367,25 +12444,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 5428, + "width": 6124, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 7230, + "height": 4808, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Vol. 2 title page (verso)", + "back cover", ], }, "metadata": [], @@ -13401,182 +12478,175 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 5428, + "width": 3510, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml": { + "format": "text/xml", + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", - "profile": "level1", - "type": "ImageService3", + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "type": "Dataset", }, ], - "type": "Image", - "width": 5428, + "label": { + "en": [ + "MODS metadata", + ], + }, + "profile": "http://www.loc.gov/mods/v3", + "type": "Dataset", }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 5428, + "width": 3497, }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", + "height": 4804, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 5428, + "width": 6062, }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", + "height": 4776, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 5428, + "width": 6127, }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", + "height": 4751, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 5428, + "width": 6124, }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", + "height": 4808, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 5428, + "width": 3510, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", "type": "Canvas", }, ], "label": { - "de": [ - "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen", + "en": [ + "Linking to Structured Metadata", ], }, "metadata": [], @@ -13587,166 +12657,401 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "rendering": [], "requiredStatement": null, "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [ + "seeAlso": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", - "type": "Range", + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", + "type": "ContentResource", }, ], - "summary": null, + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": { + "en": [ + "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + ], + }, "thumbnail": [], "type": "Manifest", - "viewingDirection": "left-to-right", + "viewingDirection": "right-to-left", }, }, - "Range": { - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", - "iiif-parser:hasPart": [ + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 56`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "items": [ + { + "height": 4823, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3497, + }, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "front cover", + ], + }, + "type": "Canvas", + "width": 3497, + }, + { + "height": 4804, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4804, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6062, + }, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "pages 1–2", + ], + }, + "type": "Canvas", + "width": 6062, + }, + { + "height": 4776, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4776, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6127, + }, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "pages 3–4", + ], + }, + "type": "Canvas", + "width": 6127, + }, + { + "height": 4751, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4751, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 6124, + }, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "pages 5–6", + ], + }, + "type": "Canvas", + "width": 6124, + }, + { + "height": 4808, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4808, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3510, + }, + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "back cover", + ], + }, + "type": "Canvas", + "width": 3510, + }, + ], + "label": { + "en": [ + "Linking to Structured Metadata", + ], + }, + "seeAlso": [ + { + "format": "text/xml", + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", + "label": { + "en": [ + "MODS metadata", + ], + }, + "profile": "http://www.loc.gov/mods/v3", + "type": "Dataset", + }, + ], + "summary": { + "en": [ + "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + ], + }, + "type": "Manifest", + "viewingDirection": "right-to-left", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 57`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", - "type": "Canvas", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "type": "Annotation", }, ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3": { - "accompanyingCanvas": null, - "annotations": [], + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "type": "Annotation", }, ], - "items": [], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5312, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, + "label": { + "en": [ + "front cover with color bar", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -13757,174 +13062,104 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], "type": "Canvas", - "viewingDirection": "left-to-right", + "width": 4520, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", - "type": "Canvas", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "type": "Image", }, ], - "items": [], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", - "type": "Range", - }, + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", - "type": "Range", + "extraFormats": [ + "png", + ], + "extraQualities": [ + "default", + "color", + "gray", + ], + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "profile": "level1", + "protocol": "http://iiif.io/api/image", + "tiles": [ + { + "height": 512, + "scaleFactors": [ + 1, + 2, + 4, + 8, + ], + "width": 512, + }, + ], + "type": "ImageService3", + "width": 3497, }, ], - "label": { - "de": [ - "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Image", + "width": 3497, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5312, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", - "type": "Range", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "type": "Image", }, ], - "items": [ - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, + "service": [ { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "profile": "level1", + "type": "ImageService3", }, ], - "label": { - "en": [ - "Front Matter", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Image", + "width": 4520, }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2": { + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "type": "Manifest", }, ], "items": [ { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas", }, ], "label": { - "de": [ - "Erste Ausgabe. Begreift die Ceremonien der Lutheraner von der Augspurgischen Confession, der Reformirten, der Holländischen u. a. Kirchen", + "en": [ + "Playbill Cover with Manifest Thumbnail", ], }, "metadata": [], @@ -13937,169 +13172,79 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii "rights": null, "seeAlso": [], "service": [], + "services": [], "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", - "type": "Range", - }, - ], - "items": [ - { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", - "type": "Canvas", - }, - "type": "SpecificResource", - }, + "structures": [], + "summary": { + "en": [ + "Cover of playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + ], + }, + "thumbnail": [ { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "label": { - "de": [ - "Zweyte Ausgabe. Begreift die Ceremonien der Engl. hohen Kirche : Der Quacker, der Anabaptisten, der Adamiten, der Flagellanten, der Frey-Maurer, der Rhinsbürger...", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", + "type": "Manifest", "viewingDirection": "left-to-right", }, }, + "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover": { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover": { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1": { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso": { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2": { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso": { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6": "Canvas", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0": "Range", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1": "Range", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2": "Range", - "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3": "Range", - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0": "Canvas", + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 58`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", "items": [ { - "height": 7230, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "height": 5312, + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", "items": [ { "body": { "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "height": 5312, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 5428, + "width": 4520, }, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", "type": "Annotation", }, ], @@ -14108,337 +13253,147 @@ exports[`Cookbook > Testing normalize %p (%p) 0031-bound-multivolume https://iii ], "label": { "en": [ - "Front cover", + "front cover with color bar", ], }, "type": "Canvas", - "width": 5428, + "width": 4520, }, + ], + "label": { + "en": [ + "Playbill Cover with Manifest Thumbnail", + ], + }, + "summary": { + "en": [ + "Cover of playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + ], + }, + "thumbnail": [ { - "height": 7230, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", - "items": [ + "format": "image/jpeg", + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", - "items": [ + "extraFormats": [ + "png", + ], + "extraQualities": [ + "default", + "color", + "gray", + ], + "height": 4823, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "profile": "level1", + "protocol": "http://iiif.io/api/image", + "tiles": [ { - "body": { - "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 5428, - }, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", - "type": "Annotation", + "height": 512, + "scaleFactors": [ + 1, + 2, + 4, + 8, + ], + "width": 512, }, ], - "type": "AnnotationPage", + "type": "ImageService3", + "width": 3497, }, ], - "label": { - "en": [ - "Inside front cover", + "type": "Image", + "width": 3497, + }, + ], + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 59`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1": { + "body": [ + { + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - "type": "Canvas", - "width": 5428, }, - { - "height": 7230, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 5428, - }, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Vol. 1 title page", + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "type": "Annotation", + }, ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - "type": "Canvas", - "width": 5428, }, - { - "height": 7230, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 5428, - }, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Vol. 1 title page (verso)", - ], - }, - "type": "Canvas", - "width": 5428, - }, - { - "height": 7230, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 5428, - }, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Vol. 2 title page", - ], - }, - "type": "Canvas", - "width": 5428, - }, - { - "height": 7230, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 7230, - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 5428, - }, - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Vol. 2 title page (verso)", - ], - }, - "type": "Canvas", - "width": 5428, - }, - ], - "label": { - "de": [ - "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen", - ], - }, - "structures": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Front Matter", - ], - }, - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", - "type": "Canvas", - }, - ], - "label": { - "de": [ - "Erste Ausgabe. Begreift die Ceremonien der Lutheraner von der Augspurgischen Confession, der Reformirten, der Holländischen u. a. Kirchen", - ], - }, - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", - "type": "Canvas", - }, - ], - "label": { - "de": [ - "Zweyte Ausgabe. Begreift die Ceremonien der Engl. hohen Kirche : Der Quacker, der Anabaptisten, der Adamiten, der Flagellanten, der Frey-Maurer, der Rhinsbürger...", - ], - }, - "type": "Range", - }, - ], - "label": { - "de": [ - "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen", - ], - }, - "type": "Range", - }, - ], - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0032-collection-collection https://iiif.io/api/cookbook/recipe/0032-collection/collection.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": {}, - "AnnotationCollection": {}, - "AnnotationPage": {}, - "Canvas": {}, - "Collection": { - "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 991, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", - "type": "Collection", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "The Gulf Stream", - ], - }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "Northeaster", - ], - }, - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Simple Collection Example", - ], - }, + "label": null, "metadata": [], "navDate": null, "partOf": [], @@ -14449,29 +13404,72 @@ exports[`Cookbook > Testing normalize %p (%p) 0032-collection-collection https:/ "rights": null, "seeAlso": [], "service": [], - "services": [], "summary": null, "thumbnail": [], - "type": "Collection", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 1114, + }, + }, + "Collection": {}, + "ContentResource": { + "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg": { + "format": "image/jpeg", + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "type": "Image", + }, + ], + "type": "Image", }, }, - "ContentResource": {}, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": { + "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", - "iiif-parser:isExternal": true, - "items": [], + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas", + }, + ], "label": { - "en": [ - "The Gulf Stream", + "fr": [ + "Arrangement en gris et noir no 1", ], }, - "metadata": [], + "metadata": [ + { + "label": { + "en": [ + "Alternative titles", + ], + }, + "value": { + "en": [ + "Whistler's Mother", + "Arrangement in Grey and Black No. 1", + ], + "fr": [ + "Portrait de la mère de l'artiste", + "La Mère de Whistler", + ], + }, + }, + ], "navDate": null, "partOf": [], "placeholderCanvas": null, @@ -14484,38 +13482,11 @@ exports[`Cookbook > Testing normalize %p (%p) 0032-collection-collection https:/ "services": [], "start": null, "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", - "iiif-parser:isExternal": true, - "items": [], - "label": { + "summary": { "en": [ - "Northeaster", + "A painting in oil on canvas created by the American-born painter James McNeill Whistler, in 1871.", ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", @@ -14526,67 +13497,100 @@ exports[`Cookbook > Testing normalize %p (%p) 0032-collection-collection https:/ "Service": {}, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json": "Collection", - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json": "Manifest", + "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", - "type": "Collection", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0032-collection-collection https://iiif.io/api/cookbook/recipe/0032-collection/collection.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 60`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/collection.json", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "height": 991, + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "type": "Image", + }, + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "type": "Canvas", + "width": 1114, + }, + ], + "label": { + "fr": [ + "Arrangement en gris et noir no 1", + ], + }, + "metadata": [ + { "label": { "en": [ - "The Gulf Stream", + "Alternative titles", ], }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", - "label": { + "value": { "en": [ - "Northeaster", + "Whistler's Mother", + "Arrangement in Grey and Black No. 1", + ], + "fr": [ + "Portrait de la mère de l'artiste", + "La Mère de Whistler", ], }, - "type": "Manifest", }, ], - "label": { + "summary": { "en": [ - "Simple Collection Example", + "A painting in oil on canvas created by the American-born painter James McNeill Whistler, in 1871.", ], }, - "type": "Collection", + "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-01 https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 61`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", "type": "Annotation", }, ], @@ -14595,288 +13599,106 @@ exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-01 https: ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", - "iiif-parser:hasPart": [ + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", "type": "Annotation", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 3540, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", - "items": [ + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "label": null, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 5886, - }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3540, - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "type": "Annotation", }, ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 5886, - }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", - "type": "Manifest", - }, + "motivation": [ + "painting", ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", "type": "Canvas", }, - ], - "label": { - "en": [ - "The Gulf Stream", - ], + "type": "SpecificResource", }, - "metadata": [ + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image": { + "body": [ { - "label": { - "en": [ - "Artist", - ], - }, - "value": { - "en": [ - "Winslow Homer (1836–1910)", - ], - }, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "type": "ContentResource", }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", + "iiif-parser:hasPart": [ { - "label": { - "en": [ - "Date", - ], - }, - "value": { - "en": [ - "1899", - ], - }, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "type": "Annotation", }, ], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art": { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", - "profile": "level1", - "type": "ImageService3", - }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-01 https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", - "items": [ - { - "height": 3540, - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 3540, - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 5886, - }, - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 5886, - }, - ], - "label": { - "en": [ - "The Gulf Stream", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Artist", - ], - }, - "value": { - "en": [ - "Winslow Homer (1836–1910)", - ], - }, - }, - { - "label": { - "en": [ - "Date", - ], - }, - "value": { - "en": [ - "1899", + "motivation": [ + "painting", ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - }, - ], - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-02 https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", "type": "Annotation", }, ], @@ -14885,7 +13707,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-02 https: ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", "type": "Canvas", }, "type": "SpecificResource", @@ -14895,20 +13717,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-02 https: }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", "type": "Annotation", }, ], @@ -14924,27 +13746,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-02 https: "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1": { "behavior": [], - "duration": 0, - "height": 2572, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", "type": "AnnotationPage", }, ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", + "type": "Annotation", + }, + ], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -14953,252 +13773,80 @@ exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-02 https: "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 3764, - }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2572, - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3764, + "type": "AnnotationPage", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Northeaster", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Artist", - ], - }, - "value": { - "en": [ - "Winslow Homer (1836–1910)", - ], - }, - }, - { - "label": { - "en": [ - "Date", - ], - }, - "value": { - "en": [ - "1895", - ], - }, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", + "type": "Annotation", }, ], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, + "label": null, + "metadata": [], "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895": { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", - "profile": "level1", - "type": "ImageService3", - }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0032-collection-manifest-02 https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", - "items": [ - { - "height": 2572, - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 2572, - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3764, - }, - "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 3764, - }, - ], - "label": { - "en": [ - "Northeaster", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Artist", - ], - }, - "value": { - "en": [ - "Winslow Homer (1836–1910)", - ], - }, - }, - { - "label": { - "en": [ - "Date", - ], - }, - "value": { - "en": [ - "1895", - ], + "type": "AnnotationPage", }, - }, - ], - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0033-choice https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image": { - "body": [ + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "iiif-parser:hasPart": [ { - "id": "vault://04f77c53", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "AnnotationPage", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", "type": "Annotation", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", "type": "Annotation", }, ], @@ -15216,21 +13864,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0033-choice https://iiif.io/api/co }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 1271, + "height": 4613, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "Blank page", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -15244,95 +13896,300 @@ exports[`Cookbook > Testing normalize %p (%p) 0033-choice https://iiif.io/api/co "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2000, + "width": 3204, }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", - "label": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4612, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Canvas", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "type": "AnnotationPage", + }, + ], + "label": { "en": [ - "Natural Light", + "Frontispiece", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 3186, + }, + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4613, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Title page", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 3204, + }, + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4578, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Blank page", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 3174, + }, + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4632, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Bookplate", ], }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 3198, + }, + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4613, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "type": "Image", + }, + ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2000, + "width": 3204, }, - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", - "label": { - "en": [ - "X-Ray", - ], - }, + "height": 4612, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", + "type": "Image", + }, + ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2000, + "width": 3186, }, - "vault://04f77c53": { - "id": "vault://04f77c53", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4613, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "vault://04f77c53", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", - "type": "Choice", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", + "type": "Image", }, ], - "items": [ + "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3204, + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4578, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", + "type": "Image", }, + ], + "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "profile": "level1", + "type": "ImageService3", }, ], - "type": "Choice", + "type": "Image", + "width": 3174, + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4632, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3198, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", "type": "Canvas", }, ], "label": { "en": [ - "John Dee performing an experiment before Queen Elizabeth I.", + "Multiple Related Images (Book, etc.)", ], }, "metadata": [], @@ -15346,7 +14203,14 @@ exports[`Cookbook > Testing normalize %p (%p) 0033-choice https://iiif.io/api/co "seeAlso": [], "service": [], "services": [], - "start": null, + "start": { + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, "structures": [], "summary": null, "thumbnail": [], @@ -15357,345 +14221,523 @@ exports[`Cookbook > Testing normalize %p (%p) 0033-choice https://iiif.io/api/co "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural": { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray": { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": "ContentResource", - "vault://04f77c53": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0033-choice https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 62`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", "items": [ { - "height": 1271, - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "height": 4613, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", "items": [ { "body": { - "items": [ + "format": "image/jpeg", + "height": 4613, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "service": [ { - "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", - "label": { - "en": [ - "Natural Light", - ], - }, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2000, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "profile": "level1", + "type": "ImageService3", }, + ], + "type": "Image", + "width": 3204, + }, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Blank page", + ], + }, + "type": "Canvas", + "width": 3204, + }, + { + "height": 4612, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4612, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "service": [ { - "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", - "label": { - "en": [ - "X-Ray", - ], - }, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2000, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "profile": "level1", + "type": "ImageService3", }, ], - "type": "Choice", + "type": "Image", + "width": 3186, }, - "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "label": { + "en": [ + "Frontispiece", + ], + }, "type": "Canvas", - "width": 2000, + "width": 3186, }, - ], - "label": { - "en": [ - "John Dee performing an experiment before Queen Elizabeth I.", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + { + "height": 4613, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4613, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3204, + }, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", }, - "type": "Annotation", + ], + "label": { + "en": [ + "Title page", + ], }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", - "type": "Canvas", - }, - "type": "SpecificResource", + "type": "Canvas", + "width": 3204, + }, + { + "height": 4578, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4578, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3174, + }, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", }, - "type": "Annotation", + ], + "label": { + "en": [ + "Blank page", + ], }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", - "type": "ContentResource", - }, + "type": "Canvas", + "width": 3174, + }, + { + "height": 4632, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4632, + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 3198, + }, + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Bookplate", ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", + }, + "type": "Canvas", + "width": 3198, + }, + ], + "label": { + "en": [ + "Multiple Related Images (Book, etc.)", + ], + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 63`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": {}, + "AnnotationCollection": {}, + "AnnotationPage": {}, + "Canvas": {}, + "Collection": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", + "type": "Collection", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image": { - "body": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + ], + }, + "navDate": "1986-01-01T00:00:00+00:00", + "type": "Manifest", }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", - "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + ], + }, + "navDate": "1987-01-01T00:00:00+00:00", + "type": "Manifest", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", - "type": "Canvas", - }, - "type": "SpecificResource", + "label": { + "en": [ + "Chesapeake and Ohio Canal map and guide pamphlets", + ], }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image": { - "body": [ + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "summary": null, + "thumbnail": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", + "type": "Collection", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image": { - "body": [ + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 300, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", + "type": "Image", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", - "iiif-parser:hasPart": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "profile": "level1", + "type": "ImageService3", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", - "type": "Canvas", - }, - "type": "SpecificResource", + "type": "Image", + "width": 221, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "iiif-parser:isExternal": true, + "items": [], + "label": { + "en": [ + "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + ], }, - "type": "Annotation", + "metadata": [], + "navDate": "1987-01-01T00:00:00+00:00", + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", - "type": "Canvas", - }, - "type": "SpecificResource", + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "iiif-parser:isExternal": true, + "items": [], + "label": { + "en": [ + "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + ], }, - "type": "Annotation", + "metadata": [], + "navDate": "1986-01-01T00:00:00+00:00", + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", - "type": "Annotation", - }, + }, + "Range": {}, + "Selector": {}, + "Service": {}, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json": "Collection", + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", + "type": "Collection", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 64`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "label": { + "en": [ + "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", ], - "motivation": [ - "painting", + }, + "navDate": "1986-01-01T00:00:00+00:00", + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "label": { + "en": [ + "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image": { + "navDate": "1987-01-01T00:00:00+00:00", + "type": "Manifest", + }, + ], + "label": { + "en": [ + "Chesapeake and Ohio Canal map and guide pamphlets", + ], + }, + "thumbnail": [ + { + "format": "image/jpeg", + "height": 300, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 221, + }, + ], + "type": "Collection", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 65`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", "type": "Annotation", }, ], @@ -15704,7 +14746,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", @@ -15714,20 +14756,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", "type": "Annotation", }, ], @@ -15743,25 +14785,31 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 1765, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "1986 Map, recto and verso, with a date of publication", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -15770,80 +14818,207 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 1286, }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", - "type": "AnnotationPage", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 1765, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Image", }, ], - "items": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "profile": "level1", + "type": "ImageService3", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "type": "Image", + "width": 1286, }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1": { + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", }, ], - "label": null, + "label": { + "en": [ + "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + ], + }, "metadata": [], + "navDate": "1986-01-01T00:00:00+00:00", + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1": { + }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 66`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "items": [ + { + "height": 1765, + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 1765, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 1286, + }, + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "1986 Map, recto and verso, with a date of publication", + ], + }, + "type": "Canvas", + "width": 1286, + }, + ], + "label": { + "en": [ + "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + ], + }, + "navDate": "1986-01-01T00:00:00+00:00", + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 67`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", "type": "Annotation", }, ], @@ -15859,25 +15034,31 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 7072, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "1987 Map, recto and verso, with a date of publication", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -15886,80 +15067,242 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 5212, }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1": { + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 7072, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5212, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", }, ], - "label": null, + "label": { + "en": [ + "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + ], + }, "metadata": [], + "navDate": "1987-01-01T00:00:00+00:00", + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", + }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 68`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "items": [ + { + "height": 7072, + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 7072, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5212, + }, + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "1987 Map, recto and verso, with a date of publication", + ], + }, + "type": "Canvas", + "width": 5212, + }, + ], + "label": { + "en": [ + "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + ], + }, + "navDate": "1987-01-01T00:00:00+00:00", + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 69`] = ` +{ + "entities": { + "Agent": { + "https://id.loc.gov/authorities/n79055331": { + "homepage": [ + { + "id": "https://digital.library.ucla.edu/", + "type": "ContentResource", + }, + ], + "id": "https://id.loc.gov/authorities/n79055331", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", - "type": "AnnotationPage", + "id": "https://id.loc.gov/authorities/n79055331", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "type": "Agent", }, ], - "items": [ + "label": { + "en": [ + "UCLA Library", + ], + }, + "logo": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "type": "ContentResource", + }, + ], + "seeAlso": [ + { + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "type": "ContentResource", + }, + ], + "type": "Agent", + }, + }, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", "type": "Annotation", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1": { + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", "type": "Annotation", }, ], @@ -15977,23 +15320,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1": { + "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 4429, + "height": 5312, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Front cover", + "front cover with color bar", ], }, "metadata": [], @@ -16009,540 +15352,141 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2533, + "width": 4520, }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4315, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", - "items": [ + }, + "Collection": {}, + "ContentResource": { + "https://digital.library.ucla.edu/": { + "format": "text/html", + "id": "https://digital.library.ucla.edu/", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", - "type": "AnnotationPage", + "id": "https://digital.library.ucla.edu/", + "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", + "type": "Text", }, ], "label": { "en": [ - "Inside front cover", + "UCLA Library Digital Collections", ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2490, + "language": [ + "en", + ], + "type": "Text", }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4278, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Foldout, folded", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2197, - }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [ - "non-paged", - ], - "duration": 0, - "height": 1968, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Foldout, unfolded", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 3688, - }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 1968, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Foldout, folded (recto)", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 3688, - }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4315, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Title page", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2490, - }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4315, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Back of title page", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2490, - }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4315, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Inside back cover", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2490, - }, - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4315, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", - "items": [ + "https://id.loc.gov/authorities/names/n79055331.madsxml.xml": { + "format": "application/xml", + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", - "type": "AnnotationPage", + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", + "type": "Dataset", }, ], "label": { "en": [ - "Back cover", + "US Library of Congress data about the UCLA Library", ], }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2490, - }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4429, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2533, - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2490, - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4278, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2197, - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1968, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3688, - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 1968, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3688, - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2490, - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2490, + "profile": "http://www.loc.gov/mads/v2", + "type": "Dataset", }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", + "height": 5312, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2490, + "width": 4520, }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", + "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png": { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover", - "profile": "level1", + "height": 502, + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", + "profile": "level2", + "sizes": [ + { + "height": 126, + "width": 300, + }, + { + "height": 251, + "width": 600, + }, + { + "height": 502, + "width": 1200, + }, + ], "type": "ImageService3", + "width": 1200, }, ], "type": "Image", - "width": 2490, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [ - "paged", - ], + "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", "type": "Canvas", }, ], "label": { "en": [ - "Outlines of geology being the substance of a course of lectures delivered in the Theatre of the Royal Institution in the year 1816", + "Playbill Cover", ], }, "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, - "provider": [], + "provider": [ + { + "id": "https://id.loc.gov/authorities/n79055331", + "type": "Agent", + }, + ], "rendering": [], "requiredStatement": null, "rights": null, @@ -16551,7 +15495,11 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ "services": [], "start": null, "structures": [], - "summary": null, + "summary": { + "en": [ + "Cover of playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV, and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + ], + }, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", @@ -16560,330 +15508,61 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover": { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9": "Canvas", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg": "ContentResource", + "https://digital.library.ucla.edu/": "ContentResource", + "https://id.loc.gov/authorities/n79055331": "Agent", + "https://id.loc.gov/authorities/names/n79055331.madsxml.xml": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0": "Canvas", + "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": "ContentResource", + "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 70`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "behavior": [ - "paged", - ], - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", "items": [ { - "height": 4429, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4429, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2533, - }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Front cover", - ], - }, - "type": "Canvas", - "width": 2533, - }, - { - "height": 4315, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2490, - }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Inside front cover", - ], - }, - "type": "Canvas", - "width": 2490, - }, - { - "height": 4278, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4278, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2197, - }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Foldout, folded", - ], - }, - "type": "Canvas", - "width": 2197, - }, - { - "behavior": [ - "non-paged", - ], - "height": 1968, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 1968, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3688, - }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Foldout, unfolded", - ], - }, - "type": "Canvas", - "width": 3688, - }, - { - "height": 1968, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 1968, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3688, - }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Foldout, folded (recto)", - ], - }, - "type": "Canvas", - "width": 3688, - }, - { - "height": 4315, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "height": 5312, + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", + "height": 5312, + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2490, + "width": 4520, }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "target": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", "type": "Annotation", }, ], @@ -16892,156 +15571,112 @@ exports[`Cookbook > Testing normalize %p (%p) 0035-foldouts https://iiif.io/api/ ], "label": { "en": [ - "Title page", + "front cover with color bar", ], }, "type": "Canvas", - "width": 2490, + "width": 4520, }, + ], + "label": { + "en": [ + "Playbill Cover", + ], + }, + "provider": [ { - "height": 4315, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", - "items": [ + "homepage": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2490, - }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", - "type": "Annotation", - }, + "format": "text/html", + "id": "https://digital.library.ucla.edu/", + "label": { + "en": [ + "UCLA Library Digital Collections", + ], + }, + "language": [ + "en", ], - "type": "AnnotationPage", + "type": "Text", }, ], + "id": "https://id.loc.gov/authorities/n79055331", "label": { "en": [ - "Back of title page", + "UCLA Library", ], }, - "type": "Canvas", - "width": 2490, - }, - { - "height": 4315, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", - "items": [ + "logo": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", - "items": [ + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "service": [ { - "body": { - "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2490, - }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", - "type": "Annotation", + "height": 502, + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", + "profile": "level2", + "sizes": [ + { + "height": 126, + "width": 300, + }, + { + "height": 251, + "width": 600, + }, + { + "height": 502, + "width": 1200, + }, + ], + "type": "ImageService3", + "width": 1200, }, ], - "type": "AnnotationPage", + "type": "Image", }, ], - "label": { - "en": [ - "Inside back cover", - ], - }, - "type": "Canvas", - "width": 2490, - }, - { - "height": 4315, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", - "items": [ + "seeAlso": [ { - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4315, - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2490, - }, - "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", + "format": "application/xml", + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "label": { + "en": [ + "US Library of Congress data about the UCLA Library", + ], + }, + "profile": "http://www.loc.gov/mads/v2", + "type": "Dataset", }, ], - "label": { - "en": [ - "Back cover", - ], - }, - "type": "Canvas", - "width": 2490, + "type": "Agent", }, ], - "label": { + "summary": { "en": [ - "Outlines of geology being the substance of a course of lectures delivered in the Theatre of the Royal Institution in the year 1816", + "Cover of playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV, and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0036-composition-from-multiple-images https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 71`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", "type": "Annotation", }, ], @@ -17050,25 +15685,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0036-composition-from-multiple-ima ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", "type": "Annotation", }, ], @@ -17076,79 +15711,144 @@ exports[`Cookbook > Testing normalize %p (%p) 0036-composition-from-multiple-ima "painting", ], "target": { - "selector": { - "type": "FragmentSelector", - "value": "xywh=3949,994,1091,1232", - }, "source": { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", - "iiif-parser:hasPart": [ + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", - "type": "Annotation", - }, + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", "type": "Annotation", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1": { "behavior": [], - "duration": 0, - "height": 5412, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", "type": "AnnotationPage", }, ], - "label": { - "none": [ - "f. 033v-034r [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]", - ], - }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -17157,273 +15857,138 @@ exports[`Cookbook > Testing normalize %p (%p) 0036-composition-from-multiple-ima "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 7216, + "type": "AnnotationPage", }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 5412, - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "AnnotationPage", }, ], - "service": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", + "type": "Annotation", }, ], - "type": "Image", - "width": 7216, + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2414, - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "AnnotationPage", }, ], - "label": { - "fr": [ - "Miniature [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]", - ], - }, - "service": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", + "type": "Annotation", }, ], - "type": "Image", - "width": 2138, + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", + "type": "Annotation", }, ], - "label": { - "en": [ - "Folio from Grandes Chroniques de France, ca. 1460", - ], - }, + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux": { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature": { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", - "profile": "level1", - "type": "ImageService3", - }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0036-composition-from-multiple-images https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", - "items": [ - { - "height": 5412, - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 5412, - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 7216, - }, - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", - "type": "Annotation", - }, - { - "body": { - "format": "image/jpeg", - "height": 2414, - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", - "label": { - "fr": [ - "Miniature [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]", - ], - }, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2138, - }, - "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1#xywh=3949,994,1091,1232", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "none": [ - "f. 033v-034r [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]", - ], + "type": "AnnotationPage", }, - "type": "Canvas", - "width": 7216, - }, - ], - "label": { - "en": [ - "Folio from Grandes Chroniques de France, ca. 1460", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manifest-css https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": { - "body": [ + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/sr1", - "source": { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", - "type": "ContentResource", - }, - "styleClass": "rotated", - "type": "SpecificResource", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "AnnotationPage", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", "type": "Annotation", }, ], - "motivation": [ - "painting", - ], - "stylesheet": { - "type": "CssStylesheet", - "value": ".rotated { transform-origin: center; transform: rotate(90deg); }", - }, - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", "type": "Annotation", }, ], @@ -17441,23 +16006,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manife }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 1523, + "height": 2504, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "inside cover; 1r", + "f. 1r", ], }, "metadata": [], @@ -17473,50 +16038,59 @@ exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manife "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2105, + "width": 1768, }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2105, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", - "service": [ + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 2512, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", + "type": "AnnotationPage", }, ], - "type": "Image", - "width": 1523, + "label": { + "en": [ + "f. 1v", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 1792, }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 2456, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", - "type": "Manifest", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", + "type": "AnnotationPage", }, ], "label": { - "ca": [ - "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", + "en": [ + "f. 2r", ], }, "metadata": [], @@ -17529,164 +16103,34 @@ exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manife "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master": { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", - "profile": "level1", - "type": "ImageService3", + "type": "Canvas", + "width": 1792, }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manifest-css https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", - "items": [ - { - "height": 1523, - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", - "items": [ - { - "body": { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/sr1", - "source": { - "format": "image/jpeg", - "height": 2105, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1523, - }, - "styleClass": "rotated", - "type": "SpecificResource", - }, - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", - "motivation": "painting", - "stylesheet": { - "type": "CssStylesheet", - "value": ".rotated { transform-origin: center; transform: rotate(90deg); }", - }, - "target": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "inside cover; 1r", - ], - }, - "type": "Canvas", - "width": 2105, - }, - ], - "label": { - "ca": [ - "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manifest-service https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": { - "body": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/v0001-image", - "selector": { - "rotation": "90", - "type": "ImageApiSelector", - }, - "source": { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", - "type": "ContentResource", - }, - "type": "SpecificResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 2440, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", + "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "f. 2v", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -17695,27 +16139,26 @@ exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manife "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 1760, }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 1523, + "height": 2416, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "inside cover; 1r", + "f. 3r", ], }, "metadata": [], @@ -17731,50 +16174,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manife "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2105, - }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2105, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1523, + "width": 1776, }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 2416, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", - "type": "Manifest", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "type": "AnnotationPage", }, ], "label": { - "ca": [ - "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", + "en": [ + "f. 3v", ], }, "metadata": [], @@ -17787,410 +16205,355 @@ exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manife "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1": { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", - "profile": "level1", - "type": "ImageService3", + "type": "Canvas", + "width": 1776, }, }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ": "Manifest", - "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0040-image-rotation-service-manifest-service https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", - "items": [ - { - "height": 1523, - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", - "items": [ - { - "body": { - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/v0001-image", - "selector": { - "rotation": "90", - "type": "ImageApiSelector", - }, - "source": { - "format": "image/jpeg", - "height": 2105, - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1523, - }, - "type": "SpecificResource", - }, - "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "inside cover; 1r", + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2504, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", + "type": "Image", + }, ], - }, - "type": "Canvas", - "width": 2105, - }, - ], - "label": { - "ca": [ - "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image": { - "body": [ + "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "profile": "level1", + "type": "ImageService3", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "type": "Image", + "width": 1768, + }, + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2512, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", + "type": "Image", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image": { - "body": [ + "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", + "profile": "level1", + "type": "ImageService3", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", + "type": "Image", + "width": 1792, + }, + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2456, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", + "type": "Image", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image": { - "body": [ + "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", + "profile": "level1", + "type": "ImageService3", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", + "type": "Image", + "width": 1792, + }, + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2440, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", + "type": "Image", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image": { - "body": [ + "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", + "profile": "level1", + "type": "ImageService3", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", + "type": "Image", + "width": 1760, + }, + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2416, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", + "type": "Image", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image": { - "body": [ + "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", + "profile": "level1", + "type": "ImageService3", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", + "type": "Image", + "width": 1776, + }, + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2416, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", + "type": "Image", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", - "type": "Canvas", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", + "profile": "level1", + "type": "ImageService3", }, - "type": "SpecificResource", - }, - "type": "Annotation", + ], + "type": "Image", + "width": 1776, }, }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1": { + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas", }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Ethiopic Ms 10", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "type": "Range", + }, + ], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Manifest", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1": { + }, + "Range": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4823, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "type": "Canvas", }, ], - "label": { - "en": [ - "front cover", - ], - }, + "items": [], + "label": null, "metadata": [], "navDate": null, "partOf": [], @@ -18201,30 +16564,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], "type": "Canvas", - "width": 3497, + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4804, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "type": "Canvas", }, ], - "label": { - "en": [ - "pages 1–2", - ], - }, + "items": [], + "label": null, "metadata": [], "navDate": null, "partOf": [], @@ -18235,28 +16596,32 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], "type": "Canvas", - "width": 6062, + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4776, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "type": "Range", }, ], "label": { "en": [ - "pages 3–4", + "Table of Contents", ], }, "metadata": [], @@ -18269,28 +16634,47 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 6127, + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4751, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "type": "Range", + }, + ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", - "type": "AnnotationPage", + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + { + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], "label": { - "en": [ - "pages 5–6", + "gez": [ + "Tabiba Tabiban [ጠቢበ ጠቢባን]", ], }, "metadata": [], @@ -18303,28 +16687,39 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 6124, + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4808, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "type": "Range", + }, + ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "type": "Range", }, ], "label": { - "en": [ - "back cover", + "gez": [ + "Arede'et [አርድዕት]", ], }, "metadata": [], @@ -18337,177 +16732,100 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 3510, - }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf": { - "format": "application/pdf", - "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", - "type": "Text", - }, - ], - "label": { - "en": [ - "PDF version", - ], - }, - "type": "Text", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3497, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4804, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6062, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4776, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6127, + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4751, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "type": "Range", }, ], - "type": "Image", - "width": 6124, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4808, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", - "type": "Image", + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", }, - ], - "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", - "profile": "level1", - "type": "ImageService3", + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], - "type": "Image", - "width": 3510, + "label": { + "en": [ + "Monday", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Range", + "viewingDirection": "left-to-right", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "type": "Range", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", - "type": "Canvas", + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas", + }, + "type": "SpecificResource", }, { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", - "type": "Canvas", + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], "label": { "en": [ - "Alternative Representations Through Rendering", + "Tuesday", ], }, "metadata": [], @@ -18515,120 +16833,122 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api "partOf": [], "placeholderCanvas": null, "provider": [], - "rendering": [ - { - "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", - "type": "ContentResource", - }, - ], + "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], "start": null, - "structures": [], - "summary": { - "en": [ - "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", - ], - }, + "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "right-to-left", + "type": "Range", + "viewingDirection": "left-to-right", }, }, - "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6": "Canvas", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0": "Range", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1": "Range", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2": "Range", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1": "Range", + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2": "Range", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 72`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", "items": [ { - "height": 4823, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "height": 2504, + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "height": 2504, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3497, + "width": 1768, }, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", "type": "Annotation", }, ], @@ -18637,37 +16957,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api ], "label": { "en": [ - "front cover", + "f. 1r", ], }, "type": "Canvas", - "width": 3497, + "width": 1768, }, { - "height": 4804, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", + "height": 2512, + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4804, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "height": 2512, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 6062, + "width": 1792, }, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", + "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", "type": "Annotation", }, ], @@ -18676,37 +16996,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api ], "label": { "en": [ - "pages 1–2", + "f. 1v", ], }, "type": "Canvas", - "width": 6062, + "width": 1792, }, { - "height": 4776, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", + "height": 2456, + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4776, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "height": 2456, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 6127, + "width": 1792, }, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0003-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", + "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", "type": "Annotation", }, ], @@ -18715,37 +17035,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api ], "label": { "en": [ - "pages 3–4", + "f. 2r", ], }, "type": "Canvas", - "width": 6127, + "width": 1792, }, { - "height": 4751, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", + "height": 2440, + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4751, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "height": 2440, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 6124, + "width": 1760, }, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0004-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", + "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", "type": "Annotation", }, ], @@ -18754,37 +17074,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api ], "label": { "en": [ - "pages 5–6", + "f. 2v", ], }, "type": "Canvas", - "width": 6124, + "width": 1760, }, { - "height": 4808, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", + "height": 2416, + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4808, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "height": 2416, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3510, + "width": 1776, }, - "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0005-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", + "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", "type": "Annotation", }, ], @@ -18793,57 +17113,159 @@ exports[`Cookbook > Testing normalize %p (%p) 0046-rendering https://iiif.io/api ], "label": { "en": [ - "back cover", + "f. 3r", ], }, "type": "Canvas", - "width": 3510, + "width": 1776, + }, + { + "height": 2416, + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 2416, + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 1776, + }, + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0006-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "f. 3v", + ], + }, + "type": "Canvas", + "width": 1776, }, ], "label": { "en": [ - "Alternative Representations Through Rendering", + "Ethiopic Ms 10", ], }, - "rendering": [ + "structures": [ { - "format": "application/pdf", - "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas", + }, + ], + "label": { + "gez": [ + "Tabiba Tabiban [ጠቢበ ጠቢባን]", + ], + }, + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Monday", + ], + }, + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Tuesday", + ], + }, + "type": "Range", + }, + ], + "label": { + "gez": [ + "Arede'et [አርድዕት]", + ], + }, + "type": "Range", + }, + ], "label": { "en": [ - "PDF version", + "Table of Contents", ], }, - "type": "Text", + "type": "Range", }, ], - "summary": { - "en": [ - "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", - ], - }, "type": "Manifest", - "viewingDirection": "right-to-left", } `; -exports[`Cookbook > Testing normalize %p (%p) 0047-homepage https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 73`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", "type": "Annotation", }, ], @@ -18852,7 +17274,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0047-homepage https://iiif.io/api/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", "type": "Canvas", }, "type": "SpecificResource", @@ -18862,20 +17284,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0047-homepage https://iiif.io/api/ }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", "type": "Annotation", }, ], @@ -18893,25 +17315,21 @@ exports[`Cookbook > Testing normalize %p (%p) 0047-homepage https://iiif.io/api/ }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 3000, + "duration": 7278.422, + "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", "type": "AnnotationPage", }, ], - "label": { - "none": [ - "Front", - ], - }, + "label": null, "metadata": [], "navDate": null, "partOf": [], @@ -18925,82 +17343,54 @@ exports[`Cookbook > Testing normalize %p (%p) 0047-homepage https://iiif.io/api/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2315, + "width": 1920, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg": { - "format": "image/jpeg", - "height": 3000, - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2315, - }, - "https://www.getty.edu/art/collection/object/103RQQ": { - "format": "text/html", - "id": "https://www.getty.edu/art/collection/object/103RQQ", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": { + "duration": 7278.422, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", "iiif-parser:hasPart": [ { - "id": "https://www.getty.edu/art/collection/object/103RQQ", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", - "type": "Text", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "type": "Video", }, ], - "label": { - "en": [ - "Home page at the Getty Museum Collection", - ], - }, - "language": [ - "en", - ], - "type": "Text", + "type": "Video", + "width": 1920, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], - "homepage": [ - { - "id": "https://www.getty.edu/art/collection/object/103RQQ", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", "type": "Canvas", }, ], "label": { - "none": [ - "Laocöon", + "en": [ + "The Elixir of Love", + ], + "it": [ + "L'Elisir D'Amore", ], }, "metadata": [], @@ -19015,414 +17405,179 @@ exports[`Cookbook > Testing normalize %p (%p) 0047-homepage https://iiif.io/api/ "service": [], "services": [], "start": null, - "structures": [], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "type": "Range", + }, + ], "summary": null, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", }, }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", - }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg": "ContentResource", - "https://www.getty.edu/art/collection/object/103RQQ": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0047-homepage https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "homepage": [ - { - "format": "text/html", - "id": "https://www.getty.edu/art/collection/object/103RQQ", - "label": { - "en": [ - "Home page at the Getty Museum Collection", + "Range": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "type": "Canvas", + }, ], + "items": [], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Canvas", + "viewingDirection": "left-to-right", }, - "language": [ - "en", - ], - "type": "Text", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", - "items": [ - { - "height": 3000, - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 3000, - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2315, - }, - "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "none": [ - "Front", - ], - }, - "type": "Canvas", - "width": 2315, - }, - ], - "label": { - "none": [ - "Laocöon", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0053-seeAlso https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "type": "Range", }, - ], - "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "type": "Range", }, ], - "label": null, + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "type": "Range", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "type": "Range", }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4823, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", - "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "type": "Range", }, ], "label": { - "en": [ - "front cover", + "it": [ + "Atto Primo", ], }, "metadata": [], @@ -19435,62 +17590,42 @@ exports[`Cookbook > Testing normalize %p (%p) 0053-seeAlso https://iiif.io/api/c "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 3497, + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4804, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "type": "Range", }, ], - "label": { - "en": [ - "pages 1–2", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 6062, - }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 4776, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", - "type": "AnnotationPage", + "selector": { + "type": "FragmentSelector", + "value": "t=0,302.05", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], "label": { - "en": [ - "pages 3–4", + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore", ], }, "metadata": [], @@ -19503,28 +17638,42 @@ exports[`Cookbook > Testing normalize %p (%p) 0053-seeAlso https://iiif.io/api/c "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 6127, + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4751, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "type": "Range", + }, + ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", - "type": "AnnotationPage", + "selector": { + "type": "FragmentSelector", + "value": "t=302.05,3971.24", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], "label": { "en": [ - "pages 5–6", + "Remainder of Atto Primo", ], }, "metadata": [], @@ -19537,28 +17686,42 @@ exports[`Cookbook > Testing normalize %p (%p) 0053-seeAlso https://iiif.io/api/c "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 6124, + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 4808, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "type": "Range", + }, + ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", - "type": "AnnotationPage", + "selector": { + "type": "FragmentSelector", + "value": "t=3971.24", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], "label": { - "en": [ - "back cover", + "it": [ + "Atto Secondo", ], }, "metadata": [], @@ -19571,546 +17734,412 @@ exports[`Cookbook > Testing normalize %p (%p) 0053-seeAlso https://iiif.io/api/c "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 3510, + "type": "Range", + "viewingDirection": "left-to-right", }, }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml": { - "format": "text/xml", - "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", - "type": "Dataset", - }, - ], - "label": { - "en": [ - "MODS metadata", - ], - }, - "profile": "http://www.loc.gov/mods/v3", - "type": "Dataset", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3497, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4804, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6062, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4776, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6127, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4751, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6124, - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4808, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3510, - }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", - "type": "Manifest", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Linking to Structured Metadata", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [ - { - "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", - "type": "ContentResource", - }, - ], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": { - "en": [ - "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", - ], - }, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "right-to-left", - }, - }, - "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05": "Canvas", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24": "Canvas", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24": "Canvas", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1": "Range", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2": "Range", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3": "Range", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4": "Range", + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5": "Range", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0053-seeAlso https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 74`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", "items": [ { - "height": 4823, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3497, - }, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "front cover", - ], - }, - "type": "Canvas", - "width": 3497, - }, - { - "height": 4804, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "duration": 7278.422, + "height": 1080, + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", "items": [ { "body": { - "format": "image/jpeg", - "height": 4804, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 6062, + "duration": 7278.422, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video", + "width": 1920, }, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "target": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "pages 1–2", - ], - }, "type": "Canvas", - "width": 6062, + "width": 1920, }, + ], + "label": { + "en": [ + "The Elixir of Love", + ], + "it": [ + "L'Elisir D'Amore", + ], + }, + "structures": [ { - "height": 4776, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", "items": [ { - "body": { - "format": "image/jpeg", - "height": 4776, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", - "profile": "level1", - "type": "ImageService3", - }, + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", + "type": "Canvas", + }, + ], + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore", ], - "type": "Image", - "width": 6127, }, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", - "type": "Annotation", + "type": "Range", }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "pages 3–4", - ], - }, - "type": "Canvas", - "width": 6127, - }, - { - "height": 4751, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", - "items": [ { - "body": { - "format": "image/jpeg", - "height": 4751, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", - "profile": "level1", - "type": "ImageService3", - }, + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Remainder of Atto Primo", ], - "type": "Image", - "width": 6124, }, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", - "type": "Annotation", + "type": "Range", }, ], - "type": "AnnotationPage", + "label": { + "it": [ + "Atto Primo", + ], + }, + "type": "Range", }, - ], - "label": { - "en": [ - "pages 5–6", - ], - }, - "type": "Canvas", - "width": 6124, - }, - { - "height": 4808, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", - "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", "items": [ { - "body": { - "format": "image/jpeg", - "height": 4808, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3510, - }, - "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", + "type": "Canvas", }, ], - "type": "AnnotationPage", + "label": { + "it": [ + "Atto Secondo", + ], + }, + "type": "Range", }, ], "label": { - "en": [ - "back cover", - ], - }, - "type": "Canvas", - "width": 3510, - }, - ], - "label": { - "en": [ - "Linking to Structured Metadata", - ], - }, - "seeAlso": [ - { - "format": "text/xml", - "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", - "label": { - "en": [ - "MODS metadata", + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore", ], }, - "profile": "http://www.loc.gov/mods/v3", - "type": "Dataset", + "type": "Range", }, ], - "summary": { - "en": [ - "Playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", - ], - }, "type": "Manifest", - "viewingDirection": "right-to-left", } `; -exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 75`] = ` { "entities": { "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1": { - "body": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", - "type": "ContentResource", - }, + "Annotation": {}, + "AnnotationCollection": {}, + "AnnotationPage": {}, + "Canvas": {}, + "Collection": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [ + "multi-part", ], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", + "type": "Collection", }, ], - "motivation": [ - "painting", - ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "iiif-parser:isExternal": true, + "label": { + "jp": [ + "巻 1 [Vol. 1]", + ], + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "iiif-parser:isExternal": true, + "label": { + "jp": [ + "巻 2 [Vol. 2]", + ], + }, + "type": "Manifest", + }, + ], + "label": { + "jp": [ + "青楼絵本年中行事 [Seirō ehon nenjū gyōji]", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "summary": null, + "thumbnail": [], + "type": "Collection", + "viewingDirection": "left-to-right", + }, + }, + "ContentResource": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "iiif-parser:isExternal": true, + "items": [], + "label": { + "jp": [ + "巻 1 [Vol. 1]", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "iiif-parser:isExternal": true, + "items": [], + "label": { + "jp": [ + "巻 2 [Vol. 2]", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + }, + "Range": {}, + "Selector": {}, + "Service": {}, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json": "Collection", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": "Manifest", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", + "type": "Collection", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 76`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "behavior": [ + "multi-part", + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/collection.json", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "label": { + "jp": [ + "巻 1 [Vol. 1]", + ], + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "label": { + "jp": [ + "巻 2 [Vol. 2]", + ], + }, + "type": "Manifest", + }, + ], + "label": { + "jp": [ + "青楼絵本年中行事 [Seirō ehon nenjū gyōji]", + ], + }, + "type": "Collection", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 77`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], "target": { - "selector": { - "type": "FragmentSelector", - "value": "t=0,3971.24", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "type": "Annotation", }, + ], + "motivation": [ + "painting", + ], + "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", "type": "Annotation", }, ], @@ -20118,12 +18147,62 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "painting", ], "target": { - "selector": { - "type": "FragmentSelector", - "value": "t=3971.24", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "type": "Annotation", }, + ], + "motivation": [ + "painting", + ], + "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", "type": "Canvas", }, "type": "SpecificResource", @@ -20133,24 +18212,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", - "type": "Annotation", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", "type": "Annotation", }, ], @@ -20166,27 +18241,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1": { "behavior": [], - "duration": 7278.422, - "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", "type": "AnnotationPage", }, ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "type": "Annotation", + }, + ], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -20194,186 +18267,117 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "seeAlso": [], "service": [], "summary": null, - "thumbnail": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "type": "ContentResource", - }, - ], - "type": "Canvas", - "width": 1920, - }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", - "type": "Image", - }, - ], - "type": "Image", + "thumbnail": [], + "type": "AnnotationPage", }, - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": { - "duration": 3971.24, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", - "type": "Video", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "AnnotationPage", }, ], - "type": "Video", - "width": 1920, - }, - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": { - "duration": 3307.22, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", - "type": "Video", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "type": "Annotation", }, ], - "type": "Video", - "width": 1920, + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "The Elixir of Love", - ], - "it": [ - "L'Elisir D'Amore", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Date Issued", - ], - }, - "value": { - "en": [ - "2019", - ], - }, - }, - { - "label": { - "en": [ - "Publisher", - ], - }, - "value": { - "en": [ - "Indiana University Jacobs School of Music", - ], - }, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "type": "Annotation", }, ], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, + "label": null, + "metadata": [], "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", - "type": "Range", - }, - ], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, - }, - "Range": { - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "type": "Annotation", }, ], - "items": [], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Canvas", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5730, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, + "label": { + "en": [ + "Front cover", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -20384,28 +18388,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], "type": "Canvas", - "viewingDirection": "left-to-right", + "width": 4301, }, - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5702, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, + "label": { + "en": [ + "Page spread 1", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -20416,32 +18422,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], "type": "Canvas", - "viewingDirection": "left-to-right", + "width": 7451, }, - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5702, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Gaetano Donizetti, L'Elisir D'Amore", + "en": [ + "Page spread 2", ], }, "metadata": [], @@ -20454,39 +18456,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 7451, }, - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5702, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", - "type": "Range", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Atto Primo", + "en": [ + "Page spread 3", ], }, "metadata": [], @@ -20499,42 +18490,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 7451, }, - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5702, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", - "type": "Range", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", "items": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=0,302.05", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Preludio e Coro d'introduzione – Bel conforto al mietitore", + "en": [ + "Page spread 4", ], }, "metadata": [], @@ -20547,90 +18524,162 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 7451, }, - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5730, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", - "type": "Range", + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Image", }, ], - "items": [ + "service": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=302.05,3971.24", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "profile": "level1", + "type": "ImageService3", }, ], - "label": { - "en": [ - "Remainder of Atto Primo", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Image", + "width": 4301, }, - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5": { + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5702, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7451, + }, + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5702, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7451, + }, + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5702, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7451, + }, + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5702, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7451, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [], + "behavior": [ + "individuals", + ], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "type": "Manifest", }, ], "items": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=3971.24,7278.422", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas", }, ], "label": { - "it": [ - "Atto Secondo", + "en": [ + "Seirō ehon nenjū gyōji : kan 1 | 青楼絵本年中行事 : 巻 1", ], }, "metadata": [], @@ -20643,221 +18692,306 @@ exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif "rights": null, "seeAlso": [], "service": [], + "services": [], "start": null, + "structures": [], "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Manifest", + "viewingDirection": "right-to-left", }, }, + "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002": { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003": { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007": { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008": { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": "ContentResource", - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": "ContentResource", - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05": "Canvas", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24": "Canvas", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422": "Canvas", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2": "Annotation", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1": "Range", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2": "Range", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3": "Range", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4": "Range", - "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5": "Range", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0064-opera-one-canvas https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 78`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "behavior": [ + "individuals", + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", "items": [ { - "duration": 7278.422, - "height": 1080, - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "height": 5730, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", "items": [ { "body": { - "duration": 3971.24, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", - "type": "Video", - "width": 1920, - }, - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,3971.24", - "type": "Annotation", - }, - { - "body": { - "duration": 3307.22, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", - "type": "Video", - "width": 1920, + "format": "image/jpeg", + "height": 5730, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4301, }, - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "thumbnail": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "type": "Image", - }, - ], - "type": "Canvas", - "width": 1920, - }, - ], - "label": { - "en": [ - "The Elixir of Love", - ], - "it": [ - "L'Elisir D'Amore", - ], - }, - "metadata": [ - { "label": { "en": [ - "Date Issued", - ], - }, - "value": { - "en": [ - "2019", + "Front cover", ], }, + "type": "Canvas", + "width": 4301, }, { + "height": 5702, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 5702, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7451, + }, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], "label": { "en": [ - "Publisher", - ], - }, - "value": { - "en": [ - "Indiana University Jacobs School of Music", + "Page spread 1", ], }, + "type": "Canvas", + "width": 7451, }, - ], - "structures": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "height": 5702, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", - "type": "Canvas", - }, - ], - "label": { - "it": [ - "Preludio e Coro d'introduzione – Bel conforto al mietitore", - ], - }, - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Remainder of Atto Primo", + "body": { + "format": "image/jpeg", + "height": 5702, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003", + "profile": "level1", + "type": "ImageService3", + }, ], + "type": "Image", + "width": 7451, }, - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Annotation", }, ], - "label": { - "it": [ - "Atto Primo", - ], - }, - "type": "Range", + "type": "AnnotationPage", }, + ], + "label": { + "en": [ + "Page spread 2", + ], + }, + "type": "Canvas", + "width": 7451, + }, + { + "height": 5702, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", - "type": "Canvas", + "body": { + "format": "image/jpeg", + "height": 5702, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7451, + }, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Annotation", }, ], - "label": { - "it": [ - "Atto Secondo", - ], - }, - "type": "Range", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Gaetano Donizetti, L'Elisir D'Amore", + "en": [ + "Page spread 3", ], }, - "type": "Range", + "type": "Canvas", + "width": 7451, + }, + { + "height": 5702, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 5702, + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7451, + }, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Page spread 4", + ], + }, + "type": "Canvas", + "width": 7451, }, ], + "label": { + "en": [ + "Seirō ehon nenjū gyōji : kan 1 | 青楼絵本年中行事 : 巻 1", + ], + }, "type": "Manifest", + "viewingDirection": "right-to-left", } `; -exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 79`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", "type": "Annotation", }, ], @@ -20866,25 +19000,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", "type": "Annotation", }, ], @@ -20893,7 +19027,88 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", "type": "Canvas", }, "type": "SpecificResource", @@ -20903,20 +19118,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", "type": "Annotation", }, ], @@ -20932,20 +19147,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", "type": "Annotation", }, ], @@ -20961,31 +19176,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1": { "behavior": [], - "duration": 3971.24, - "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Atto Primo", - ], - }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -20993,38 +19202,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "seeAlso": [], "service": [], "summary": null, - "thumbnail": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "type": "ContentResource", - }, - ], - "type": "Canvas", - "width": 1920, + "thumbnail": [], + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2": { - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1": { "behavior": [], - "duration": 3307.22, - "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Atto Secondo", - ], - }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -21032,169 +19231,59 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "seeAlso": [], "service": [], "summary": null, - "thumbnail": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", - "type": "ContentResource", - }, - ], - "type": "Canvas", - "width": 1920, - }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", - "type": "Image", - }, - ], - "type": "Image", - }, - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png": { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", - "type": "Image", - }, - ], - "type": "Image", - }, - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": { - "duration": 3971.24, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", - "type": "Video", - }, - ], - "type": "Video", - "width": 1920, - }, - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": { - "duration": 3307.22, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", - "type": "Video", - }, - ], - "type": "Video", - "width": 1920, + "thumbnail": [], + "type": "AnnotationPage", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "The Elixir of Love", - ], - "it": [ - "L'Elisir D'Amore", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Date Issued", - ], - }, - "value": { - "en": [ - "2019", - ], - }, - }, - { - "label": { - "en": [ - "Publisher", - ], - }, - "value": { - "en": [ - "Indiana University Jacobs School of Music", - ], - }, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "type": "Annotation", }, ], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, + "label": null, + "metadata": [], "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", - "type": "Range", - }, - ], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, }, - "Range": { - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05": { + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5745, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, + "label": { + "en": [ + "Front cover", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -21205,28 +19294,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], "type": "Canvas", - "viewingDirection": "left-to-right", + "width": 4114, }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5745, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, + "label": { + "en": [ + "Page spread 1", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -21237,28 +19328,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], "type": "Canvas", - "viewingDirection": "left-to-right", + "width": 7253, }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", - "iiif-parser:hasPart": [ + "duration": 0, + "height": 5745, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "type": "AnnotationPage", }, ], - "items": [], - "label": null, + "label": { + "en": [ + "Page spread 2", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -21269,32 +19362,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], "type": "Canvas", - "viewingDirection": "left-to-right", + "width": 7253, }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5745, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Gaetano Donizetti, L'Elisir D'Amore", + "en": [ + "Page spread 3", ], }, "metadata": [], @@ -21307,39 +19396,28 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 7253, }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 5745, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", - "type": "Range", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "type": "AnnotationPage", }, ], "label": { "en": [ - "Atto Primo", + "Page spread 4", ], }, "metadata": [], @@ -21352,138 +19430,162 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "rights": null, "seeAlso": [], "service": [], - "start": null, "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 7253, }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", - "type": "Range", + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Image", }, ], - "items": [ + "service": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=0,302.05", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "profile": "level1", + "type": "ImageService3", }, ], - "label": { - "it": [ - "Preludio e Coro d'introduzione – Bel conforto al mietitore", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Image", + "width": 4114, }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", - "type": "Range", + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "type": "Image", }, ], - "items": [ + "service": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=302.05,3971.24", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002", + "profile": "level1", + "type": "ImageService3", }, ], - "label": { - "en": [ - "Remainder of Atto Primo", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "start": null, - "summary": null, - "supplementary": null, - "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Image", + "width": 7253, }, - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5": { + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7253, + }, + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7253, + }, + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7253, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [], + "behavior": [ + "individuals", + ], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "type": "Manifest", }, ], "items": [ { - "selector": { - "type": "FragmentSelector", - "value": "t=0,3307.22", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", - "type": "Canvas", - }, - "type": "SpecificResource", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas", }, ], "label": { "en": [ - "Atto Secondo", + "Seirō ehon nenjū gyōji : kan 2 | 青楼絵本年中行事 : 巻 2", ], }, "metadata": [], @@ -21496,70 +19598,108 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https "rights": null, "seeAlso": [], "service": [], + "services": [], "start": null, + "structures": [], "summary": null, - "supplementary": null, "thumbnail": [], - "type": "Range", - "viewingDirection": "left-to-right", + "type": "Manifest", + "viewingDirection": "right-to-left", }, }, + "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002": { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003": { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004": { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005": { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": "ContentResource", - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png": "ContentResource", - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": "ContentResource", - "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05": "Canvas", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24": "Canvas", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22": "Canvas", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1": "Range", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2": "Range", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3": "Range", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4": "Range", - "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5": "Range", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 80`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "behavior": [ + "individuals", + ], + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", "items": [ { - "duration": 3971.24, - "height": 1080, - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "height": 5745, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", "items": [ { "body": { - "duration": 3971.24, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", - "type": "Video", - "width": 1920, + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4114, }, - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", "type": "Annotation", }, ], @@ -21568,38 +19708,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https ], "label": { "en": [ - "Atto Primo", + "Front cover", ], }, - "thumbnail": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", - "type": "Image", - }, - ], "type": "Canvas", - "width": 1920, + "width": 4114, }, { - "duration": 3307.22, - "height": 1080, - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "height": 5745, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", "items": [ { "body": { - "duration": 3307.22, - "format": "video/mp4", - "height": 1080, - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", - "type": "Video", - "width": 1920, + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7253, }, - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", "type": "Annotation", }, ], @@ -21608,143 +19747,157 @@ exports[`Cookbook > Testing normalize %p (%p) 0065-opera-multiple-canvases https ], "label": { "en": [ - "Atto Secondo", + "Page spread 1", ], }, - "thumbnail": [ - { - "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", - "type": "Image", - }, - ], "type": "Canvas", - "width": 1920, + "width": 7253, }, - ], - "label": { - "en": [ - "The Elixir of Love", - ], - "it": [ - "L'Elisir D'Amore", - ], - }, - "metadata": [ { + "height": 5745, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7253, + }, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], "label": { "en": [ - "Date Issued", - ], - }, - "value": { - "en": [ - "2019", + "Page spread 2", ], }, + "type": "Canvas", + "width": 7253, }, { - "label": { - "en": [ - "Publisher", - ], - }, - "value": { - "en": [ - "Indiana University Jacobs School of Music", - ], - }, - }, - ], - "structures": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "height": 5745, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", - "type": "Canvas", - }, - ], - "label": { - "it": [ - "Preludio e Coro d'introduzione – Bel conforto al mietitore", - ], - }, - "type": "Range", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", - "type": "Canvas", - }, - ], - "label": { - "en": [ - "Remainder of Atto Primo", + "body": { + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004", + "profile": "level1", + "type": "ImageService3", + }, ], + "type": "Image", + "width": 7253, }, - "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Annotation", }, ], - "label": { - "en": [ - "Atto Primo", - ], - }, - "type": "Range", + "type": "AnnotationPage", }, + ], + "label": { + "en": [ + "Page spread 3", + ], + }, + "type": "Canvas", + "width": 7253, + }, + { + "height": 5745, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", - "type": "Canvas", + "body": { + "format": "image/jpeg", + "height": 5745, + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7253, + }, + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Annotation", }, ], - "label": { - "en": [ - "Atto Secondo", - ], - }, - "type": "Range", + "type": "AnnotationPage", }, ], "label": { - "it": [ - "Gaetano Donizetti, L'Elisir D'Amore", + "en": [ + "Page spread 4", ], }, - "type": "Range", + "type": "Canvas", + "width": 7253, }, ], + "label": { + "en": [ + "Seirō ehon nenjū gyōji : kan 2 | 青楼絵本年中行事 : 巻 2", + ], + }, "type": "Manifest", + "viewingDirection": "right-to-left", } `; -exports[`Cookbook > Testing normalize %p (%p) 0074-multiple-language-captions https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 81`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", "type": "Annotation", }, ], @@ -21753,34 +19906,142 @@ exports[`Cookbook > Testing normalize %p (%p) 0074-multiple-language-captions ht ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image": { "body": [ { - "id": "vault://30199866", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", "type": "Annotation", }, ], "motivation": [ - "supplementing", + "painting", ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", "type": "Canvas", }, "type": "SpecificResource", @@ -21790,20 +20051,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0074-multiple-language-captions ht }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", "type": "Annotation", }, ], @@ -21819,20 +20080,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0074-multiple-language-captions ht "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", "type": "Annotation", }, ], @@ -21848,32 +20109,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0074-multiple-language-captions ht "thumbnail": [], "type": "AnnotationPage", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas": { - "accompanyingCanvas": null, - "annotations": [ + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", "type": "AnnotationPage", }, ], - "behavior": [], - "duration": 65, - "height": 384, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", + "type": "Annotation", }, ], "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -21882,98 +20136,148 @@ exports[`Cookbook > Testing normalize %p (%p) 0074-multiple-language-captions ht "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 288, + "type": "AnnotationPage", }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4": { - "duration": 65, - "format": "video/mp4", - "height": 384, - "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", - "type": "Video", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "AnnotationPage", }, ], - "type": "Video", - "width": 288, - }, - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt": { - "format": "text/vtt", - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", - "label": { - "en": [ - "Captions in WebVTT format", - ], - }, - "language": "en", - "type": "Text", - }, - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt": { - "format": "text/vtt", - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", - "label": { - "it": [ - "Sottotitoli in formato WebVTT", - ], - }, - "language": "it", - "type": "Text", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - "vault://30199866": { - "id": "vault://30199866", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", "iiif-parser:hasPart": [ { - "id": "vault://30199866", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", - "type": "Choice", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "AnnotationPage", }, + ], + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "type": "Annotation", }, ], - "type": "Choice", + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], + "duration": 0, + "height": 7230, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "type": "AnnotationPage", }, ], + "label": { + "en": [ + "Front cover", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 5428, + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 7230, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", - "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", + "type": "AnnotationPage", }, ], "label": { "en": [ - "For ladies. French models", - ], - "it": [ - "Per voi signore. Modelli francesi", + "Inside front cover", ], }, "metadata": [], @@ -21982,208 +20286,106 @@ exports[`Cookbook > Testing normalize %p (%p) 0074-multiple-language-captions ht "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": { - "label": { - "en": [ - "Rights", - ], - }, - "value": { - "en": [ - "All rights reserved Cinecittà Luce spa", - ], - }, - }, - "rights": "http://rightsstatements.org/vocab/InC/1.0/", + "requiredStatement": null, + "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "Canvas", + "width": 5428, }, - }, - "Range": {}, - "Selector": {}, - "Service": {}, - }, - "mapping": { - "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas": "Canvas", - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation": "Annotation", - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt": "Annotation", - "vault://30199866": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0074-multiple-language-captions https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", - "items": [ - { - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", - "items": [ - { - "body": { - "items": [ - { - "format": "text/vtt", - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", - "label": { - "en": [ - "Captions in WebVTT format", - ], - }, - "language": "en", - "type": "Text", - }, - { - "format": "text/vtt", - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", - "label": { - "it": [ - "Sottotitoli in formato WebVTT", - ], - }, - "language": "it", - "type": "Text", - }, - ], - "type": "Choice", - }, - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", - "motivation": "supplementing", - "target": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "duration": 65, - "height": 384, - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", - "items": [ - { - "body": { - "duration": 65, - "format": "video/mp4", - "height": 384, - "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", - "type": "Video", - "width": 288, - }, - "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 288, - }, - ], - "label": { - "en": [ - "For ladies. French models", - ], - "it": [ - "Per voi signore. Modelli francesi", - ], - }, - "requiredStatement": { - "label": { - "en": [ - "Rights", - ], - }, - "value": { - "en": [ - "All rights reserved Cinecittà Luce spa", - ], - }, - }, - "rights": "http://rightsstatements.org/vocab/InC/1.0/", - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0117-add-image-thumbnail https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", - "iiif-parser:hasPart": [ + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 7230, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", + "type": "AnnotationPage", }, ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", - "type": "Canvas", - }, - "type": "SpecificResource", + "label": { + "en": [ + "Vol. 1 title page", + ], }, - "type": "Annotation", + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 5428, }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 0, + "height": 7230, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", "type": "AnnotationPage", }, ], + "label": { + "en": [ + "Vol. 1 title page (verso)", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 5428, + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 7230, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", + "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "Vol. 2 title page", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -22192,27 +20394,26 @@ exports[`Cookbook > Testing normalize %p (%p) 0117-add-image-thumbnail https://i "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 5428, }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 5312, + "height": 7230, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "front cover with color bar", + "Vol. 2 title page (verso)", ], }, "metadata": [], @@ -22228,101 +20429,182 @@ exports[`Cookbook > Testing normalize %p (%p) 0117-add-image-thumbnail https://i "summary": null, "thumbnail": [], "type": "Canvas", - "width": 4520, + "width": 5428, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "extraFormats": [ - "png", - ], - "extraQualities": [ - "default", - "color", - "gray", - ], - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", "profile": "level1", - "protocol": "http://iiif.io/api/image", - "tiles": [ - { - "height": 512, - "scaleFactors": [ - 1, - 2, - 4, - 8, - ], - "width": 512, - }, - ], "type": "ImageService3", - "width": 3497, }, ], "type": "Image", - "width": 3497, + "width": 5428, }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 5312, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4520, + "width": 5428, + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg": { + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg": { + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", "type": "Canvas", }, ], "label": { - "en": [ - "Playbill Cover with Manifest Thumbnail", + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen", ], }, "metadata": [], @@ -22337,225 +20619,97 @@ exports[`Cookbook > Testing normalize %p (%p) 0117-add-image-thumbnail https://i "service": [], "services": [], "start": null, - "structures": [], - "summary": { - "en": [ - "Cover of playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", - ], - }, - "thumbnail": [ + "structures": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range", }, ], + "summary": null, + "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", }, }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", - "profile": "level1", - "type": "ImageService3", - }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0": "Canvas", - "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0117-add-image-thumbnail https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", - "items": [ - { - "height": 5312, - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 5312, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4520, - }, - "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "front cover with color bar", + "Range": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "type": "Canvas", + }, ], + "items": [], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Canvas", + "viewingDirection": "left-to-right", }, - "type": "Canvas", - "width": 4520, - }, - ], - "label": { - "en": [ - "Playbill Cover with Manifest Thumbnail", - ], - }, - "summary": { - "en": [ - "Cover of playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", - ], - }, - "thumbnail": [ - { - "format": "image/jpeg", - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", - "service": [ - { - "extraFormats": [ - "png", - ], - "extraQualities": [ - "default", - "color", - "gray", - ], - "height": 4823, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", - "profile": "level1", - "protocol": "http://iiif.io/api/image", - "tiles": [ - { - "height": 512, - "scaleFactors": [ - 1, - 2, - 4, - 8, - ], - "width": 512, - }, - ], - "type": "ImageService3", - "width": 3497, - }, - ], - "type": "Image", - "width": 3497, - }, - ], - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0118-multivalue https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1": { - "body": [ - { - "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 991, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], "navDate": null, @@ -22567,72 +20721,29 @@ exports[`Cookbook > Testing normalize %p (%p) 0118-multivalue https://iiif.io/ap "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], "type": "Canvas", - "width": 1114, - }, - }, - "Collection": {}, - "ContentResource": { - "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg": { - "format": "image/jpeg", - "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", - "type": "Image", - }, - ], - "type": "Image", + "viewingDirection": "left-to-right", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", - "type": "Manifest", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", "type": "Canvas", }, ], - "label": { - "fr": [ - "Arrangement en gris et noir no 1", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Alternative titles", - ], - }, - "value": { - "en": [ - "Whistler's Mother", - "Arrangement in Grey and Black No. 1", - ], - "fr": [ - "Portrait de la mère de l'artiste", - "La Mère de Whistler", - ], - }, - }, - ], + "items": [], + "label": null, + "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, @@ -22642,247 +20753,100 @@ exports[`Cookbook > Testing normalize %p (%p) 0118-multivalue https://iiif.io/ap "rights": null, "seeAlso": [], "service": [], - "services": [], "start": null, - "structures": [], - "summary": { - "en": [ - "A painting in oil on canvas created by the American-born painter James McNeill Whistler, in 1871.", - ], - }, + "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Manifest", + "type": "Canvas", "viewingDirection": "left-to-right", }, - }, - "Range": {}, - "Selector": {}, - "Service": {}, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json": "Manifest", - "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0118-multivalue https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", - "items": [ - { - "height": 991, - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", - "type": "Image", - }, - "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 1114, - }, - ], - "label": { - "fr": [ - "Arrangement en gris et noir no 1", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Alternative titles", - ], - }, - "value": { - "en": [ - "Whistler's Mother", - "Arrangement in Grey and Black No. 1", - ], - "fr": [ - "Portrait de la mère de l'artiste", - "La Mère de Whistler", - ], - }, - }, - ], - "summary": { - "en": [ - "A painting in oil on canvas created by the American-born painter James McNeill Whistler, in 1871.", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0135-annotating-point-in-canvas https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag": { - "body": [ - { - "id": "vault://5332a945", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "tagging", - ], - "target": { - "selector": { - "type": "PointSelector", - "x": 3385, - "y": 1464, - }, - "source": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "type": "Canvas", }, ], + "items": [], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "viewingDirection": "left-to-right", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0": { "accompanyingCanvas": null, - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", - "type": "AnnotationPage", - }, - ], + "annotations": [], "behavior": [], - "duration": 0, - "height": 7072, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "type": "Range", }, ], "label": { - "en": [ - "Chesapeake and Ohio Canal Pamphlet", + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen", ], }, "metadata": [], @@ -22895,74 +20859,47 @@ exports[`Cookbook > Testing normalize %p (%p) 0135-annotating-point-in-canvas ht "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 5212, - }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 7072, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 5212, - }, - "vault://5332a945": { - "format": "text/plain", - "id": "vault://5332a945", - "iiif-parser:hasPart": [ - { - "id": "vault://5332a945", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", - "type": "TextualBody", - }, - ], - "language": "en", - "type": "TextualBody", - "value": "Town Creek Aqueduct", + "type": "Range", + "viewingDirection": "left-to-right", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", - "type": "Canvas", + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + { + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], "label": { "en": [ - "Using a point selector for annotating a location on a map.", + "Front Matter", ], }, "metadata": [], @@ -22975,104 +20912,300 @@ exports[`Cookbook > Testing normalize %p (%p) 0135-annotating-point-in-canvas ht "rights": null, "seeAlso": [], "service": [], - "services": [], "start": null, - "structures": [], - "summary": { - "en": [ - "A map containing an point with an annotation of the location.", + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Range", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range", + }, + ], + "items": [ + { + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + { + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + ], + "label": { + "de": [ + "Erste Ausgabe. Begreift die Ceremonien der Lutheraner von der Augspurgischen Confession, der Reformirten, der Holländischen u. a. Kirchen", ], }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Manifest", + "type": "Range", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range", + }, + ], + "items": [ + { + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + { + "selector": undefined, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + ], + "label": { + "de": [ + "Zweyte Ausgabe. Begreift die Ceremonien der Engl. hohen Kirche : Der Quacker, der Anabaptisten, der Adamiten, der Flagellanten, der Frey-Maurer, der Rhinsbürger...", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Range", "viewingDirection": "left-to-right", }, }, - "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674": { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover": { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover": { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1": { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso": { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2": { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso": { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag": "Annotation", - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json": "Canvas", - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json": "Annotation", - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": "ContentResource", - "vault://5332a945": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6": "Canvas", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0": "Range", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1": "Range", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2": "Range", + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3": "Range", + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0135-annotating-point-in-canvas https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 82`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", "items": [ { - "annotations": [ + "height": 7230, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", "items": [ { "body": { - "format": "text/plain", - "language": "en", - "type": "TextualBody", - "value": "Town Creek Aqueduct", + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, }, - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", - "motivation": "tagging", - "target": { - "selector": { - "type": "PointSelector", - "x": 3385, - "y": 1464, - }, - "source": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", - "type": "SpecificResource", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Front cover", + ], + }, + "type": "Canvas", + "width": 5428, + }, + { + "height": 7230, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, }, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "height": 7072, - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "label": { + "en": [ + "Inside front cover", + ], + }, + "type": "Canvas", + "width": 5428, + }, + { + "height": 7230, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", "items": [ { "body": { "format": "image/jpeg", - "height": 7072, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 5212, + "width": 5428, }, - "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", "type": "Annotation", }, ], @@ -23081,44 +21214,226 @@ exports[`Cookbook > Testing normalize %p (%p) 0135-annotating-point-in-canvas ht ], "label": { "en": [ - "Chesapeake and Ohio Canal Pamphlet", + "Vol. 1 title page", ], }, "type": "Canvas", - "width": 5212, + "width": 5428, + }, + { + "height": 7230, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, + }, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Vol. 1 title page (verso)", + ], + }, + "type": "Canvas", + "width": 5428, + }, + { + "height": 7230, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, + }, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Vol. 2 title page", + ], + }, + "type": "Canvas", + "width": 5428, + }, + { + "height": 7230, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 7230, + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5428, + }, + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Vol. 2 title page (verso)", + ], + }, + "type": "Canvas", + "width": 5428, }, ], "label": { - "en": [ - "Using a point selector for annotating a location on a map.", - ], - }, - "summary": { - "en": [ - "A map containing an point with an annotation of the location.", + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen", ], }, + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Front Matter", + ], + }, + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas", + }, + ], + "label": { + "de": [ + "Erste Ausgabe. Begreift die Ceremonien der Lutheraner von der Augspurgischen Confession, der Reformirten, der Holländischen u. a. Kirchen", + ], + }, + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Canvas", + }, + ], + "label": { + "de": [ + "Zweyte Ausgabe. Begreift die Ceremonien der Engl. hohen Kirche : Der Quacker, der Anabaptisten, der Adamiten, der Flagellanten, der Frey-Maurer, der Rhinsbürger...", + ], + }, + "type": "Range", + }, + ], + "label": { + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen", + ], + }, + "type": "Range", + }, + ], "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0139-geolocate-canvas-fragment https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 83`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json": { + "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "id": "vault://04f77c53", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", "type": "Annotation", }, ], @@ -23127,90 +21442,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0139-geolocate-canvas-fragment htt ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json": { - "body": [ + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "AnnotationPage", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", - "type": "Annotation", - }, - ], - "motivation": [ - "tagging", - ], - "target": { - "selector": { - "type": "FragmentSelector", - "value": "xywh=920,3600,1510,3000", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", "type": "Annotation", }, ], @@ -23228,30 +21483,21 @@ exports[`Cookbook > Testing normalize %p (%p) 0139-geolocate-canvas-fragment htt }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json": { + "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1": { "accompanyingCanvas": null, - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", - "type": "AnnotationPage", - }, - ], + "annotations": [], "behavior": [], "duration": 0, - "height": 7072, + "height": 1271, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Chesapeake and Ohio Canal Pamphlet", - ], - }, + "label": null, "metadata": [], "navDate": null, "partOf": [], @@ -23265,101 +21511,95 @@ exports[`Cookbook > Testing normalize %p (%p) 0139-geolocate-canvas-fragment htt "summary": null, "thumbnail": [], "type": "Canvas", - "width": 5212, + "width": 2000, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json": { - "geometry": { - "coordinates": [ - [ - [ - -77.019853, - 38.913101, - ], - [ - -77.110013, - 38.843254, - ], - [ - -77.284698, - 38.997574, - ], - [ - -77.188911, - 39.062648, - ], - ], + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "label": { + "en": [ + "Natural Light", ], - "type": "Polygon", }, - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", - "iiif-parser:hasPart": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", - "type": "Feature", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "profile": "level1", + "type": "ImageService3", }, ], - "properties": { - "label": { - "en": [ - "Targeted Map from Chesapeake and Ohio Canal Pamphlet", - ], - }, - }, - "type": "Feature", + "type": "Image", + "width": 2000, }, - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 7072, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", - "type": "Image", - }, - ], + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "label": { + "en": [ + "X-Ray", + ], + }, "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 5212, + "width": 2000, + }, + "vault://04f77c53": { + "id": "vault://04f77c53", + "iiif-parser:hasPart": [ + { + "id": "vault://04f77c53", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "type": "Choice", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "ContentResource", + }, + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "type": "Choice", }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json": { - "@context": [ - "http://geojson.org/geojson-ld/geojson-context.jsonld", - "http://iiif.io/api/presentation/3/context.json", - ], + "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", "type": "Canvas", }, ], "label": { "en": [ - "Recipe Manifest for #139", + "John Dee performing an experiment before Queen Elizabeth I.", ], }, "metadata": [], @@ -23375,11 +21615,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0139-geolocate-canvas-fragment htt "services": [], "start": null, "structures": [], - "summary": { - "en": [ - "A IIIF Presentation API 3.0 Manifest containing a GeoJSON-LD Web Annotation which targets a Canvas fragment.", - ], - }, + "summary": null, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", @@ -23388,157 +21624,129 @@ exports[`Cookbook > Testing normalize %p (%p) 0139-geolocate-canvas-fragment htt "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674": { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json": "Canvas", - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json": "Annotation", - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json": "Annotation", - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": "ContentResource", + "vault://04f77c53": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0139-geolocate-canvas-fragment https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 84`] = ` { - "@context": [ - "http://geojson.org/geojson-ld/geojson-context.jsonld", - "http://iiif.io/api/presentation/3/context.json", - ], - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", "items": [ { - "annotations": [ + "height": 1271, + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", "items": [ { "body": { - "geometry": { - "coordinates": [ - [ - [ - -77.019853, - 38.913101, - ], - [ - -77.110013, - 38.843254, - ], - [ - -77.284698, - 38.997574, - ], - [ - -77.188911, - 39.062648, + "items": [ + { + "format": "image/jpeg", + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "label": { + "en": [ + "Natural Light", ], + }, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "profile": "level1", + "type": "ImageService3", + }, ], - ], - "type": "Polygon", - }, - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", - "properties": { - "label": { - "en": [ - "Targeted Map from Chesapeake and Ohio Canal Pamphlet", - ], + "type": "Image", + "width": 2000, }, - }, - "type": "Feature", - }, - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", - "motivation": "tagging", - "target": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json#xywh=920,3600,1510,3000", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "height": 7072, - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 7072, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", - "profile": "level1", - "type": "ImageService3", + "format": "image/jpeg", + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "label": { + "en": [ + "X-Ray", + ], + }, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2000, }, ], - "type": "Image", - "width": 5212, + "type": "Choice", }, - "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "target": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "Chesapeake and Ohio Canal Pamphlet", - ], - }, "type": "Canvas", - "width": 5212, + "width": 2000, }, ], "label": { "en": [ - "Recipe Manifest for #139", - ], - }, - "summary": { - "en": [ - "A IIIF Presentation API 3.0 Manifest containing a GeoJSON-LD Web Annotation which targets a Canvas fragment.", + "John Dee performing an experiment before Queen Elizabeth I.", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0154-geo-extension https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 85`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", "type": "Annotation", }, ], @@ -23547,306 +21755,106 @@ exports[`Cookbook > Testing normalize %p (%p) 0154-geo-extension https://iiif.io ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", - "iiif-parser:hasPart": [ + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", "type": "Annotation", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 3000, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", - "type": "AnnotationPage", - }, + "motivation": [ + "painting", ], - "label": { - "en": [ - "Front of Bronze", - ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", + "type": "Canvas", + }, + "type": "SpecificResource", }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 2315, + "type": "Annotation", }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3000, - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", - "iiif-parser:hasPart": [ + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image": { + "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", - "type": "Image", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", + "type": "ContentResource", }, ], - "service": [ + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", + "type": "Annotation", }, ], - "type": "Image", - "width": 2315, + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json": { - "@context": [ - "http://iiif.io/api/extension/navplace/context.json", - "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", + "type": "ContentResource", + }, ], - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", + "type": "Annotation", }, ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", "type": "Canvas", }, - ], - "label": { - "it": [ - "Bronzo Laocoonte e i suoi figli", - ], - }, - "metadata": [], - "navDate": null, - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - -118.4745559, - 34.0776376, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature/1", - "properties": { - "label": { - "en": [ - "The Laocoön Bronze", - ], - "it": [ - "Bronzo Laocoonte e i suoi figli", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature-collection/1", - "type": "FeatureCollection", - }, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", - }, - }, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0154-geo-extension https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json 2`] = ` -{ - "@context": [ - "http://iiif.io/api/extension/navplace/context.json", - "http://iiif.io/api/presentation/3/context.json", - ], - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", - "items": [ - { - "height": 3000, - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 3000, - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2315, - }, - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Front of Bronze", - ], - }, - "type": "Canvas", - "width": 2315, - }, - ], - "label": { - "it": [ - "Bronzo Laocoonte e i suoi figli", - ], - }, - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - -118.4745559, - 34.0776376, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature/1", - "properties": { - "label": { - "en": [ - "The Laocoön Bronze", - ], - "it": [ - "Bronzo Laocoonte e i suoi figli", - ], - }, + "type": "SpecificResource", }, - "type": "Feature", + "type": "Annotation", }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature-collection/1", - "type": "FeatureCollection", - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", "type": "Annotation", }, ], @@ -23855,25 +21863,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", "type": "Annotation", }, ], @@ -23882,25 +21890,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", "type": "Annotation", }, ], @@ -23909,25 +21917,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", "type": "Annotation", }, ], @@ -23936,25 +21944,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", "type": "Annotation", }, ], @@ -23963,7 +21971,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", "type": "Canvas", }, "type": "SpecificResource", @@ -23973,20 +21981,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", "type": "Annotation", }, ], @@ -24002,20 +22010,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", "type": "Annotation", }, ], @@ -24031,20 +22039,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", "type": "Annotation", }, ], @@ -24060,20 +22068,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", "type": "Annotation", }, ], @@ -24089,20 +22097,136 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", "type": "Annotation", }, ], @@ -24120,23 +22244,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 4613, + "height": 4429, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Blank page", + "Front cover", ], }, "metadata": [], @@ -24152,32 +22276,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 3204, + "width": 2533, }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 4612, + "height": 4315, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", - "type": "Canvas", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Frontispiece", + "Inside front cover", ], }, "metadata": [], @@ -24193,25 +22310,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 3186, + "width": 2490, }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 4613, + "height": 4278, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Title page", + "Foldout, folded", ], }, "metadata": [], @@ -24227,25 +22344,27 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 3204, + "width": 2197, }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4": { "accompanyingCanvas": null, "annotations": [], - "behavior": [], + "behavior": [ + "non-paged", + ], "duration": 0, - "height": 4578, + "height": 1968, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Blank page", + "Foldout, unfolded", ], }, "metadata": [], @@ -24261,25 +22380,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 3174, + "width": 3688, }, - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 4632, + "height": 1968, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "Bookplate", + "Foldout, folded (recto)", ], }, "metadata": [], @@ -24295,157 +22414,395 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 3198, + "width": 3688, }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 4613, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", - "iiif-parser:hasPart": [ + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4315, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", + "type": "AnnotationPage", }, ], - "service": [ + "label": { + "en": [ + "Title page", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2490, + }, + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4315, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Back of title page", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2490, + }, + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4315, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Inside back cover", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2490, + }, + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 4315, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Back cover", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2490, + }, + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4429, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", + "profile": "level1", + "type": "ImageService3", }, ], "type": "Image", - "width": 3204, + "width": 2533, }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4612, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3186, + "width": 2490, }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4613, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "height": 4278, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3204, + "width": 2197, }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4578, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "height": 1968, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3174, + "width": 3688, }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4632, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "height": 1968, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3198, + "width": 3688, + }, + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2490, + }, + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2490, + }, + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2490, + }, + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2490, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], - "behavior": [], + "behavior": [ + "paged", + ], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", "type": "Canvas", }, { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", "type": "Canvas", }, ], "label": { "en": [ - "Multiple Related Images (Book, etc.)", + "Outlines of geology being the substance of a course of lectures delivered in the Theatre of the Royal Institution in the year 1816", ], }, "metadata": [], @@ -24459,14 +22816,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "seeAlso": [], "service": [], "services": [], - "start": { - "selector": undefined, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", - "type": "Canvas", - }, - "type": "SpecificResource", - }, + "start": null, "structures": [], "summary": null, "thumbnail": [], @@ -24477,93 +22827,132 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated", "profile": "level1", "type": "ImageService3", }, - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22": { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5": "Canvas", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9": "Canvas", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 86`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "behavior": [ + "paged", + ], + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", "items": [ { - "height": 4613, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "height": 4429, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4613, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "height": 4429, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3204, + "width": 2533, }, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", "type": "Annotation", }, ], @@ -24572,37 +22961,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "label": { "en": [ - "Blank page", + "Front cover", ], }, "type": "Canvas", - "width": 3204, + "width": 2533, }, { - "height": 4612, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "height": 4315, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4612, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3186, + "width": 2490, }, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", "type": "Annotation", }, ], @@ -24611,37 +23000,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "label": { "en": [ - "Frontispiece", + "Inside front cover", ], }, "type": "Canvas", - "width": 3186, + "width": 2490, }, { - "height": 4613, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "height": 4278, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4613, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "height": 4278, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3204, + "width": 2197, }, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", "type": "Annotation", }, ], @@ -24650,37 +23039,40 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "label": { "en": [ - "Title page", + "Foldout, folded", ], }, "type": "Canvas", - "width": 3204, + "width": 2197, }, { - "height": 4578, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "behavior": [ + "non-paged", + ], + "height": 1968, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4578, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "height": 1968, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3174, + "width": 3688, }, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", "type": "Annotation", }, ], @@ -24689,37 +23081,37 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "label": { "en": [ - "Blank page", + "Foldout, unfolded", ], }, "type": "Canvas", - "width": 3174, + "width": 3688, }, { - "height": 4632, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "height": 1968, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", "items": [ { "body": { "format": "image/jpeg", - "height": 4632, - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "height": 1968, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3198, + "width": 3688, }, - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0005-image", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", "type": "Annotation", }, ], @@ -24728,43 +23120,195 @@ exports[`Cookbook > Testing normalize %p (%p) 0202-start-canvas https://iiif.io/ ], "label": { "en": [ - "Bookplate", + "Foldout, folded (recto)", ], }, "type": "Canvas", - "width": 3198, + "width": 3688, + }, + { + "height": 4315, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2490, + }, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Title page", + ], + }, + "type": "Canvas", + "width": 2490, + }, + { + "height": 4315, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2490, + }, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Back of title page", + ], + }, + "type": "Canvas", + "width": 2490, + }, + { + "height": 4315, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2490, + }, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Inside back cover", + ], + }, + "type": "Canvas", + "width": 2490, + }, + { + "height": 4315, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 4315, + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2490, + }, + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Back cover", + ], + }, + "type": "Canvas", + "width": 2490, }, ], "label": { "en": [ - "Multiple Related Images (Book, etc.)", + "Outlines of geology being the substance of a course of lectures delivered in the Theatre of the Royal Institution in the year 1816", ], }, - "start": { - "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", - "type": "Canvas", - }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0219-using-caption-file https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 87`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", "type": "Annotation", }, ], @@ -24773,34 +23317,38 @@ exports[`Cookbook > Testing normalize %p (%p) 0219-using-caption-file https://ii ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image": { "body": [ { - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", "type": "Annotation", }, ], "motivation": [ - "supplementing", + "painting", ], "target": { + "selector": { + "type": "FragmentSelector", + "value": "xywh=3949,994,1091,1232", + }, "source": { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", @@ -24810,49 +23358,24 @@ exports[`Cookbook > Testing normalize %p (%p) 0219-using-caption-file https://ii }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", "type": "Annotation", }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", - "type": "AnnotationPage", - }, - ], - "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", "type": "Annotation", }, ], @@ -24870,26 +23393,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0219-using-caption-file https://ii }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1": { "accompanyingCanvas": null, - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", - "type": "AnnotationPage", - }, - ], + "annotations": [], "behavior": [], - "duration": 572.034, - "height": 360, + "duration": 0, + "height": 5412, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", "type": "AnnotationPage", }, ], - "label": null, + "label": { + "none": [ + "f. 033v-034r [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -24903,69 +23425,83 @@ exports[`Cookbook > Testing normalize %p (%p) 0219-using-caption-file https://ii "summary": null, "thumbnail": [], "type": "Canvas", - "width": 480, + "width": 7216, }, }, "Collection": {}, "ContentResource": { - "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4": { - "duration": 572.034, - "format": "video/mp4", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 5412, + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", - "type": "Video", + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "type": "Image", }, ], - "type": "Video", - "width": 480, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7216, }, - "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt": { - "format": "text/vtt", - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 2414, + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", - "type": "Text", + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "type": "Image", }, ], "label": { - "en": [ - "Captions in WebVTT format", + "fr": [ + "Miniature [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]", ], }, - "language": "en", - "type": "Text", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2138, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", "type": "Canvas", }, ], "label": { "en": [ - "Lunchroom Manners", + "Folio from Grandes Chroniques de France, ca. 1460", ], }, "metadata": [], @@ -24989,95 +23525,115 @@ exports[`Cookbook > Testing normalize %p (%p) 0219-using-caption-file https://ii }, "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux": { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature": { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4": "ContentResource", - "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas": "Canvas", - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0219-using-caption-file https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 88`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", "items": [ { - "annotations": [ + "height": 5412, + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", "items": [ { "body": { - "format": "text/vtt", - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", - "label": { - "en": [ - "Captions in WebVTT format", - ], - }, - "language": "en", - "type": "Text", + "format": "image/jpeg", + "height": 5412, + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 7216, }, - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", - "motivation": "supplementing", - "target": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", "type": "Annotation", }, - ], - "type": "AnnotationPage", - }, - ], - "duration": 572.034, - "height": 360, - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", - "items": [ { "body": { - "duration": 572.034, - "format": "video/mp4", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", - "type": "Video", - "width": 480, + "format": "image/jpeg", + "height": 2414, + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "label": { + "fr": [ + "Miniature [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]", + ], + }, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2138, }, - "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "target": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1#xywh=3949,994,1091,1232", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "label": { + "none": [ + "f. 033v-034r [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]", + ], + }, "type": "Canvas", - "width": 480, + "width": 7216, }, ], "label": { "en": [ - "Lunchroom Manners", + "Folio from Grandes Chroniques de France, ca. 1460", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0229-behavior-ranges https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 89`] = ` { "entities": { "Agent": {}, @@ -26440,7 +24996,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0229-behavior-ranges https://iiif. } `; -exports[`Cookbook > Testing normalize %p (%p) 0229-behavior-ranges https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 90`] = ` { "@context": [ "http://iiif.io/api/presentation/3/context.json", @@ -26755,23 +25311,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0229-behavior-ranges https://iiif. } `; -exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_1-manifest https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 91`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", "type": "Annotation", }, ], @@ -26780,7 +25336,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_1-manifes ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", @@ -26790,20 +25346,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_1-manifes }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", "type": "Annotation", }, ], @@ -26821,25 +25377,21 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_1-manifes }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 7072, + "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "1987 Map, recto and verso, with a date of publication", - ], - }, + "label": null, "metadata": [], "navDate": null, "partOf": [], @@ -26853,61 +25405,54 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_1-manifes "summary": null, "thumbnail": [], "type": "Canvas", - "width": 5212, + "width": 1920, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 7072, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { + "format": "image/png", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", "type": "Image", }, ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", - "profile": "level1", - "type": "ImageService3", - }, - ], "type": "Image", - "width": 5212, + "width": 640, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": { + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", "type": "Canvas", }, ], "label": { "en": [ - "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + "Still image from an opera performance at Indiana University", ], }, "metadata": [], - "navDate": "1987-01-01T00:00:00+00:00", + "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], @@ -26927,100 +25472,89 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_1-manifes }, "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/": { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1": "AnnotationPage", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_1-manifest https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 92`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", "items": [ { - "height": 7072, - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "height": 1080, + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", "items": [ { "body": { - "format": "image/jpeg", - "height": 7072, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", - "profile": "level1", - "type": "ImageService3", - }, - ], + "format": "image/png", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", "type": "Image", - "width": 5212, + "width": 640, }, - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "1987 Map, recto and verso, with a date of publication", - ], - }, "type": "Canvas", - "width": 5212, + "width": 1920, }, ], "label": { "en": [ - "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + "Still image from an opera performance at Indiana University", ], }, - "navDate": "1987-01-01T00:00:00+00:00", "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_2-manifest https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 93`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/v0001-image", + "selector": { + "rotation": "90", + "type": "ImageApiSelector", + }, + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "ContentResource", + }, + "type": "SpecificResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", "type": "Annotation", }, ], @@ -27029,7 +25563,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_2-manifes ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", @@ -27039,20 +25573,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_2-manifes }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", "type": "Annotation", }, ], @@ -27070,23 +25604,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_2-manifes }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "duration": 0, - "height": 1765, + "height": 1523, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", "type": "AnnotationPage", }, ], "label": { "en": [ - "1986 Map, recto and verso, with a date of publication", + "inside cover; 1r", ], }, "metadata": [], @@ -27102,61 +25636,54 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_2-manifes "summary": null, "thumbnail": [], "type": "Canvas", - "width": 1286, + "width": 2105, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 1765, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", - "type": "Image", - }, - ], + "height": 2105, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1286, + "width": 1523, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", "type": "Canvas", }, ], "label": { - "en": [ - "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", ], }, "metadata": [], - "navDate": "1986-01-01T00:00:00+00:00", + "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], @@ -27177,57 +25704,65 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_2-manifes "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/": { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ": "Manifest", + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_2-manifest https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 94`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", "items": [ { - "height": 1765, - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "height": 1523, + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", "items": [ { "body": { - "format": "image/jpeg", - "height": 1765, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1286, + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/v0001-image", + "selector": { + "rotation": "90", + "type": "ImageApiSelector", + }, + "source": { + "format": "image/jpeg", + "height": 2105, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 1523, + }, + "type": "SpecificResource", }, - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", "type": "Annotation", }, ], @@ -27236,73 +25771,114 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate_map_2-manifes ], "label": { "en": [ - "1986 Map, recto and verso, with a date of publication", + "inside cover; 1r", ], }, "type": "Canvas", - "width": 1286, + "width": 2105, }, ], "label": { - "en": [ - "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", ], }, - "navDate": "1986-01-01T00:00:00+00:00", "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate-collection https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 95`] = ` { "entities": { "Agent": {}, - "Annotation": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": { + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/sr1", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "ContentResource", + }, + "styleClass": "rotated", + "type": "SpecificResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "stylesheet": { + "type": "CssStylesheet", + "value": ".rotated { transform-origin: center; transform: rotate(90deg); }", + }, + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + }, "AnnotationCollection": {}, - "AnnotationPage": {}, - "Canvas": {}, - "Collection": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "accompanyingCanvas": null, - "annotations": [], + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", - "type": "Collection", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", - ], - }, - "navDate": "1986-01-01T00:00:00+00:00", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation", }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 1523, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", - ], - }, - "navDate": "1987-01-01T00:00:00+00:00", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage", }, ], "label": { "en": [ - "Chesapeake and Ohio Canal map and guide pamphlets", + "inside cover; 1r", ], }, "metadata": [], @@ -27315,88 +25891,57 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate-collection ht "rights": null, "seeAlso": [], "service": [], - "services": [], "summary": null, - "thumbnail": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "type": "Collection", - "viewingDirection": "left-to-right", + "thumbnail": [], + "type": "Canvas", + "width": 2105, }, }, + "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 300, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", - "type": "Image", - }, - ], + "height": 2105, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 221, + "width": 1523, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", - "iiif-parser:isExternal": true, - "items": [], - "label": { - "en": [ - "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", - ], - }, - "metadata": [], - "navDate": "1987-01-01T00:00:00+00:00", - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", - "iiif-parser:isExternal": true, - "items": [], + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + }, + ], "label": { - "en": [ - "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", ], }, "metadata": [], - "navDate": "1986-01-01T00:00:00+00:00", + "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], @@ -27416,124 +25961,108 @@ exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate-collection ht }, "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json": "Collection", - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", - "type": "Collection", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0230-navdate-navdate-collection https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 96`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate-collection.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", - "label": { - "en": [ - "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", - ], - }, - "navDate": "1986-01-01T00:00:00+00:00", - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", - "label": { - "en": [ - "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide", - ], - }, - "navDate": "1987-01-01T00:00:00+00:00", - "type": "Manifest", - }, - ], - "label": { - "en": [ - "Chesapeake and Ohio Canal map and guide pamphlets", - ], - }, - "thumbnail": [ - { - "format": "image/jpeg", - "height": 300, - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", - "service": [ + "height": 1523, + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "items": [ + { + "body": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/sr1", + "source": { + "format": "image/jpeg", + "height": 2105, + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 1523, + }, + "styleClass": "rotated", + "type": "SpecificResource", + }, + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "motivation": "painting", + "stylesheet": { + "type": "CssStylesheet", + "value": ".rotated { transform-origin: center; transform: rotate(90deg); }", + }, + "target": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", }, ], - "type": "Image", - "width": 221, + "label": { + "en": [ + "inside cover; 1r", + ], + }, + "type": "Canvas", + "width": 2105, }, ], - "type": "Collection", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466.", + ], + }, + "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0234-provider https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 97`] = ` { "entities": { - "Agent": { - "https://id.loc.gov/authorities/n79055331": { - "homepage": [ - { - "id": "https://digital.library.ucla.edu/", - "type": "ContentResource", - }, - ], - "id": "https://id.loc.gov/authorities/n79055331", - "iiif-parser:hasPart": [ - { - "id": "https://id.loc.gov/authorities/n79055331", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", - "type": "Agent", - }, - ], - "label": { - "en": [ - "UCLA Library", - ], - }, - "logo": [ - { - "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", - "type": "ContentResource", - }, - ], - "seeAlso": [ - { - "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", - "type": "ContentResource", - }, - ], - "type": "Agent", - }, - }, + "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image": { + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", "type": "Annotation", }, ], @@ -27542,7 +26071,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0234-provider https://iiif.io/api/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", "type": "Canvas", }, "type": "SpecificResource", @@ -27552,20 +26081,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0234-provider https://iiif.io/api/ }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1": { + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", "type": "Annotation", }, ], @@ -27583,31 +26112,32 @@ exports[`Cookbook > Testing normalize %p (%p) 0234-provider https://iiif.io/api/ }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0": { + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 5312, + "duration": 662.037, + "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", "type": "AnnotationPage", }, ], - "label": { - "en": [ - "front cover with color bar", - ], - }, + "label": null, "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, "provider": [], - "rendering": [], + "rendering": [ + { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "type": "ContentResource", + }, + ], "requiredStatement": null, "rights": null, "seeAlso": [], @@ -27615,141 +26145,75 @@ exports[`Cookbook > Testing normalize %p (%p) 0234-provider https://iiif.io/api/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 4520, + "width": 1920, }, }, "Collection": {}, "ContentResource": { - "https://digital.library.ucla.edu/": { - "format": "text/html", - "id": "https://digital.library.ucla.edu/", + "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4": { + "duration": 662.037, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", "iiif-parser:hasPart": [ { - "id": "https://digital.library.ucla.edu/", - "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", - "type": "Text", + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "type": "Video", }, ], - "label": { - "en": [ - "UCLA Library Digital Collections", - ], - }, - "language": [ - "en", - ], - "type": "Text", + "type": "Video", + "width": 1920, }, - "https://id.loc.gov/authorities/names/n79055331.madsxml.xml": { - "format": "application/xml", - "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt": { + "format": "text/plain", + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", "iiif-parser:hasPart": [ { - "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", - "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", - "type": "Dataset", + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Text", }, ], "label": { "en": [ - "US Library of Congress data about the UCLA Library", + "Transcript", ], }, - "profile": "http://www.loc.gov/mads/v2", - "type": "Dataset", - }, - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 5312, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4520, - }, - "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png": { - "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", - "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", - "type": "Image", - }, - ], - "service": [ - { - "height": 502, - "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", - "profile": "level2", - "sizes": [ - { - "height": 126, - "width": 300, - }, - { - "height": 251, - "width": 600, - }, - { - "height": 502, - "width": 1200, - }, - ], - "type": "ImageService3", - "width": 1200, - }, - ], - "type": "Image", + "type": "Text", }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", "type": "Canvas", }, ], "label": { "en": [ - "Playbill Cover", + "Volleyball for Boys", ], }, "metadata": [], "navDate": null, "partOf": [], "placeholderCanvas": null, - "provider": [ - { - "id": "https://id.loc.gov/authorities/n79055331", - "type": "Agent", - }, - ], + "provider": [], "rendering": [], "requiredStatement": null, "rights": null, @@ -27758,11 +26222,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0234-provider https://iiif.io/api/ "services": [], "start": null, "structures": [], - "summary": { - "en": [ - "Cover of playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV, and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", - ], - }, + "summary": null, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", @@ -27770,176 +26230,96 @@ exports[`Cookbook > Testing normalize %p (%p) 0234-provider https://iiif.io/api/ }, "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full": { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://digital.library.ucla.edu/": "ContentResource", - "https://id.loc.gov/authorities/n79055331": "Agent", - "https://id.loc.gov/authorities/names/n79055331.madsxml.xml": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0": "Canvas", - "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": "ContentResource", - "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png": "ContentResource", + "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4": "ContentResource", + "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas": "Canvas", + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation": "Annotation", + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json": "Manifest", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0234-provider https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 98`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", "items": [ { - "height": 5312, - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "duration": 662.037, + "height": 1080, + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", "items": [ { "body": { - "format": "image/jpeg", - "height": 5312, - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4520, + "duration": 662.037, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", + "type": "Video", + "width": 1920, }, - "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "target": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "front cover with color bar", - ], - }, - "type": "Canvas", - "width": 4520, - }, - ], - "label": { - "en": [ - "Playbill Cover", - ], - }, - "provider": [ - { - "homepage": [ + "rendering": [ { - "format": "text/html", - "id": "https://digital.library.ucla.edu/", + "format": "text/plain", + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", "label": { "en": [ - "UCLA Library Digital Collections", + "Transcript", ], }, - "language": [ - "en", - ], "type": "Text", }, ], - "id": "https://id.loc.gov/authorities/n79055331", - "label": { - "en": [ - "UCLA Library", - ], - }, - "logo": [ - { - "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", - "service": [ - { - "height": 502, - "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", - "profile": "level2", - "sizes": [ - { - "height": 126, - "width": 300, - }, - { - "height": 251, - "width": 600, - }, - { - "height": 502, - "width": 1200, - }, - ], - "type": "ImageService3", - "width": 1200, - }, - ], - "type": "Image", - }, - ], - "seeAlso": [ - { - "format": "application/xml", - "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", - "label": { - "en": [ - "US Library of Congress data about the UCLA Library", - ], - }, - "profile": "http://www.loc.gov/mads/v2", - "type": "Dataset", - }, - ], - "type": "Agent", + "type": "Canvas", + "width": 1920, }, ], - "summary": { + "label": { "en": [ - "Cover of playbill for "Akiba gongen kaisen-banashi," "Futatsu chōchō kuruwa nikki" and "Godairiki koi no fūjime" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV, and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest.", + "Volleyball for Boys", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 99`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", "type": "Annotation", }, ], @@ -27947,26 +26327,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https:// "painting", ], "target": { + "selector": { + "type": "FragmentSelector", + "value": "t=0,3971.24", + }, "source": { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", "type": "Annotation", }, ], @@ -27974,8 +26358,12 @@ exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https:// "painting", ], "target": { + "selector": { + "type": "FragmentSelector", + "value": "t=3971.24", + }, "source": { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", "type": "Canvas", }, "type": "SpecificResource", @@ -27985,20 +26373,24 @@ exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https:// }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", "type": "Annotation", }, ], @@ -28014,25 +26406,27 @@ exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https:// "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], + "duration": 7278.422, + "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", - "type": "AnnotationPage", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "type": "AnnotationPage", }, ], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -28040,59 +26434,156 @@ exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https:// "seeAlso": [], "service": [], "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "ContentResource", + }, + ], + "type": "Canvas", + "width": 1920, }, }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 3000, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", - "items": [ + "Collection": {}, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", - "type": "AnnotationPage", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Image", }, ], - "label": { - "en": [ - "Front of Bronze", - ], + "type": "Image", + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": { + "duration": 3971.24, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "iiif-parser:hasPart": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "type": "Video", + }, + ], + "type": "Video", + "width": 1920, + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": { + "duration": 3307.22, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "iiif-parser:hasPart": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "type": "Video", + }, + ], + "type": "Video", + "width": 1920, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "The Elixir of Love", + ], + "it": [ + "L'Elisir D'Amore", + ], }, + "metadata": [ + { + "label": { + "en": [ + "Date Issued", + ], + }, + "value": { + "en": [ + "2019", + ], + }, + }, + { + "label": { + "en": [ + "Publisher", + ], + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music", + ], + }, + }, + ], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "type": "Range", + }, + ], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + }, + "Range": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "type": "Canvas", + }, + ], + "items": [], + "label": null, "metadata": [], "navDate": null, - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - -118.4745559, - 34.0776376, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/1", - "properties": { - "label": { - "en": [ - "Current Location of the Laocoön Bronze", - ], - "it": [ - "Ubicazione attuale del Bronzo Laocoonte e i suoi figli", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/1", - "type": "FeatureCollection", - }, "partOf": [], "placeholderCanvas": null, "provider": [], @@ -28101,56 +26592,100 @@ exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https:// "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], "type": "Canvas", - "width": 2315, + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 0, - "height": 3259, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "type": "Canvas", + }, + ], + "items": [], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Canvas", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "type": "Canvas", + }, + ], + "items": [], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Canvas", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "type": "Range", }, ], "label": { - "en": [ - "Painting", + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore", ], }, "metadata": [], "navDate": null, - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - -77.0199025, - 38.8920717, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/2", - "properties": { - "label": { - "en": [ - "Current Location of Painting", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/2", - "type": "FeatureCollection", - }, "partOf": [], "placeholderCanvas": null, "provider": [], @@ -28159,88 +26694,183 @@ exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https:// "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 4096, + "type": "Range", + "viewingDirection": "left-to-right", }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3000, - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "type": "Range", }, ], - "service": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "type": "Range", }, ], - "type": "Image", - "width": 2315, + "label": { + "it": [ + "Atto Primo", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3259, - "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", - "type": "Image", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "type": "Range", }, ], - "service": [ + "items": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1", - "profile": "level1", - "type": "ImageService3", + "selector": { + "type": "FragmentSelector", + "value": "t=0,302.05", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], - "type": "Image", - "width": 4096, + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Range", + "viewingDirection": "left-to-right", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json": { - "@context": [ - "http://iiif.io/api/extension/navplace/context.json", - "http://iiif.io/api/presentation/3/context.json", - ], + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "type": "Range", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", - "type": "Canvas", + "selector": { + "type": "FragmentSelector", + "value": "t=302.05,3971.24", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + ], + "label": { + "en": [ + "Remainder of Atto Primo", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Range", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "type": "Range", }, + ], + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", - "type": "Canvas", + "selector": { + "type": "FragmentSelector", + "value": "t=3971.24,7278.422", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], "label": { - "en": [ - "Laocöon, geolocated sculpture and painting.", + "it": [ + "Atto Secondo", ], }, "metadata": [], @@ -28253,250 +26883,248 @@ exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https:// "rights": null, "seeAlso": [], "service": [], - "services": [], "start": null, - "structures": [], "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Manifest", + "type": "Range", "viewingDirection": "left-to-right", }, }, - "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1": { - "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2": "Annotation", - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05": "Canvas", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24": "Canvas", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422": "Canvas", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2": "Annotation", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1": "Range", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2": "Range", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3": "Range", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4": "Range", + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5": "Range", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0240-navPlace-on-canvases https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 100`] = ` { - "@context": [ - "http://iiif.io/api/extension/navplace/context.json", - "http://iiif.io/api/presentation/3/context.json", - ], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", "items": [ { - "height": 3000, - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "duration": 7278.422, + "height": 1080, + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", "items": [ { "body": { - "format": "image/jpeg", - "height": 3000, - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 2315, + "duration": 3971.24, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video", + "width": 1920, }, - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "target": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,3971.24", + "type": "Annotation", + }, + { + "body": { + "duration": 3307.22, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "width": 1920, + }, + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + }, + ], + "type": "Canvas", + "width": 1920, + }, + ], + "label": { + "en": [ + "The Elixir of Love", + ], + "it": [ + "L'Elisir D'Amore", + ], + }, + "metadata": [ + { "label": { "en": [ - "Front of Bronze", + "Date Issued", ], }, - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - -118.4745559, - 34.0776376, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/1", - "properties": { - "label": { - "en": [ - "Current Location of the Laocoön Bronze", - ], - "it": [ - "Ubicazione attuale del Bronzo Laocoonte e i suoi figli", - ], - }, - }, - "type": "Feature", - }, + "value": { + "en": [ + "2019", ], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/1", - "type": "FeatureCollection", }, - "type": "Canvas", - "width": 2315, }, { - "height": 3259, - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "label": { + "en": [ + "Publisher", + ], + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music", + ], + }, + }, + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", "items": [ { - "body": { - "format": "image/jpeg", - "height": 3259, - "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1", - "profile": "level1", - "type": "ImageService3", - }, + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", + "type": "Canvas", + }, + ], + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore", ], - "type": "Image", - "width": 4096, }, - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", - "type": "Annotation", + "type": "Range", }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "Painting", - ], - }, - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - -77.0199025, - 38.8920717, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", + "type": "Canvas", + }, ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/2", - "properties": { "label": { "en": [ - "Current Location of Painting", + "Remainder of Atto Primo", ], }, + "type": "Range", }, - "type": "Feature", + ], + "label": { + "it": [ + "Atto Primo", + ], + }, + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", + "type": "Canvas", + }, + ], + "label": { + "it": [ + "Atto Secondo", + ], }, + "type": "Range", + }, + ], + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore", ], - "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/2", - "type": "FeatureCollection", }, - "type": "Canvas", - "width": 4096, + "type": "Range", }, ], - "label": { - "en": [ - "Laocöon, geolocated sculpture and painting.", - ], - }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0258-tagging-external-resource https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 101`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1": { "body": [ { - "source": { - "id": "http://www.wikidata.org/entity/Q18624915", - "type": "ContentResource", - }, - "type": "SpecificResource", - }, - { - "id": "vault://7dc03413", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", "type": "Annotation", }, ], "motivation": [ - "tagging", + "painting", ], "target": { - "selector": { - "type": "FragmentSelector", - "value": "xywh=749,1054,338,460", - }, "source": { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", "type": "Annotation", }, ], @@ -28505,7 +27133,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0258-tagging-external-resource htt ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", "type": "Canvas", }, "type": "SpecificResource", @@ -28515,20 +27143,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0258-tagging-external-resource htt }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", "type": "Annotation", }, ], @@ -28544,20 +27172,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0258-tagging-external-resource htt "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", "type": "Annotation", }, ], @@ -28575,26 +27203,64 @@ exports[`Cookbook > Testing normalize %p (%p) 0258-tagging-external-resource htt }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1": { "accompanyingCanvas": null, - "annotations": [ + "annotations": [], + "behavior": [], + "duration": 3971.24, + "height": 1080, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", "type": "AnnotationPage", }, ], + "label": { + "en": [ + "Atto Primo", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "ContentResource", + }, + ], + "type": "Canvas", + "width": 1920, + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], - "duration": 0, - "height": 3024, + "duration": 3307.22, + "height": 1080, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "Atto Secondo", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -28606,80 +27272,130 @@ exports[`Cookbook > Testing normalize %p (%p) 0258-tagging-external-resource htt "seeAlso": [], "service": [], "summary": null, - "thumbnail": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", + "type": "ContentResource", + }, + ], "type": "Canvas", - "width": 4032, + "width": 1920, }, }, "Collection": {}, "ContentResource": { - "http://www.wikidata.org/entity/Q18624915": { - "id": "http://www.wikidata.org/entity/Q18624915", - "type": "ContentResource", - }, - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", "type": "Image", }, ], - "service": [ + "type": "Image", + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "type": "Image", }, ], "type": "Image", - "width": 4032, }, - "vault://7dc03413": { - "format": "text/plain", - "id": "vault://7dc03413", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": { + "duration": 3971.24, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", "iiif-parser:hasPart": [ { - "id": "vault://7dc03413", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", - "type": "TextualBody", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "type": "Video", }, ], - "language": "de", - "type": "TextualBody", - "value": "Gänseliesel-Brunnen", + "type": "Video", + "width": 1920, + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": { + "duration": 3307.22, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "iiif-parser:hasPart": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", + "type": "Video", + }, + ], + "type": "Video", + "width": 1920, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", "type": "Canvas", }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "The Elixir of Love", + ], + "it": [ + "L'Elisir D'Amore", ], }, - "metadata": [], + "metadata": [ + { + "label": { + "en": [ + "Date Issued", + ], + }, + "value": { + "en": [ + "2019", + ], + }, + }, + { + "label": { + "en": [ + "Publisher", + ], + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music", + ], + }, + }, + ], "navDate": null, "partOf": [], "placeholderCanvas": null, @@ -28691,259 +27407,229 @@ exports[`Cookbook > Testing normalize %p (%p) 0258-tagging-external-resource htt "service": [], "services": [], "start": null, - "structures": [], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "type": "Range", + }, + ], "summary": null, "thumbnail": [], "type": "Manifest", "viewingDirection": "left-to-right", }, }, - "Range": {}, - "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", + "Range": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "type": "Canvas", + }, + ], + "items": [], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Canvas", + "viewingDirection": "left-to-right", }, - }, - }, - "mapping": { - "http://www.wikidata.org/entity/Q18624915": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata": "Annotation", - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", - "vault://7dc03413": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", - "type": "Manifest", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0258-tagging-external-resource https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", - "items": [ - { - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", - "items": [ - { - "body": [ - { - "source": "http://www.wikidata.org/entity/Q18624915", - "type": "SpecificResource", - }, - { - "format": "text/plain", - "language": "de", - "type": "TextualBody", - "value": "Gänseliesel-Brunnen", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", - "motivation": "tagging", - "target": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1#xywh=749,1054,338,460", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4032, - }, - "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 4032, - }, - ], - "label": { - "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", - ], - }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0261-non-rectangular-commenting https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", - "type": "Annotation", - }, - ], - "motivation": [ - "painting", - ], - "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", "type": "Canvas", }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg": { - "body": [ - { - "id": "vault://605b9d93", - "type": "ContentResource", - }, ], - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "items": [], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Canvas", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "type": "Canvas", }, ], - "motivation": [ - "tagging", - ], - "target": { - "selector": { - "type": "SvgSelector", - "value": "", - }, - "source": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", - "type": "SpecificResource", - }, - "type": "Annotation", + "items": [], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Canvas", + "viewingDirection": "left-to-right", }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", - "iiif-parser:hasPart": [ + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "type": "Range", }, - ], - "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "type": "Range", }, ], - "label": null, + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Range", + "viewingDirection": "left-to-right", }, - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2": { + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "type": "Range", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "type": "Range", }, ], - "label": null, + "label": { + "en": [ + "Atto Primo", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Range", + "viewingDirection": "left-to-right", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3": { "accompanyingCanvas": null, - "annotations": [ + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "type": "Range", }, ], - "behavior": [], - "duration": 0, - "height": 3024, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", - "type": "AnnotationPage", + "selector": { + "type": "FragmentSelector", + "value": "t=0,302.05", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], - "label": null, + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -28954,74 +27640,90 @@ exports[`Cookbook > Testing normalize %p (%p) 0261-non-rectangular-commenting ht "rights": null, "seeAlso": [], "service": [], + "start": null, "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Canvas", - "width": 4032, + "type": "Range", + "viewingDirection": "left-to-right", }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "type": "Range", }, ], - "type": "Image", - "width": 4032, - }, - "vault://605b9d93": { - "format": "text/plain", - "id": "vault://605b9d93", - "iiif-parser:hasPart": [ + "items": [ { - "id": "vault://605b9d93", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", - "type": "TextualBody", + "selector": { + "type": "FragmentSelector", + "value": "t=302.05,3971.24", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], - "language": "de", - "type": "TextualBody", - "value": "Gänseliesel-Brunnen", + "label": { + "en": [ + "Remainder of Atto Primo", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "start": null, + "summary": null, + "supplementary": null, + "thumbnail": [], + "type": "Range", + "viewingDirection": "left-to-right", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "type": "Range", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", - "type": "Canvas", + "selector": { + "type": "FragmentSelector", + "value": "t=0,3307.22", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "type": "Canvas", + }, + "type": "SpecificResource", }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "Atto Secondo", ], }, "metadata": [], @@ -29034,135 +27736,255 @@ exports[`Cookbook > Testing normalize %p (%p) 0261-non-rectangular-commenting ht "rights": null, "seeAlso": [], "service": [], - "services": [], "start": null, - "structures": [], "summary": null, + "supplementary": null, "thumbnail": [], - "type": "Manifest", + "type": "Range", "viewingDirection": "left-to-right", }, }, - "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg": "Annotation", - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", - "vault://605b9d93": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": "ContentResource", + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05": "Canvas", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24": "Canvas", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22": "Canvas", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1": "Range", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2": "Range", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3": "Range", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4": "Range", + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5": "Range", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0261-non-rectangular-commenting https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 102`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", "items": [ { - "annotations": [ + "duration": 3971.24, + "height": 1080, + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", "items": [ { "body": { - "format": "text/plain", - "language": "de", - "type": "TextualBody", - "value": "Gänseliesel-Brunnen", - }, - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", - "motivation": "tagging", - "target": { - "selector": { - "type": "SvgSelector", - "value": "", - }, - "source": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", - "type": "SpecificResource", + "duration": 3971.24, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video", + "width": 1920, }, + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "label": { + "en": [ + "Atto Primo", + ], + }, + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + }, + ], + "type": "Canvas", + "width": 1920, + }, + { + "duration": 3307.22, + "height": 1080, + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", "items": [ { "body": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4032, + "duration": 3307.22, + "format": "video/mp4", + "height": 1080, + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "width": 1920, }, - "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "label": { + "en": [ + "Atto Secondo", + ], + }, + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", + "type": "Image", + }, + ], "type": "Canvas", - "width": 4032, + "width": 1920, }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "The Elixir of Love", + ], + "it": [ + "L'Elisir D'Amore", ], }, - "type": "Manifest", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json 1`] = ` -{ + "metadata": [ + { + "label": { + "en": [ + "Date Issued", + ], + }, + "value": { + "en": [ + "2019", + ], + }, + }, + { + "label": { + "en": [ + "Publisher", + ], + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music", + ], + }, + }, + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", + "type": "Canvas", + }, + ], + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore", + ], + }, + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Remainder of Atto Primo", + ], + }, + "type": "Range", + }, + ], + "label": { + "en": [ + "Atto Primo", + ], + }, + "type": "Range", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Atto Secondo", + ], + }, + "type": "Range", + }, + ], + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore", + ], + }, + "type": "Range", + }, + ], + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 103`] = ` +{ "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", "type": "Annotation", }, ], @@ -29171,34 +27993,34 @@ exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https: ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt": { "body": [ { - "id": "vault://929e073a", + "id": "vault://30199866", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", "type": "Annotation", }, ], "motivation": [ - "commenting", + "supplementing", ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "type": "Canvas", }, "type": "SpecificResource", @@ -29208,20 +28030,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https: }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", "type": "Annotation", }, ], @@ -29237,20 +28059,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https: "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", "type": "Annotation", }, ], @@ -29268,22 +28090,22 @@ exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https: }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas": { "accompanyingCanvas": null, "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", "type": "AnnotationPage", }, ], "behavior": [], - "duration": 0, - "height": 3024, + "duration": 65, + "height": 384, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", "type": "AnnotationPage", }, ], @@ -29301,71 +28123,97 @@ exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https: "summary": null, "thumbnail": [], "type": "Canvas", - "width": 4032, + "width": 288, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4": { + "duration": 65, + "format": "video/mp4", + "height": 384, + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", - "type": "Image", + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "type": "Video", }, ], - "service": [ + "type": "Video", + "width": 288, + }, + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt": { + "format": "text/vtt", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", + "label": { + "en": [ + "Captions in WebVTT format", + ], + }, + "language": "en", + "type": "Text", + }, + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt": { + "format": "text/vtt", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", + "label": { + "it": [ + "Sottotitoli in formato WebVTT", + ], + }, + "language": "it", + "type": "Text", + }, + "vault://30199866": { + "id": "vault://30199866", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", + "id": "vault://30199866", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "type": "Choice", }, ], - "type": "Image", - "width": 4032, - }, - "vault://929e073a": { - "format": "text/plain", - "id": "vault://929e073a", - "iiif-parser:hasPart": [ + "items": [ { - "id": "vault://929e073a", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", - "type": "TextualBody", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", + "type": "ContentResource", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", + "type": "ContentResource", }, ], - "language": "de", - "type": "TextualBody", - "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + "type": "Choice", }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "type": "Canvas", }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "For ladies. French models", + ], + "it": [ + "Per voi signore. Modelli francesi", ], }, "metadata": [], @@ -29374,8 +28222,19 @@ exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https: "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": null, - "rights": null, + "requiredStatement": { + "label": { + "en": [ + "Rights", + ], + }, + "value": { + "en": [ + "All rights reserved Cinecittà Luce spa", + ], + }, + }, + "rights": "http://rightsstatements.org/vocab/InC/1.0/", "seeAlso": [], "service": [], "services": [], @@ -29389,81 +28248,93 @@ exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https: }, "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", - "vault://929e073a": "ContentResource", + "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas": "Canvas", + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation": "Annotation", + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt": "Annotation", + "vault://30199866": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 104`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", "items": [ { "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", "items": [ { "body": { - "format": "text/plain", - "language": "de", - "type": "TextualBody", - "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + "items": [ + { + "format": "text/vtt", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", + "label": { + "en": [ + "Captions in WebVTT format", + ], + }, + "language": "en", + "type": "Text", + }, + { + "format": "text/vtt", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", + "label": { + "it": [ + "Sottotitoli in formato WebVTT", + ], + }, + "language": "it", + "type": "Text", + }, + ], + "type": "Choice", }, - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", - "motivation": "commenting", - "target": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "motivation": "supplementing", + "target": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "duration": 65, + "height": 384, + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", "items": [ { "body": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4032, + "duration": 65, + "format": "video/mp4", + "height": 384, + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "type": "Video", + "width": 288, }, - "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "target": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", "type": "Annotation", }, ], @@ -29471,35 +28342,51 @@ exports[`Cookbook > Testing normalize %p (%p) 0266-full-canvas-annotation https: }, ], "type": "Canvas", - "width": 4032, + "width": 288, }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "For ladies. French models", + ], + "it": [ + "Per voi signore. Modelli francesi", ], }, + "requiredStatement": { + "label": { + "en": [ + "Rights", + ], + }, + "value": { + "en": [ + "All rights reserved Cinecittà Luce spa", + ], + }, + }, + "rights": "http://rightsstatements.org/vocab/InC/1.0/", "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annotations https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 105`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", "type": "Annotation", }, ], @@ -29508,7 +28395,34 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1": { + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "type": "Annotation", + }, + ], + "motivation": [ + "supplementing", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", "type": "Canvas", }, "type": "SpecificResource", @@ -29518,19 +28432,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", "type": "AnnotationPage", }, ], - "iiif-parser:isExternal": true, - "items": [], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "type": "Annotation", + }, + ], "label": null, "metadata": [], "provider": [], @@ -29543,20 +28461,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", "type": "Annotation", }, ], @@ -29574,22 +28492,22 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas": { "accompanyingCanvas": null, "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", "type": "AnnotationPage", }, ], "behavior": [], - "duration": 0, - "height": 3024, + "duration": 572.034, + "height": 360, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", "type": "AnnotationPage", }, ], @@ -29607,57 +28525,69 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota "summary": null, "thumbnail": [], "type": "Canvas", - "width": 4032, + "width": 480, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4": { + "duration": 572.034, + "format": "video/mp4", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", - "type": "Image", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "type": "Video", }, ], - "service": [ + "type": "Video", + "width": 480, + }, + "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt": { + "format": "text/vtt", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "type": "Text", }, ], - "type": "Image", - "width": 4032, + "label": { + "en": [ + "Captions in WebVTT format", + ], + }, + "language": "en", + "type": "Text", }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", "type": "Canvas", }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "Lunchroom Manners", ], }, "metadata": [], @@ -29681,65 +28611,75 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota }, "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4": "ContentResource", + "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas": "Canvas", + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json": "Manifest", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annotations https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 106`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", "items": [ { "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "items": [ + { + "body": { + "format": "text/vtt", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "label": { + "en": [ + "Captions in WebVTT format", + ], + }, + "language": "en", + "type": "Text", + }, + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "motivation": "supplementing", + "target": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Annotation", + }, + ], "type": "AnnotationPage", }, ], - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "duration": 572.034, + "height": 360, + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", "items": [ { "body": { - "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 4032, + "duration": 572.034, + "format": "video/mp4", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "width": 480, }, - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "target": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", "type": "Annotation", }, ], @@ -29747,44 +28687,73 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota }, ], "type": "Canvas", - "width": 4032, + "width": 480, }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "Lunchroom Manners", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annotations-annotationpage https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 107`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1": { + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag": { "body": [ { - "id": "vault://929e073a", + "id": "vault://5332a945", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", "type": "Annotation", }, ], "motivation": [ - "commenting", + "tagging", + ], + "target": { + "selector": { + "type": "PointSelector", + "x": 3385, + "y": 1464, + }, + "source": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", "type": "Canvas", }, "type": "SpecificResource", @@ -29794,21 +28763,49 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", "type": "Annotation", }, ], @@ -29825,80 +28822,265 @@ exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annota "type": "AnnotationPage", }, }, - "Canvas": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json": { + "accompanyingCanvas": null, + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "type": "AnnotationPage", + }, + ], + "behavior": [], + "duration": 0, + "height": 7072, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 5212, + }, + }, "Collection": {}, "ContentResource": { - "vault://929e073a": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 7072, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5212, + }, + "vault://5332a945": { "format": "text/plain", - "id": "vault://929e073a", + "id": "vault://5332a945", "iiif-parser:hasPart": [ { - "id": "vault://929e073a", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", + "id": "vault://5332a945", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", "type": "TextualBody", }, ], - "language": "de", + "language": "en", "type": "TextualBody", - "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + "value": "Town Creek Aqueduct", + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Using a point selector for annotating a location on a map.", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": { + "en": [ + "A map containing an point with an annotation of the location.", + ], + }, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", }, }, - "Manifest": {}, "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1": "Annotation", - "vault://929e073a": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag": "Annotation", + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json": "Canvas", + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json": "Annotation", + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": "ContentResource", + "vault://5332a945": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0269-embedded-or-referenced-annotations-annotationpage https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 108`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", "items": [ { - "body": { - "format": "text/plain", - "language": "de", - "type": "TextualBody", - "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "items": [ + { + "body": { + "format": "text/plain", + "language": "en", + "type": "TextualBody", + "value": "Town Creek Aqueduct", + }, + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "motivation": "tagging", + "target": { + "selector": { + "type": "PointSelector", + "x": 3385, + "y": 1464, + }, + "source": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "SpecificResource", + }, + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "height": 7072, + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 7072, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 5212, + }, + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet", + ], }, - "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", - "motivation": "commenting", - "target": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", - "type": "Annotation", + "type": "Canvas", + "width": 5212, }, ], - "type": "AnnotationPage", + "label": { + "en": [ + "Using a point selector for annotating a location on a map.", + ], + }, + "summary": { + "en": [ + "A map containing an point with an annotation of the location.", + ], + }, + "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0283-missing-image https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 109`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", "type": "Annotation", }, ], @@ -29907,61 +29089,38 @@ exports[`Cookbook > Testing normalize %p (%p) 0283-missing-image https://iiif.io ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "id": "vault://605b9d93", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", "type": "Annotation", }, ], "motivation": [ - "painting", + "tagging", ], "target": { - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image": { - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", - "type": "Annotation", + "selector": { + "type": "FragmentSelector", + "value": "xywh=265,661,1260,1239", }, - ], - "motivation": [ - "painting", - ], - "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", @@ -29971,20 +29130,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0283-missing-image https://iiif.io }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", "type": "Annotation", }, ], @@ -30000,20 +29159,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0283-missing-image https://iiif.io "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", "type": "Annotation", }, ], @@ -30029,25 +29188,32 @@ exports[`Cookbook > Testing normalize %p (%p) 0283-missing-image https://iiif.io "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", - "iiif-parser:hasPart": [ + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", "type": "AnnotationPage", }, ], + "behavior": [], + "duration": 0, + "height": 3024, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "type": "AnnotationPage", }, ], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -30056,257 +29222,72 @@ exports[`Cookbook > Testing normalize %p (%p) 0283-missing-image https://iiif.io "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 4032, }, }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2504, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", - "items": [ + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "f. 1r", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 1768, - }, - "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2504, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2", - "items": [], - "label": { - "en": [ - "f. 1v — MISSING", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Description", - ], - }, - "value": { - "en": [ - "Image unavailable or does not exist", - ], - }, - }, - ], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 1768, - }, - "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2456, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "f. 2r", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 1792, - }, - "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "duration": 0, - "height": 2440, - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "f. 2v", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "Canvas", - "width": 1760, - }, - }, - "Collection": {}, - "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2504, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1768, - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2456, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1792, + "width": 4032, }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 2440, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "vault://605b9d93": { + "format": "text/plain", + "id": "vault://605b9d93", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", - "profile": "level1", - "type": "ImageService3", + "id": "vault://605b9d93", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "type": "TextualBody", }, ], - "type": "Image", - "width": 1760, + "language": "de", + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", "type": "Canvas", }, ], "label": { "en": [ - "Ethiopic Ms 10", + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "metadata": [], @@ -30331,229 +29312,154 @@ exports[`Cookbook > Testing normalize %p (%p) 0283-missing-image https://iiif.io "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master": { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3": "Canvas", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4": "Canvas", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag": "Annotation", + "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + "vault://605b9d93": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0283-missing-image https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 110`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", "items": [ { - "height": 2504, - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 2504, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1768, - }, - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "en": [ - "f. 1r", - ], - }, - "type": "Canvas", - "width": 1768, - }, - { - "height": 2504, - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2", - "items": [], - "label": { - "en": [ - "f. 1v — MISSING", - ], - }, - "metadata": [ - { - "label": { - "en": [ - "Description", - ], - }, - "value": { - "en": [ - "Image unavailable or does not exist", - ], - }, - }, - ], - "type": "Canvas", - "width": 1768, - }, - { - "height": 2456, - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", - "items": [ + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", "items": [ { "body": { - "format": "image/jpeg", - "height": 2456, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 1792, + "format": "text/plain", + "language": "de", + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", }, - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0003-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "motivation": "tagging", + "target": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1#xywh=265,661,1260,1239", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "f. 2r", - ], - }, - "type": "Canvas", - "width": 1792, - }, - { - "height": 2440, - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 2440, - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 1760, + "width": 4032, }, - "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0004-image", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "target": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "en": [ - "f. 2v", - ], - }, "type": "Canvas", - "width": 1760, + "width": 4032, }, ], "label": { "en": [ - "Ethiopic Ms 10", + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0299-region https://iiif.io/api/cookbook/recipe/0299-region/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 111`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata": { "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/body/b1", - "selector": { - "region": "1768,2423,1768,2080", - "type": "ImageApiSelector", - }, "source": { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "id": "http://www.wikidata.org/entity/Q18624915", "type": "ContentResource", }, "type": "SpecificResource", }, + { + "id": "vault://7dc03413", + "type": "ContentResource", + }, ], - "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "type": "Annotation", + }, + ], + "motivation": [ + "tagging", + ], + "target": { + "selector": { + "type": "FragmentSelector", + "value": "xywh=749,1054,338,460", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", "type": "Annotation", }, ], @@ -30562,7 +29468,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0299-region https://iiif.io/api/co ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", @@ -30572,20 +29478,49 @@ exports[`Cookbook > Testing normalize %p (%p) 0299-region https://iiif.io/api/co }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", "type": "Annotation", }, ], @@ -30603,17 +29538,22 @@ exports[`Cookbook > Testing normalize %p (%p) 0299-region https://iiif.io/api/co }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1": { "accompanyingCanvas": null, - "annotations": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "type": "AnnotationPage", + }, + ], "behavior": [], "duration": 0, - "height": 2080, + "height": 3024, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", "type": "AnnotationPage", }, ], @@ -30631,50 +29571,75 @@ exports[`Cookbook > Testing normalize %p (%p) 0299-region https://iiif.io/api/co "summary": null, "thumbnail": [], "type": "Canvas", - "width": 1768, + "width": 4032, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": { + "http://www.wikidata.org/entity/Q18624915": { + "id": "http://www.wikidata.org/entity/Q18624915", + "type": "ContentResource", + }, + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 4999, - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", - "service": [ + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", - "profile": "level1", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 3536, + "width": 4032, + }, + "vault://7dc03413": { + "format": "text/plain", + "id": "vault://7dc03413", + "iiif-parser:hasPart": [ + { + "id": "vault://7dc03413", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "type": "TextualBody", + }, + ], + "language": "de", + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", "type": "Canvas", }, ], "label": { "en": [ - "Berliner Tageblatt article, 'Ein neuer Sicherungsplan?'", + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "metadata": [], @@ -30699,65 +29664,87 @@ exports[`Cookbook > Testing normalize %p (%p) 0299-region https://iiif.io/api/co "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2": { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": "ContentResource", + "http://www.wikidata.org/entity/Q18624915": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata": "Annotation", + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + "vault://7dc03413": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0299-region https://iiif.io/api/cookbook/recipe/0299-region/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 112`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", "items": [ { - "height": 2080, - "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", - "items": [ + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", "items": [ { - "body": { - "id": "https://iiif.io/api/cookbook/recipe/0299-region/body/b1", - "selector": { - "region": "1768,2423,1768,2080", - "type": "ImageApiSelector", + "body": [ + { + "source": "http://www.wikidata.org/entity/Q18624915", + "type": "SpecificResource", }, - "source": { - "format": "image/jpeg", - "height": 4999, - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 3536, + { + "format": "text/plain", + "language": "de", + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", }, - "type": "SpecificResource", + ], + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "motivation": "tagging", + "target": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1#xywh=749,1054,338,460", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4032, }, - "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "target": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", "type": "Annotation", }, ], @@ -30765,35 +29752,35 @@ exports[`Cookbook > Testing normalize %p (%p) 0299-region https://iiif.io/api/co }, ], "type": "Canvas", - "width": 1768, + "width": 4032, }, ], "label": { "en": [ - "Berliner Tageblatt article, 'Ein neuer Sicherungsplan?'", + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manifests https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 113`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image": { "body": [ { "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", "type": "Annotation", }, ], @@ -30802,29 +29789,61 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg": { + "body": [ + { + "id": "vault://605b9d93", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "type": "Annotation", + }, + ], + "motivation": [ + "tagging", + ], + "target": { + "selector": { + "type": "SvgSelector", + "value": "", + }, + "source": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "SpecificResource", + }, + "type": "Annotation", + }, }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", "type": "AnnotationPage", }, ], - "iiif-parser:isExternal": true, - "items": [], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "type": "Annotation", + }, + ], "label": null, "metadata": [], "provider": [], @@ -30837,20 +29856,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", "type": "Annotation", }, ], @@ -30868,11 +29887,11 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1": { "accompanyingCanvas": null, "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", "type": "AnnotationPage", }, ], @@ -30880,10 +29899,10 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife "duration": 0, "height": 3024, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", "type": "AnnotationPage", }, ], @@ -30913,7 +29932,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife "iiif-parser:hasPart": [ { "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", "type": "Image", }, ], @@ -30927,25 +29946,39 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife "type": "Image", "width": 4032, }, + "vault://605b9d93": { + "format": "text/plain", + "id": "vault://605b9d93", + "iiif-parser:hasPart": [ + { + "id": "vault://605b9d93", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "type": "TextualBody", + }, + ], + "language": "de", + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", + }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", "type": "Canvas", }, ], @@ -30984,37 +30017,60 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg": "Annotation", + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1": "AnnotationPage", "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + "vault://605b9d93": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manifests https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 114`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", "items": [ { "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "items": [ + { + "body": { + "format": "text/plain", + "language": "de", + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", + }, + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "motivation": "tagging", + "target": { + "selector": { + "type": "SvgSelector", + "value": "", + }, + "source": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "SpecificResource", + }, + "type": "Annotation", + }, + ], "type": "AnnotationPage", }, ], "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", "items": [ { "body": { @@ -31031,9 +30087,9 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife "type": "Image", "width": 4032, }, - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "target": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", "type": "Annotation", }, ], @@ -31053,174 +30109,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manife } `; -exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manifests-annotationpage https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json 1`] = ` -{ - "entities": { - "Agent": {}, - "Annotation": { - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1": { - "body": [ - { - "id": "vault://2876d220", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", - "type": "Annotation", - }, - ], - "motivation": [ - "commenting", - ], - "target": { - "selector": { - "conformsTo": "http://www.w3.org/TR/media-frags/", - "type": "FragmentSelector", - "value": "xywh=300,800,1200,1200", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", - "partOf": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", - "type": "Manifest", - }, - ], - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", - "type": "AnnotationPage", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", - "type": "Annotation", - }, - ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", - }, - }, - "Canvas": {}, - "Collection": {}, - "ContentResource": { - "vault://2876d220": { - "format": "text/plain", - "id": "vault://2876d220", - "iiif-parser:hasPart": [ - { - "id": "vault://2876d220", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", - "type": "TextualBody", - }, - ], - "language": "de", - "type": "TextualBody", - "value": "Der Gänseliesel-Brunnen", - }, - }, - "Manifest": {}, - "Range": {}, - "Selector": {}, - "Service": {}, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1": "Annotation", - "vault://2876d220": "ContentResource", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", - "type": "AnnotationPage", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0306-linking-annotations-to-manifests-annotationpage https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json 2`] = ` -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", - "items": [ - { - "body": { - "format": "text/plain", - "language": "de", - "type": "TextualBody", - "value": "Der Gänseliesel-Brunnen", - }, - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", - "motivation": "commenting", - "target": { - "selector": { - "conformsTo": "http://www.w3.org/TR/media-frags/", - "type": "FragmentSelector", - "value": "xywh=300,800,1200,1200", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", - "partOf": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", - "type": "Manifest", - }, - ], - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", - }, - ], - "type": "AnnotationPage", -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 115`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", "type": "Annotation", }, ], @@ -31229,34 +30134,34 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "id": "vault://929e073a", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", "type": "Annotation", }, ], "motivation": [ - "painting", + "commenting", ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", "type": "Canvas", }, "type": "SpecificResource", @@ -31266,36 +30171,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", "type": "AnnotationPage", }, ], - "iiif-parser:isExternal": true, - "items": [], - "label": null, - "metadata": [], - "next": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", - "partOf": [ + "items": [ { - "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", - "label": { - "en": [ - "Newspaper layout markup", - ], - }, - "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", - "total": 8, - "type": "AnnotationCollection", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation", }, ], + "label": null, + "metadata": [], "provider": [], "rendering": [], "requiredStatement": null, @@ -31306,36 +30200,25 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", "type": "AnnotationPage", }, ], - "iiif-parser:isExternal": true, - "items": [], - "label": null, - "metadata": [], - "partOf": [ + "items": [ { - "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", - "label": { - "en": [ - "Newspaper layout markup", - ], - }, - "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", - "total": 8, - "type": "AnnotationCollection", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation", }, ], - "prev": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "label": null, + "metadata": [], "provider": [], "rendering": [], "requiredStatement": null, @@ -31346,25 +30229,32 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", - "iiif-parser:hasPart": [ + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1": { + "accompanyingCanvas": null, + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", "type": "AnnotationPage", }, ], + "behavior": [], + "duration": 0, + "height": 3024, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "type": "AnnotationPage", }, ], "label": null, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -31373,67 +30263,268 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ "service": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Canvas", + "width": 4032, }, - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2": { + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4032, + }, + "vault://929e073a": { + "format": "text/plain", + "id": "vault://929e073a", + "iiif-parser:hasPart": [ + { + "id": "vault://929e073a", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "type": "TextualBody", + }, + ], + "language": "de", + "type": "TextualBody", + "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas", }, ], - "label": null, + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference", + ], + }, "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Manifest", + "viewingDirection": "left-to-right", }, }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1": { - "accompanyingCanvas": null, - "annotations": [ + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + "vault://929e073a": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 116`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "items": [ + { + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "items": [ + { + "body": { + "format": "text/plain", + "language": "de", + "type": "TextualBody", + "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + }, + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "motivation": "commenting", + "target": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4032, + }, + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "type": "Canvas", + "width": 4032, + }, + ], + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference", + ], + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 117`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", "type": "AnnotationPage", }, ], + "iiif-parser:isExternal": true, + "items": [], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1": { "behavior": [], - "duration": 0, - "height": 5000, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", - "items": [ + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", "type": "AnnotationPage", }, ], - "label": { - "none": [ - "p. 1", - ], - }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, @@ -31442,33 +30533,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ "service": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 3602, + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2": { + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1": { "accompanyingCanvas": null, "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", "type": "AnnotationPage", }, ], "behavior": [], "duration": 0, - "height": 5000, + "height": 3024, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", "type": "AnnotationPage", }, ], - "label": { - "none": [ - "p. 2", - ], - }, + "label": null, "metadata": [], "navDate": null, "partOf": [], @@ -31482,80 +30570,57 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ "summary": null, "thumbnail": [], "type": "Canvas", - "width": 3602, + "width": 4032, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg": { - "format": "image/jpeg", - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - }, - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { "format": "image/jpeg", - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", + "width": 4032, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json": { - "@context": [ - "http://iiif.io/api/presentation/3/context.json", - ], + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", - "type": "Canvas", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", "type": "Canvas", }, ], "label": { - "de": [ - "Berliner Tageblatt - 1925-02-16", + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, "metadata": [], @@ -31564,19 +30629,8 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ "placeholderCanvas": null, "provider": [], "rendering": [], - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "

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

", - ], - }, - }, - "rights": "http://creativecommons.org/publicdomain/mark/1.0/", + "requiredStatement": null, + "rights": null, "seeAlso": [], "service": [], "services": [], @@ -31591,943 +30645,374 @@ exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https:/ "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1": { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", - "profile": "level1", - "type": "ImageService3", - }, - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2": { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2": "Annotation", - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2": "Canvas", - "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0309-annotation-collection https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 118`] = ` { - "@context": [ - "http://iiif.io/api/presentation/3/context.json", - ], - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", "items": [ { "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", - "next": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", - "partOf": [ - { - "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", - "label": { - "en": [ - "Newspaper layout markup", - ], - }, - "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", - "total": 8, - "type": "AnnotationCollection", - }, - ], - "type": "AnnotationPage", - }, - ], - "height": 5000, - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", - "items": [ - { - "body": { - "format": "image/jpeg", - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - }, - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "label": { - "none": [ - "p. 1", - ], - }, - "type": "Canvas", - "width": 3602, - }, - { - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", - "partOf": [ - { - "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", - "label": { - "en": [ - "Newspaper layout markup", - ], - }, - "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", - "total": 8, - "type": "AnnotationCollection", - }, - ], - "prev": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", "type": "AnnotationPage", }, ], - "height": 5000, - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", "items": [ { "body": { "format": "image/jpeg", - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", + "width": 4032, }, - "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p2", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "target": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], - "label": { - "none": [ - "p. 2", - ], - }, "type": "Canvas", - "width": 3602, + "width": 4032, }, ], "label": { - "de": [ - "Berliner Tageblatt - 1925-02-16", + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference", ], }, - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "

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

", - ], - }, - }, - "rights": "http://creativecommons.org/publicdomain/mark/1.0/", "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0318-navPlace-navDate-collection https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 119`] = ` { "entities": { "Agent": {}, - "Annotation": {}, - "AnnotationCollection": {}, - "AnnotationPage": {}, - "Canvas": {}, - "Collection": { - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json": { - "@context": [ - "http://iiif.io/api/extension/navplace/context.json", - "http://iiif.io/api/presentation/3/context.json", + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1": { + "body": [ + { + "id": "vault://929e073a", + "type": "ContentResource", + }, ], - "accompanyingCanvas": null, - "annotations": [], + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "Annotation", + }, + ], + "motivation": [ + "commenting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", - "type": "Collection", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "Castel Sant'Angelo, Rome", - ], - }, - "navDate": "1776-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.4663, - 41.9031, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/1", - "properties": { - "label": { - "en": [ - "Castel Sant'Angelo, Rome", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/1", - "type": "FeatureCollection", - }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "The Colosseum", - ], - }, - "navDate": "1776-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.492222, - 41.890278, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/2", - "properties": { - "label": { - "en": [ - "The Colosseum", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/2", - "type": "FeatureCollection", - }, - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", + "type": "Annotation", }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + }, + "Canvas": {}, + "Collection": {}, + "ContentResource": { + "vault://929e073a": { + "format": "text/plain", + "id": "vault://929e073a", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "The Arch of Titus from the Forum, Rome, ca. 1725", - ], - }, - "navDate": "1725-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.488585, - 41.890717, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/3", - "properties": { - "label": { - "en": [ - "The Arch of Titus from the Forum, Rome, ca. 1725", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/3", - "type": "FeatureCollection", - }, - "type": "Manifest", + "id": "vault://929e073a", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", + "type": "TextualBody", }, + ], + "language": "de", + "type": "TextualBody", + "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + }, + }, + "Manifest": {}, + "Range": {}, + "Selector": {}, + "Service": {}, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1": "Annotation", + "vault://929e073a": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "AnnotationPage", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 120`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "items": [ + { + "body": { + "format": "text/plain", + "language": "de", + "type": "TextualBody", + "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + }, + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-2/anno-1", + "motivation": "commenting", + "target": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 121`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "The Temple of Vesta, Rome, 1849", - ], - }, - "navDate": "1849-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.4862, - 41.8917, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/4", - "properties": { - "label": { - "en": [ - "The Temple of Vesta, Rome, 1849", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/4", - "type": "FeatureCollection", - }, - "type": "Manifest", + "id": "vault://2876d220", + "type": "ContentResource", }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json", - "iiif-parser:isExternal": true, - "label": { - "en": [ - "A View of Trajan's Forum, Rome, 1821", - ], - }, - "navDate": "1821-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.485869, - 41.895419, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/5", - "properties": { - "label": { - "en": [ - "A View of Trajan's Forum, Rome, 1821", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/5", - "type": "FeatureCollection", - }, - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "Annotation", }, ], - "label": { - "en": [ - "NavPlace and NavDate Collection", - ], - }, - "metadata": [], - "navDate": null, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], + "motivation": [ + "commenting", + ], + "target": { + "selector": { + "conformsTo": "http://www.w3.org/TR/media-frags/", + "type": "FragmentSelector", + "value": "xywh=300,800,1200,1200", }, - "value": { - "en": [ - "Objects from the Yale Center for British Art", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "type": "Manifest", + }, ], + "type": "Canvas", }, + "type": "SpecificResource", }, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "summary": { - "en": [ - "A collection of items related to Rome.", - ], - }, - "thumbnail": [], - "type": "Collection", - "viewingDirection": "left-to-right", + "type": "Annotation", }, }, - "ContentResource": {}, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json": { - "accompanyingCanvas": null, - "annotations": [], + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json", - "iiif-parser:isExternal": true, - "items": [], - "label": { - "en": [ - "Castel Sant'Angelo, Rome", - ], - }, + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", + "type": "Annotation", + }, + ], + "label": null, "metadata": [], - "navDate": "1776-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.4663, - 41.9031, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/1", - "properties": { - "label": { - "en": [ - "Castel Sant'Angelo, Rome", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/1", - "type": "FeatureCollection", - }, - "partOf": [], - "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], - "services": [], - "start": null, - "structures": [], "summary": null, "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json", - "iiif-parser:isExternal": true, - "items": [], - "label": { - "en": [ - "The Colosseum", - ], + }, + "Canvas": {}, + "Collection": {}, + "ContentResource": { + "vault://2876d220": { + "format": "text/plain", + "id": "vault://2876d220", + "iiif-parser:hasPart": [ + { + "id": "vault://2876d220", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", + "type": "TextualBody", + }, + ], + "language": "de", + "type": "TextualBody", + "value": "Der Gänseliesel-Brunnen", + }, + }, + "Manifest": {}, + "Range": {}, + "Selector": {}, + "Service": {}, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1": "Annotation", + "vault://2876d220": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 122`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "items": [ + { + "body": { + "format": "text/plain", + "language": "de", + "type": "TextualBody", + "value": "Der Gänseliesel-Brunnen", + }, + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-2/anno-1", + "motivation": "commenting", + "target": { + "selector": { + "conformsTo": "http://www.w3.org/TR/media-frags/", + "type": "FragmentSelector", + "value": "xywh=300,800,1200,1200", }, - "metadata": [], - "navDate": "1776-01-01T00:00:00+00:00", - "navPlace": { - "features": [ + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "partOf": [ { - "geometry": { - "coordinates": [ - 12.492222, - 41.890278, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/2", - "properties": { - "label": { - "en": [ - "The Colosseum", - ], - }, - }, - "type": "Feature", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "type": "Manifest", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/2", - "type": "FeatureCollection", - }, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json", - "iiif-parser:isExternal": true, - "items": [], - "label": { - "en": [ - "The Arch of Titus from the Forum, Rome, ca. 1725", - ], - }, - "metadata": [], - "navDate": "1725-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.488585, - 41.890717, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/3", - "properties": { - "label": { - "en": [ - "The Arch of Titus from the Forum, Rome, ca. 1725", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/3", - "type": "FeatureCollection", - }, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json", - "iiif-parser:isExternal": true, - "items": [], - "label": { - "en": [ - "The Temple of Vesta, Rome, 1849", - ], - }, - "metadata": [], - "navDate": "1849-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.4862, - 41.8917, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/4", - "properties": { - "label": { - "en": [ - "The Temple of Vesta, Rome, 1849", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/4", - "type": "FeatureCollection", - }, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json": { - "accompanyingCanvas": null, - "annotations": [], - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json", - "iiif-parser:isExternal": true, - "items": [], - "label": { - "en": [ - "A View of Trajan's Forum, Rome, 1821", - ], - }, - "metadata": [], - "navDate": "1821-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.485869, - 41.895419, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/5", - "properties": { - "label": { - "en": [ - "A View of Trajan's Forum, Rome, 1821", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/5", - "type": "FeatureCollection", + "type": "Canvas", }, - "partOf": [], - "placeholderCanvas": null, - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "services": [], - "start": null, - "structures": [], - "summary": null, - "thumbnail": [], - "type": "Manifest", - "viewingDirection": "left-to-right", - }, - }, - "Range": {}, - "Selector": {}, - "Service": {}, - }, - "mapping": { - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json": "Collection", - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json": "Manifest", - }, - "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", - "type": "Collection", - }, -} -`; - -exports[`Cookbook > Testing normalize %p (%p) 0318-navPlace-navDate-collection https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json 2`] = ` -{ - "@context": [ - "http://iiif.io/api/extension/navplace/context.json", - "http://iiif.io/api/presentation/3/context.json", - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json", - "label": { - "en": [ - "Castel Sant'Angelo, Rome", - ], - }, - "navDate": "1776-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.4663, - 41.9031, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/1", - "properties": { - "label": { - "en": [ - "Castel Sant'Angelo, Rome", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/1", - "type": "FeatureCollection", - }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json", - "label": { - "en": [ - "The Colosseum", - ], - }, - "navDate": "1776-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.492222, - 41.890278, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/2", - "properties": { - "label": { - "en": [ - "The Colosseum", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/2", - "type": "FeatureCollection", - }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json", - "label": { - "en": [ - "The Arch of Titus from the Forum, Rome, ca. 1725", - ], - }, - "navDate": "1725-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.488585, - 41.890717, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/3", - "properties": { - "label": { - "en": [ - "The Arch of Titus from the Forum, Rome, ca. 1725", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/3", - "type": "FeatureCollection", - }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json", - "label": { - "en": [ - "The Temple of Vesta, Rome, 1849", - ], - }, - "navDate": "1849-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.4862, - 41.8917, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/4", - "properties": { - "label": { - "en": [ - "The Temple of Vesta, Rome, 1849", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/4", - "type": "FeatureCollection", - }, - "type": "Manifest", - }, - { - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json", - "label": { - "en": [ - "A View of Trajan's Forum, Rome, 1821", - ], - }, - "navDate": "1821-01-01T00:00:00+00:00", - "navPlace": { - "features": [ - { - "geometry": { - "coordinates": [ - 12.485869, - 41.895419, - ], - "type": "Point", - }, - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/5", - "properties": { - "label": { - "en": [ - "A View of Trajan's Forum, Rome, 1821", - ], - }, - }, - "type": "Feature", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/5", - "type": "FeatureCollection", + "type": "SpecificResource", }, - "type": "Manifest", + "type": "Annotation", }, ], - "label": { - "en": [ - "NavPlace and NavDate Collection", - ], - }, - "requiredStatement": { - "label": { - "en": [ - "Attribution", - ], - }, - "value": { - "en": [ - "Objects from the Yale Center for British Art", - ], - }, - }, - "summary": { - "en": [ - "A collection of items related to Rome.", - ], - }, - "type": "Collection", + "type": "AnnotationPage", } `; -exports[`Cookbook > Testing normalize %p (%p) 0326-annotating-image-layer https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 123`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1": { "body": [ { - "id": "vault://6e534aac", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", "type": "Annotation", }, ], @@ -32536,62 +31021,29 @@ exports[`Cookbook > Testing normalize %p (%p) 0326-annotating-image-layer https: ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag": { - "body": [ - { - "id": "vault://14f7ebdc", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", - "type": "Annotation", - }, - ], - "motivation": [ - "tagging", - ], - "target": { - "selector": { - "region": "810,900,260,370", - "size": "2000,1271", - "type": "ImageApiSelector", - }, - "source": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", - "type": "SpecificResource", - }, - "type": "Annotation", - }, }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", "type": "AnnotationPage", }, ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", - "type": "Annotation", - }, - ], + "iiif-parser:isExternal": true, + "items": [], "label": null, "metadata": [], "provider": [], @@ -32604,20 +31056,20 @@ exports[`Cookbook > Testing normalize %p (%p) 0326-annotating-image-layer https: "thumbnail": [], "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", - "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", "type": "Annotation", }, ], @@ -32635,17 +31087,22 @@ exports[`Cookbook > Testing normalize %p (%p) 0326-annotating-image-layer https: }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1": { "accompanyingCanvas": null, - "annotations": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage", + }, + ], "behavior": [], "duration": 0, - "height": 1271, + "height": 3024, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", "type": "AnnotationPage", }, ], @@ -32663,31 +31120,335 @@ exports[`Cookbook > Testing normalize %p (%p) 0326-annotating-image-layer https: "summary": null, "thumbnail": [], "type": "Canvas", - "width": 2000, + "width": 4032, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 1271, - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", - "label": { - "en": [ - "Natural Light", - ], - }, + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "type": "Image", + }, + ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 2000, + "width": 4032, }, - "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg": { + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json": { + "@context": "http://iiif.io/api/presentation/3/context.json", + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 124`] = ` +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "items": [ + { + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage", + }, + ], + "height": 3024, + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3024, + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4032, + }, + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "type": "Canvas", + "width": 4032, + }, + ], + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference", + ], + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 125`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image": { + "body": [ + { + "id": "vault://6e534aac", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag": { + "body": [ + { + "id": "vault://14f7ebdc", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "type": "Annotation", + }, + ], + "motivation": [ + "tagging", + ], + "target": { + "selector": { + "region": "810,900,260,370", + "size": "2000,1271", + "type": "ImageApiSelector", + }, + "source": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "SpecificResource", + }, + "type": "Annotation", + }, + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 1271, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "type": "AnnotationPage", + }, + ], + "label": null, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2000, + }, + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 1271, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "label": { + "en": [ + "Natural Light", + ], + }, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2000, + }, + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg": { "annotations": [ { "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", @@ -32827,7 +31588,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0326-annotating-image-layer https: } `; -exports[`Cookbook > Testing normalize %p (%p) 0326-annotating-image-layer https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 126`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json", @@ -32933,7 +31694,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0326-annotating-image-layer https: } `; -exports[`Cookbook > Testing normalize %p (%p) 0346-multilingual-annotation-body https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 127`] = ` { "entities": { "Agent": {}, @@ -33231,7 +31992,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0346-multilingual-annotation-body } `; -exports[`Cookbook > Testing normalize %p (%p) 0346-multilingual-annotation-body https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 128`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json", @@ -33314,23 +32075,23 @@ exports[`Cookbook > Testing normalize %p (%p) 0346-multilingual-annotation-body } `; -exports[`Cookbook > Testing normalize %p (%p) 0377-image-in-annotation https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 129`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", "type": "Annotation", }, ], @@ -33338,95 +32099,175 @@ exports[`Cookbook > Testing normalize %p (%p) 0377-image-in-annotation https://i "painting", ], "target": { + "selector": { + "type": "FragmentSelector", + "value": "t=11,42", + }, "source": { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", "type": "ContentResource", }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "iiif-parser:hasPart": [ { - "id": "vault://69cc99ce", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { + "selector": { + "type": "FragmentSelector", + "value": "xywh=1000,500,5000,6000&t=11,42", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text": { + "body": [ + { + "id": "vault://94602451", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", "type": "Annotation", }, ], "motivation": [ - "commenting", + "painting", ], "target": { "selector": { "type": "FragmentSelector", - "value": "xywh=138,550,1477,1710", + "value": "xywh=30200,10200,15000,5000&t=0,1", }, "source": { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - }, - "AnnotationCollection": {}, - "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1": { - "behavior": [], - "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text": { + "body": [ + { + "id": "vault://bea81c2d", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", - "type": "AnnotationPage", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "type": "Annotation", }, ], - "items": [ + "motivation": [ + "painting", + ], + "target": { + "selector": { + "type": "FragmentSelector", + "value": "xywh=20220,5000,30000,5000&t=1,11", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text": { + "body": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "id": "vault://a0ffc779", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", "type": "Annotation", }, ], - "label": null, - "metadata": [], - "provider": [], - "rendering": [], - "requiredStatement": null, - "rights": null, - "seeAlso": [], - "service": [], - "summary": null, - "thumbnail": [], - "type": "AnnotationPage", + "motivation": [ + "painting", + ], + "target": { + "selector": { + "type": "FragmentSelector", + "value": "xywh=27000,10200,25000,5000&t=42,180", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2": { + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", + "type": "Annotation", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "type": "Annotation", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "type": "Annotation", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "type": "Annotation", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", "type": "Annotation", }, ], @@ -33444,22 +32285,17 @@ exports[`Cookbook > Testing normalize %p (%p) 0377-image-in-annotation https://i }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas": { "accompanyingCanvas": null, - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", - "type": "AnnotationPage", - }, - ], + "annotations": [], "behavior": [], - "duration": 0, - "height": 3024, + "duration": 180, + "height": 31722, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", "type": "AnnotationPage", }, ], @@ -33477,82 +32313,114 @@ exports[`Cookbook > Testing normalize %p (%p) 0377-image-in-annotation https://i "summary": null, "thumbnail": [], "type": "Canvas", - "width": 4032, + "width": 70399, }, }, "Collection": {}, "ContentResource": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg": { - "format": "image/jpeg", - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": { + "duration": 1801.055, + "format": "video/mp4", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", - "type": "Image", + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "type": "Video", }, ], - "type": "Image", + "type": "Video", + "width": 640, }, - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg": { "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "height": 31722, + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", "type": "Image", }, ], "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4032, + "width": 70399, }, - "vault://69cc99ce": { - "id": "vault://69cc99ce", + "vault://94602451": { + "format": "text/html", + "id": "vault://94602451", "iiif-parser:hasPart": [ { - "id": "vault://69cc99ce", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "id": "vault://94602451", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", "type": "TextualBody", }, ], "language": "en", "type": "TextualBody", - "value": "Night picture of the Gänseliesel fountain in Göttingen taken during the 2019 IIIF Conference", + "value": "

Press Play

", + }, + "vault://a0ffc779": { + "format": "text/html", + "id": "vault://a0ffc779", + "iiif-parser:hasPart": [ + { + "id": "vault://a0ffc779", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "type": "TextualBody", + }, + ], + "language": "en", + "type": "TextualBody", + "value": "

Close your browser

", + }, + "vault://bea81c2d": { + "format": "text/html", + "id": "vault://bea81c2d", + "iiif-parser:hasPart": [ + { + "id": "vault://bea81c2d", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "type": "TextualBody", + }, + ], + "language": "en", + "type": "TextualBody", + "value": "

In 10 seconds, this text will be replaced by a clock and an image. You will have 30 seconds (shown on the clock) in which to take notes on the image you see. After 30 seconds, the image will be replaced by the start screen. You will not be responsible for the part of the image covered by the clock.

", }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json": { "@context": "http://iiif.io/api/presentation/3/context.json", "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", "type": "Canvas", }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "Multimedia Canvas", ], }, "metadata": [], @@ -33577,87 +32445,116 @@ exports[`Cookbook > Testing normalize %p (%p) 0377-image-in-annotation https://i "Range": {}, "Selector": {}, "Service": { - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", "profile": "level1", "type": "ImageService3", }, }, }, "mapping": { - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json": "Manifest", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg": "ContentResource", - "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": "ContentResource", - "vault://69cc99ce": "ContentResource", + "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image": "Annotation", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video": "Annotation", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text": "Annotation", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text": "Annotation", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text": "Annotation", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas": "Canvas", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg": "ContentResource", + "vault://94602451": "ContentResource", + "vault://a0ffc779": "ContentResource", + "vault://bea81c2d": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0377-image-in-annotation https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 130`] = ` { "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", "items": [ { - "annotations": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", - "items": [ - { - "body": [ - { - "format": "image/jpeg", - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", - "type": "Image", - }, - { - "language": "en", - "type": "TextualBody", - "value": "Night picture of the Gänseliesel fountain in Göttingen taken during the 2019 IIIF Conference", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", - "motivation": "commenting", - "target": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1#xywh=138,550,1477,1710", - "type": "Annotation", - }, - ], - "type": "AnnotationPage", - }, - ], - "height": 3024, - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "duration": 180, + "height": 31722, + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", "items": [ { "body": { "format": "image/jpeg", - "height": 3024, - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "height": 31722, + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", "service": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", "profile": "level1", "type": "ImageService3", }, ], "type": "Image", - "width": 4032, + "width": 70399, }, - "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#t=11,42", + "type": "Annotation", + }, + { + "body": { + "duration": 1801.055, + "format": "video/mp4", + "height": 360, + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video", + "width": 640, + }, + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=1000,500,5000,6000&t=11,42", + "type": "Annotation", + }, + { + "body": { + "format": "text/html", + "language": "en", + "type": "TextualBody", + "value": "

Press Play

", + }, + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=30200,10200,15000,5000&t=0,1", + "type": "Annotation", + }, + { + "body": { + "format": "text/html", + "language": "en", + "type": "TextualBody", + "value": "

In 10 seconds, this text will be replaced by a clock and an image. You will have 30 seconds (shown on the clock) in which to take notes on the image you see. After 30 seconds, the image will be replaced by the start screen. You will not be responsible for the part of the image covered by the clock.

", + }, + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=20220,5000,30000,5000&t=1,11", + "type": "Annotation", + }, + { + "body": { + "format": "text/html", + "language": "en", + "type": "TextualBody", + "value": "

Close your browser

", + }, + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=27000,10200,25000,5000&t=42,180", "type": "Annotation", }, ], @@ -33665,35 +32562,35 @@ exports[`Cookbook > Testing normalize %p (%p) 0377-image-in-annotation https://i }, ], "type": "Canvas", - "width": 4032, + "width": 70399, }, ], "label": { "en": [ - "Picture of Göttingen taken during the 2019 IIIF Conference", + "Multimedia Canvas", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 131`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1": { + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json": { "body": [ { - "id": "vault://adac293e", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", "type": "Annotation", }, ], @@ -33702,7 +32599,38 @@ exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api ], "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas", + }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json": { + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "type": "Annotation", + }, + ], + "motivation": [ + "tagging", + ], + "target": { + "selector": { + "type": "FragmentSelector", + "value": "xywh=920,3600,1510,3000", + }, + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", "type": "Canvas", }, "type": "SpecificResource", @@ -33712,20 +32640,49 @@ exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1": { + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "type": "Annotation", + }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "AnnotationPage", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", "type": "Annotation", }, ], @@ -33743,21 +32700,30 @@ exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api }, }, "Canvas": { - "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1": { + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json": { "accompanyingCanvas": null, - "annotations": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "type": "AnnotationPage", + }, + ], "behavior": [], - "duration": 16, - "height": 0, + "duration": 0, + "height": 7072, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", "type": "AnnotationPage", }, ], - "label": null, + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet", + ], + }, "metadata": [], "navDate": null, "partOf": [], @@ -33771,139 +32737,101 @@ exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api "summary": null, "thumbnail": [], "type": "Canvas", - "width": 0, + "width": 5212, }, }, "Collection": {}, "ContentResource": { - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac": { - "duration": 16, - "format": "audio/flac", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", - "label": { - "en": [ - "FLAC", - ], - }, - "type": "Sound", - }, - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a": { - "duration": 16, - "format": "audio/alac", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", - "label": { - "en": [ - "ALAC", - ], - }, - "type": "Sound", - }, - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3": { - "duration": 16, - "format": "audio/mpeg", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", - "label": { - "en": [ - "MP3", - ], - }, - "type": "Sound", - }, - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg": { - "duration": 16, - "format": "audio/mpeg", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", - "label": { - "en": [ - "MPEG2", - ], - }, - "type": "Sound", - }, - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg": { - "duration": 16, - "format": "audio/ogg", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", - "label": { - "en": [ - "OGG Vorbis OGG", - ], - }, - "type": "Sound", - }, - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav": { - "duration": 16, - "format": "audio/wav", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", - "label": { - "en": [ - "WAV", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json": { + "geometry": { + "coordinates": [ + [ + [ + -77.019853, + 38.913101, + ], + [ + -77.110013, + 38.843254, + ], + [ + -77.284698, + 38.997574, + ], + [ + -77.188911, + 39.062648, + ], + ], ], + "type": "Polygon", }, - "type": "Sound", - }, - "vault://adac293e": { - "id": "vault://adac293e", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", "iiif-parser:hasPart": [ { - "id": "vault://adac293e", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", - "type": "Choice", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "type": "Feature", }, ], - "items": [ - { - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", - "type": "ContentResource", - }, - { - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", - "type": "ContentResource", - }, - { - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", - "type": "ContentResource", - }, - { - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", - "type": "ContentResource", + "properties": { + "label": { + "en": [ + "Targeted Map from Chesapeake and Ohio Canal Pamphlet", + ], }, + }, + "type": "Feature", + }, + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 7072, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "type": "Image", }, + ], + "service": [ { - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "profile": "level1", + "type": "ImageService3", }, ], - "type": "Choice", + "type": "Image", + "width": 5212, }, }, "Manifest": { - "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json": { + "@context": [ + "http://geojson.org/geojson-ld/geojson-context.jsonld", + "http://iiif.io/api/presentation/3/context.json", + ], "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", "type": "Manifest", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", "type": "Canvas", }, ], "label": { "en": [ - "Excerpt from Egbe Iyawo", + "Recipe Manifest for #139", ], }, "metadata": [], @@ -33913,7 +32841,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api "provider": [], "rendering": [], "requiredStatement": null, - "rights": "http://creativecommons.org/publicdomain/zero/1.0/", + "rights": null, "seeAlso": [], "service": [], "services": [], @@ -33921,7 +32849,7 @@ exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api "structures": [], "summary": { "en": [ - "Excerpt from a performance of Egbe Iyawo recorded in Kabba Division, Kwara State. ", + "A IIIF Presentation API 3.0 Manifest containing a GeoJSON-LD Web Annotation which targets a Canvas fragment.", ], }, "thumbnail": [], @@ -33931,156 +32859,158 @@ exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api }, "Range": {}, "Selector": {}, - "Service": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "profile": "level1", + "type": "ImageService3", + }, + }, }, "mapping": { - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac": "ContentResource", - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a": "ContentResource", - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3": "ContentResource", - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg": "ContentResource", - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg": "ContentResource", - "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1": "Canvas", - "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1": "AnnotationPage", - "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1": "Annotation", - "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json": "Manifest", - "vault://adac293e": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json": "Canvas", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json": "Annotation", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json": "Annotation", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json": "AnnotationPage", + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": "ContentResource", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", "type": "Manifest", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0434-choice-av https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 132`] = ` { - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "@context": [ + "http://geojson.org/geojson-ld/geojson-context.jsonld", + "http://iiif.io/api/presentation/3/context.json", + ], + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", "items": [ { - "duration": 16, - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", - "items": [ + "annotations": [ { - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", "items": [ { "body": { - "items": [ - { - "duration": 16, - "format": "audio/alac", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", - "label": { - "en": [ - "ALAC", - ], - }, - "type": "Sound", - }, - { - "duration": 16, - "format": "audio/mpeg", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", - "label": { - "en": [ - "MP3", + "geometry": { + "coordinates": [ + [ + [ + -77.019853, + 38.913101, ], - }, - "type": "Sound", - }, - { - "duration": 16, - "format": "audio/flac", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", - "label": { - "en": [ - "FLAC", + [ + -77.110013, + 38.843254, ], - }, - "type": "Sound", - }, - { - "duration": 16, - "format": "audio/ogg", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", - "label": { - "en": [ - "OGG Vorbis OGG", + [ + -77.284698, + 38.997574, ], - }, - "type": "Sound", - }, - { - "duration": 16, - "format": "audio/mpeg", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", - "label": { - "en": [ - "MPEG2", + [ + -77.188911, + 39.062648, ], - }, - "type": "Sound", + ], + ], + "type": "Polygon", + }, + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", + "properties": { + "label": { + "en": [ + "Targeted Map from Chesapeake and Ohio Canal Pamphlet", + ], }, + }, + "type": "Feature", + }, + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "motivation": "tagging", + "target": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json#xywh=920,3600,1510,3000", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "height": 7072, + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 7072, + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "service": [ { - "duration": 16, - "format": "audio/wav", - "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", - "label": { - "en": [ - "WAV", - ], - }, - "type": "Sound", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "profile": "level1", + "type": "ImageService3", }, ], - "type": "Choice", + "type": "Image", + "width": 5212, }, - "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "target": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", "type": "Annotation", }, ], "type": "AnnotationPage", }, ], + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet", + ], + }, "type": "Canvas", + "width": 5212, }, ], "label": { "en": [ - "Excerpt from Egbe Iyawo", + "Recipe Manifest for #139", ], }, - "rights": "http://creativecommons.org/publicdomain/zero/1.0/", "summary": { "en": [ - "Excerpt from a performance of Egbe Iyawo recorded in Kabba Division, Kwara State. ", + "A IIIF Presentation API 3.0 Manifest containing a GeoJSON-LD Web Annotation which targets a Canvas fragment.", ], }, "type": "Manifest", } `; -exports[`Cookbook > Testing normalize %p (%p) 0489-multimedia-canvas https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json 1`] = ` +exports[`Cookbook > Testing normalize %p (%p) 133`] = ` { "entities": { "Agent": {}, "Annotation": { - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1": { "body": [ { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", "type": "ContentResource", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", "type": "Annotation", }, ], @@ -34088,136 +33018,343 @@ exports[`Cookbook > Testing normalize %p (%p) 0489-multimedia-canvas https://iii "painting", ], "target": { - "selector": { - "type": "FragmentSelector", - "value": "t=11,42", - }, "source": { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", "type": "Canvas", }, "type": "SpecificResource", }, "type": "Annotation", }, - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video": { - "body": [ + }, + "AnnotationCollection": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "iiif-parser:hasPart": [ { - "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "AnnotationPage", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", "type": "Annotation", }, ], - "motivation": [ - "painting", - ], - "target": { - "selector": { - "type": "FragmentSelector", - "value": "xywh=1000,500,5000,6000&t=11,42", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", }, - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text": { - "body": [ - { - "id": "vault://94602451", - "type": "ContentResource", - }, - ], - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", - "iiif-parser:hasPart": [ + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 3000, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "type": "AnnotationPage", }, ], - "motivation": [ - "painting", - ], - "target": { - "selector": { - "type": "FragmentSelector", - "value": "xywh=30200,10200,15000,5000&t=0,1", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", - "type": "Canvas", - }, - "type": "SpecificResource", + "label": { + "en": [ + "Front of Bronze", + ], }, - "type": "Annotation", + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2315, }, - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text": { - "body": [ + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3000, + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "iiif-parser:hasPart": [ { - "id": "vault://bea81c2d", - "type": "ContentResource", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "type": "Image", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", - "iiif-parser:hasPart": [ + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", }, ], - "motivation": [ - "painting", - ], - "target": { - "selector": { - "type": "FragmentSelector", - "value": "xywh=20220,5000,30000,5000&t=1,11", - }, - "source": { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", - "type": "Canvas", - }, - "type": "SpecificResource", - }, - "type": "Annotation", + "type": "Image", + "width": 2315, }, - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text": { - "body": [ + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json": { + "@context": [ + "http://iiif.io/api/extension/navplace/context.json", + "http://iiif.io/api/presentation/3/context.json", + ], + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "iiif-parser:hasPart": [ { - "id": "vault://a0ffc779", - "type": "ContentResource", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "type": "Manifest", }, ], - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", - "iiif-parser:hasPart": [ + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas", + }, + ], + "label": { + "it": [ + "Bronzo Laocoonte e i suoi figli", + ], + }, + "metadata": [], + "navDate": null, + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + -118.4745559, + 34.0776376, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature/1", + "properties": { + "label": { + "en": [ + "The Laocoön Bronze", + ], + "it": [ + "Bronzo Laocoonte e i suoi figli", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature-collection/1", + "type": "FeatureCollection", + }, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 134`] = ` +{ + "@context": [ + "http://iiif.io/api/extension/navplace/context.json", + "http://iiif.io/api/presentation/3/context.json", + ], + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "items": [ + { + "height": 3000, + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3000, + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2315, + }, + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Front of Bronze", + ], + }, + "type": "Canvas", + "width": 2315, + }, + ], + "label": { + "it": [ + "Bronzo Laocoonte e i suoi figli", + ], + }, + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + -118.4745559, + 34.0776376, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature/1", + "properties": { + "label": { + "en": [ + "The Laocoön Bronze", + ], + "it": [ + "Bronzo Laocoonte e i suoi figli", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature-collection/1", + "type": "FeatureCollection", + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 135`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "type": "Annotation", }, ], "motivation": [ "painting", ], "target": { - "selector": { - "type": "FragmentSelector", - "value": "xywh=27000,10200,25000,5000&t=42,180", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas", }, + "type": "SpecificResource", + }, + "type": "Annotation", + }, + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2": { + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", + "type": "ContentResource", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "type": "Annotation", + }, + ], + "motivation": [ + "painting", + ], + "target": { "source": { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", "type": "Canvas", }, "type": "SpecificResource", @@ -34227,70 +33364,909 @@ exports[`Cookbook > Testing normalize %p (%p) 0489-multimedia-canvas https://iii }, "AnnotationCollection": {}, "AnnotationPage": { - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1": { "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", "type": "AnnotationPage", }, ], "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", "type": "Annotation", }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2": { + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "iiif-parser:hasPart": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "type": "AnnotationPage", }, + ], + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", "type": "Annotation", }, + ], + "label": null, + "metadata": [], + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "AnnotationPage", + }, + }, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 3000, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Front of Bronze", + ], + }, + "metadata": [], + "navDate": null, + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + -118.4745559, + 34.0776376, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/1", + "properties": { + "label": { + "en": [ + "Current Location of the Laocoön Bronze", + ], + "it": [ + "Ubicazione attuale del Bronzo Laocoonte e i suoi figli", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/1", + "type": "FeatureCollection", + }, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 2315, + }, + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "duration": 0, + "height": 3259, + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "items": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", - "type": "Annotation", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Painting", + ], + }, + "metadata": [], + "navDate": null, + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + -77.0199025, + 38.8920717, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/2", + "properties": { + "label": { + "en": [ + "Current Location of Painting", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/2", + "type": "FeatureCollection", + }, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "summary": null, + "thumbnail": [], + "type": "Canvas", + "width": 4096, + }, + }, + "Collection": {}, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3000, + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "type": "Image", }, + ], + "service": [ { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", - "type": "Annotation", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", }, ], - "label": null, + "type": "Image", + "width": 2315, + }, + "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg": { + "format": "image/jpeg", + "height": 3259, + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", + "type": "Image", + }, + ], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4096, + }, + }, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json": { + "@context": [ + "http://iiif.io/api/extension/navplace/context.json", + "http://iiif.io/api/presentation/3/context.json", + ], + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "type": "Manifest", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "type": "Canvas", + }, + ], + "label": { + "en": [ + "Laocöon, geolocated sculpture and painting.", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + }, + "Range": {}, + "Selector": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", + }, + "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1": { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1", + "profile": "level1", + "type": "ImageService3", + }, + }, + }, + "mapping": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2": "AnnotationPage", + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1": "Annotation", + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2": "Annotation", + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1": "Canvas", + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2": "Canvas", + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json": "Manifest", + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": "ContentResource", + "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg": "ContentResource", + }, + "resource": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "type": "Manifest", + }, +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 136`] = ` +{ + "@context": [ + "http://iiif.io/api/extension/navplace/context.json", + "http://iiif.io/api/presentation/3/context.json", + ], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "items": [ + { + "height": 3000, + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3000, + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 2315, + }, + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Front of Bronze", + ], + }, + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + -118.4745559, + 34.0776376, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/1", + "properties": { + "label": { + "en": [ + "Current Location of the Laocoön Bronze", + ], + "it": [ + "Ubicazione attuale del Bronzo Laocoonte e i suoi figli", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/1", + "type": "FeatureCollection", + }, + "type": "Canvas", + "width": 2315, + }, + { + "height": 3259, + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "items": [ + { + "body": { + "format": "image/jpeg", + "height": 3259, + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1", + "profile": "level1", + "type": "ImageService3", + }, + ], + "type": "Image", + "width": 4096, + }, + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", + "motivation": "painting", + "target": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "type": "Annotation", + }, + ], + "type": "AnnotationPage", + }, + ], + "label": { + "en": [ + "Painting", + ], + }, + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + -77.0199025, + 38.8920717, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/2", + "properties": { + "label": { + "en": [ + "Current Location of Painting", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/2", + "type": "FeatureCollection", + }, + "type": "Canvas", + "width": 4096, + }, + ], + "label": { + "en": [ + "Laocöon, geolocated sculpture and painting.", + ], + }, + "type": "Manifest", +} +`; + +exports[`Cookbook > Testing normalize %p (%p) 137`] = ` +{ + "entities": { + "Agent": {}, + "Annotation": {}, + "AnnotationCollection": {}, + "AnnotationPage": {}, + "Canvas": {}, + "Collection": { + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json": { + "@context": [ + "http://iiif.io/api/extension/navplace/context.json", + "http://iiif.io/api/presentation/3/context.json", + ], + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", + "iiif-parser:hasPart": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", + "type": "Collection", + }, + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "Castel Sant'Angelo, Rome", + ], + }, + "navDate": "1776-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.4663, + 41.9031, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/1", + "properties": { + "label": { + "en": [ + "Castel Sant'Angelo, Rome", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/1", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "The Colosseum", + ], + }, + "navDate": "1776-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.492222, + 41.890278, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/2", + "properties": { + "label": { + "en": [ + "The Colosseum", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/2", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "The Arch of Titus from the Forum, Rome, ca. 1725", + ], + }, + "navDate": "1725-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.488585, + 41.890717, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/3", + "properties": { + "label": { + "en": [ + "The Arch of Titus from the Forum, Rome, ca. 1725", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/3", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "The Temple of Vesta, Rome, 1849", + ], + }, + "navDate": "1849-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.4862, + 41.8917, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/4", + "properties": { + "label": { + "en": [ + "The Temple of Vesta, Rome, 1849", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/4", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json", + "iiif-parser:isExternal": true, + "label": { + "en": [ + "A View of Trajan's Forum, Rome, 1821", + ], + }, + "navDate": "1821-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.485869, + 41.895419, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/5", + "properties": { + "label": { + "en": [ + "A View of Trajan's Forum, Rome, 1821", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/5", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + ], + "label": { + "en": [ + "NavPlace and NavDate Collection", + ], + }, + "metadata": [], + "navDate": null, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "Objects from the Yale Center for British Art", + ], + }, + }, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "summary": { + "en": [ + "A collection of items related to Rome.", + ], + }, + "thumbnail": [], + "type": "Collection", + "viewingDirection": "left-to-right", + }, + }, + "ContentResource": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json", + "iiif-parser:isExternal": true, + "items": [], + "label": { + "en": [ + "Castel Sant'Angelo, Rome", + ], + }, + "metadata": [], + "navDate": "1776-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.4663, + 41.9031, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/1", + "properties": { + "label": { + "en": [ + "Castel Sant'Angelo, Rome", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/1", + "type": "FeatureCollection", + }, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json", + "iiif-parser:isExternal": true, + "items": [], + "label": { + "en": [ + "The Colosseum", + ], + }, + "metadata": [], + "navDate": "1776-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.492222, + 41.890278, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/2", + "properties": { + "label": { + "en": [ + "The Colosseum", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/2", + "type": "FeatureCollection", + }, + "partOf": [], + "placeholderCanvas": null, + "provider": [], + "rendering": [], + "requiredStatement": null, + "rights": null, + "seeAlso": [], + "service": [], + "services": [], + "start": null, + "structures": [], + "summary": null, + "thumbnail": [], + "type": "Manifest", + "viewingDirection": "left-to-right", + }, + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json": { + "accompanyingCanvas": null, + "annotations": [], + "behavior": [], + "homepage": [], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json", + "iiif-parser:isExternal": true, + "items": [], + "label": { + "en": [ + "The Arch of Titus from the Forum, Rome, ca. 1725", + ], + }, "metadata": [], + "navDate": "1725-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.488585, + 41.890717, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/3", + "properties": { + "label": { + "en": [ + "The Arch of Titus from the Forum, Rome, ca. 1725", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/3", + "type": "FeatureCollection", + }, + "partOf": [], + "placeholderCanvas": null, "provider": [], "rendering": [], "requiredStatement": null, "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "AnnotationPage", + "type": "Manifest", + "viewingDirection": "left-to-right", }, - }, - "Canvas": { - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas": { + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json": { "accompanyingCanvas": null, "annotations": [], "behavior": [], - "duration": 180, - "height": 31722, "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", - "type": "AnnotationPage", - }, - ], - "label": null, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json", + "iiif-parser:isExternal": true, + "items": [], + "label": { + "en": [ + "The Temple of Vesta, Rome, 1849", + ], + }, "metadata": [], - "navDate": null, + "navDate": "1849-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.4862, + 41.8917, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/4", + "properties": { + "label": { + "en": [ + "The Temple of Vesta, Rome, 1849", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/4", + "type": "FeatureCollection", + }, "partOf": [], "placeholderCanvas": null, "provider": [], @@ -34299,121 +34275,53 @@ exports[`Cookbook > Testing normalize %p (%p) 0489-multimedia-canvas https://iii "rights": null, "seeAlso": [], "service": [], + "services": [], + "start": null, + "structures": [], "summary": null, "thumbnail": [], - "type": "Canvas", - "width": 70399, - }, - }, - "Collection": {}, - "ContentResource": { - "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": { - "duration": 1801.055, - "format": "video/mp4", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", - "iiif-parser:hasPart": [ - { - "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", - "type": "Video", - }, - ], - "type": "Video", - "width": 640, - }, - "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg": { - "format": "image/jpeg", - "height": 31722, - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", - "type": "Image", - }, - ], - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", - "profile": "level1", - "type": "ImageService3", - }, - ], - "type": "Image", - "width": 70399, - }, - "vault://94602451": { - "format": "text/html", - "id": "vault://94602451", - "iiif-parser:hasPart": [ - { - "id": "vault://94602451", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", - "type": "TextualBody", - }, - ], - "language": "en", - "type": "TextualBody", - "value": "

Press Play

", - }, - "vault://a0ffc779": { - "format": "text/html", - "id": "vault://a0ffc779", - "iiif-parser:hasPart": [ - { - "id": "vault://a0ffc779", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", - "type": "TextualBody", - }, - ], - "language": "en", - "type": "TextualBody", - "value": "

Close your browser

", - }, - "vault://bea81c2d": { - "format": "text/html", - "id": "vault://bea81c2d", - "iiif-parser:hasPart": [ - { - "id": "vault://bea81c2d", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", - "type": "TextualBody", - }, - ], - "language": "en", - "type": "TextualBody", - "value": "

In 10 seconds, this text will be replaced by a clock and an image. You will have 30 seconds (shown on the clock) in which to take notes on the image you see. After 30 seconds, the image will be replaced by the start screen. You will not be responsible for the part of the image covered by the clock.

", + "type": "Manifest", + "viewingDirection": "left-to-right", }, - }, - "Manifest": { - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json": { - "@context": "http://iiif.io/api/presentation/3/context.json", + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json": { "accompanyingCanvas": null, "annotations": [], "behavior": [], "homepage": [], - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", - "iiif-parser:hasPart": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", - "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", - "type": "Manifest", - }, - ], - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", - "type": "Canvas", - }, - ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json", + "iiif-parser:isExternal": true, + "items": [], "label": { "en": [ - "Multimedia Canvas", + "A View of Trajan's Forum, Rome, 1821", ], }, "metadata": [], - "navDate": null, + "navDate": "1821-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.485869, + 41.895419, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/5", + "properties": { + "label": { + "en": [ + "A View of Trajan's Forum, Rome, 1821", + ], + }, + }, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/5", + "type": "FeatureCollection", + }, "partOf": [], "placeholderCanvas": null, "provider": [], @@ -34433,132 +34341,224 @@ exports[`Cookbook > Testing normalize %p (%p) 0489-multimedia-canvas https://iii }, "Range": {}, "Selector": {}, - "Service": { - "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004": { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", - "profile": "level1", - "type": "ImageService3", - }, - }, + "Service": {}, }, "mapping": { - "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": "ContentResource", - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image": "Annotation", - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video": "Annotation", - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text": "Annotation", - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text": "Annotation", - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text": "Annotation", - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas": "Canvas", - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json": "Manifest", - "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1": "AnnotationPage", - "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg": "ContentResource", - "vault://94602451": "ContentResource", - "vault://a0ffc779": "ContentResource", - "vault://bea81c2d": "ContentResource", + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json": "Collection", + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json": "Manifest", + "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json": "Manifest", }, "resource": { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", - "type": "Manifest", + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", + "type": "Collection", }, } `; -exports[`Cookbook > Testing normalize %p (%p) 0489-multimedia-canvas https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json 2`] = ` +exports[`Cookbook > Testing normalize %p (%p) 138`] = ` { - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", + "@context": [ + "http://iiif.io/api/extension/navplace/context.json", + "http://iiif.io/api/presentation/3/context.json", + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/collection.json", "items": [ { - "duration": 180, - "height": 31722, - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", - "items": [ - { - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", - "items": [ - { - "body": { - "format": "image/jpeg", - "height": 31722, - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", - "profile": "level1", - "type": "ImageService3", - }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-1.json", + "label": { + "en": [ + "Castel Sant'Angelo, Rome", + ], + }, + "navDate": "1776-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.4663, + 41.9031, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/1", + "properties": { + "label": { + "en": [ + "Castel Sant'Angelo, Rome", ], - "type": "Image", - "width": 70399, }, - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#t=11,42", - "type": "Annotation", }, - { - "body": { - "duration": 1801.055, - "format": "video/mp4", - "height": 360, - "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", - "type": "Video", - "width": 640, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/1", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-2.json", + "label": { + "en": [ + "The Colosseum", + ], + }, + "navDate": "1776-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.492222, + 41.890278, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/2", + "properties": { + "label": { + "en": [ + "The Colosseum", + ], }, - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=1000,500,5000,6000&t=11,42", - "type": "Annotation", }, - { - "body": { - "format": "text/html", - "language": "en", - "type": "TextualBody", - "value": "

Press Play

", + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/2", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-3.json", + "label": { + "en": [ + "The Arch of Titus from the Forum, Rome, ca. 1725", + ], + }, + "navDate": "1725-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.488585, + 41.890717, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/3", + "properties": { + "label": { + "en": [ + "The Arch of Titus from the Forum, Rome, ca. 1725", + ], }, - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=30200,10200,15000,5000&t=0,1", - "type": "Annotation", }, - { - "body": { - "format": "text/html", - "language": "en", - "type": "TextualBody", - "value": "

In 10 seconds, this text will be replaced by a clock and an image. You will have 30 seconds (shown on the clock) in which to take notes on the image you see. After 30 seconds, the image will be replaced by the start screen. You will not be responsible for the part of the image covered by the clock.

", + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/3", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-4.json", + "label": { + "en": [ + "The Temple of Vesta, Rome, 1849", + ], + }, + "navDate": "1849-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.4862, + 41.8917, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/4", + "properties": { + "label": { + "en": [ + "The Temple of Vesta, Rome, 1849", + ], }, - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=20220,5000,30000,5000&t=1,11", - "type": "Annotation", }, - { - "body": { - "format": "text/html", - "language": "en", - "type": "TextualBody", - "value": "

Close your browser

", + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/4", + "type": "FeatureCollection", + }, + "type": "Manifest", + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/manifest-5.json", + "label": { + "en": [ + "A View of Trajan's Forum, Rome, 1821", + ], + }, + "navDate": "1821-01-01T00:00:00+00:00", + "navPlace": { + "features": [ + { + "geometry": { + "coordinates": [ + 12.485869, + 41.895419, + ], + "type": "Point", + }, + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature/5", + "properties": { + "label": { + "en": [ + "A View of Trajan's Forum, Rome, 1821", + ], }, - "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", - "motivation": "painting", - "target": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=27000,10200,25000,5000&t=42,180", - "type": "Annotation", }, - ], - "type": "AnnotationPage", - }, - ], - "type": "Canvas", - "width": 70399, + "type": "Feature", + }, + ], + "id": "https://iiif.io/api/cookbook/recipe/0318-navPlace-navDate/feature-collection/5", + "type": "FeatureCollection", + }, + "type": "Manifest", }, ], "label": { "en": [ - "Multimedia Canvas", + "NavPlace and NavDate Collection", ], }, - "type": "Manifest", + "requiredStatement": { + "label": { + "en": [ + "Attribution", + ], + }, + "value": { + "en": [ + "Objects from the Yale Center for British Art", + ], + }, + }, + "summary": { + "en": [ + "A collection of items related to Rome.", + ], + }, + "type": "Collection", } `; diff --git a/__tests__/presentation-3-parser/iiif-traverse.test.ts b/__tests__/presentation-3-parser/iiif-traverse.test.ts index bff1667..1714135 100644 --- a/__tests__/presentation-3-parser/iiif-traverse.test.ts +++ b/__tests__/presentation-3-parser/iiif-traverse.test.ts @@ -1,5 +1,5 @@ import { Traverse } from '../../src/presentation-3'; -import { Canvas, Manifest } from '@iiif/presentation-3'; +import { Canvas, Manifest } from '../../src/presentation-3/types'; import accompanying from '../../fixtures/presentation-3/accompanying-canvas.json'; import hotspot from '../../fixtures/cookbook/0022-linking-with-a-hotspot.json'; diff --git a/__tests__/presentation-3-parser/normalize.test.ts b/__tests__/presentation-3-parser/normalize.test.ts index f3cd525..aa1885f 100644 --- a/__tests__/presentation-3-parser/normalize.test.ts +++ b/__tests__/presentation-3-parser/normalize.test.ts @@ -1,4 +1,4 @@ -import type { Manifest } from '@iiif/presentation-3'; +import type { Manifest } from '../../src/presentation-3/types'; import manifestFixture from '../../fixtures/2-to-3-converted/manifests/iiif.io__api__presentation__2.1__example__fixtures__1__manifest.json'; import p2ManifestWithStart from '../../fixtures/presentation-2/bl-manifest.json'; import nestedRanges from '../../fixtures/presentation-2/nested-ranges.json'; diff --git a/__tests__/presentation-3-parser/serializer.test.ts b/__tests__/presentation-3-parser/serializer.test.ts index 6ef27bb..00a9c08 100644 --- a/__tests__/presentation-3-parser/serializer.test.ts +++ b/__tests__/presentation-3-parser/serializer.test.ts @@ -1,5 +1,5 @@ import { normalize, serialize, serializeConfigPresentation2, serializeConfigPresentation3 } from '../../src'; -import { Collection, Manifest } from '@iiif/presentation-3'; +import { Collection, Manifest } from '../../src/presentation-3/types'; import hotspot from '../../fixtures/cookbook/0022-linking-with-a-hotspot.json'; describe('serializer', () => { diff --git a/__tests__/presentation-3-parser/strict-upgrade.test.ts b/__tests__/presentation-3-parser/strict-upgrade.test.ts index b98de90..b0822da 100644 --- a/__tests__/presentation-3-parser/strict-upgrade.test.ts +++ b/__tests__/presentation-3-parser/strict-upgrade.test.ts @@ -1,5 +1,5 @@ import { presentation3StrictUpgrade } from '../../src/presentation-3/strict-upgrade'; -import { Manifest } from '@iiif/presentation-3'; +import { Manifest } from '../../src/presentation-3/types'; function getBaseManifest(): Manifest { return { diff --git a/__tests__/presentation-3-parser/utilities.test.ts b/__tests__/presentation-3-parser/utilities.test.ts index 7e9297f..17fb078 100644 --- a/__tests__/presentation-3-parser/utilities.test.ts +++ b/__tests__/presentation-3-parser/utilities.test.ts @@ -1,5 +1,5 @@ import { compressSpecificResource } from '../../src/shared/compress-specific-resource'; -import { SpecificResource } from '@iiif/presentation-3'; +import { SpecificResource } from '../../src/presentation-3/types'; import { frameResource, WILDCARD } from '../../src'; describe('Misc Utilites', function () { diff --git a/__tests__/presentation-4-parser/cookbook.tests.ts b/__tests__/presentation-4-parser/cookbook.tests.ts new file mode 100644 index 0000000..fde5edd --- /dev/null +++ b/__tests__/presentation-4-parser/cookbook.tests.ts @@ -0,0 +1,42 @@ +import cookbookIndex from '../../fixtures/cookbook-v4/_index.json'; +import { promises as fs } from 'node:fs'; +import { join } from 'node:path'; +import { cwd } from 'node:process'; +import { describe, expect, test } from 'vitest'; +import { normalize, serialize, serializeConfigPresentation4, validatePresentation4 } from '../../src/presentation-4'; + +const { readFile } = fs; + +describe('Presentation 4 cookbook', function () { + const tests = Object.values(cookbookIndex as Record).map((item) => [ + item.id, + item.url, + ]); + + test.each(tests)('Testing normalize %p (%p)', async (id: string, url: string) => { + const json = await readFile(join(cwd(), 'fixtures/cookbook-v4', `${id}.json`)); + const manifest = JSON.parse(json.toString()); + const original = JSON.parse(json.toString()); + const normalized = normalize(manifest); + + expect(normalized.resource.type).toBe(manifest.type); + expect(normalized.resource.id).toBe(manifest.id); + + const report = validatePresentation4(manifest, { mode: 'tolerant' }); + const errors = report.issues.filter((issue) => issue.severity === 'error'); + expect(errors).toEqual([]); + + const reserialized = serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation4 + ) as any; + + expect(reserialized).toEqual(original); + expect(url).toEqual((cookbookIndex as any)[id].url); + }); +}); diff --git a/__tests__/presentation-4-parser/has-part-parity.test.ts b/__tests__/presentation-4-parser/has-part-parity.test.ts new file mode 100644 index 0000000..1abdf76 --- /dev/null +++ b/__tests__/presentation-4-parser/has-part-parity.test.ts @@ -0,0 +1,52 @@ +import { describe, expect, test } from "vitest"; +import { HAS_PART, normalize, PART_OF } from "../../src/presentation-4"; + +describe("presentation-4 hasPart parity", () => { + test("records framing metadata when the same resource diverges by parent context", () => { + const manifest = { + "@context": "http://iiif.io/api/presentation/4/context.json", + id: "https://example.org/manifest/has-part", + type: "Manifest", + label: { en: ["has part parity"] }, + items: [ + { + id: "https://example.org/canvas/1", + type: "Canvas", + width: 1000, + height: 1000, + thumbnail: [ + { + id: "https://example.org/image/shared.jpg", + type: "Image", + format: "image/jpeg", + }, + ], + }, + { + id: "https://example.org/canvas/2", + type: "Canvas", + width: 1000, + height: 1000, + thumbnail: [ + { + id: "https://example.org/image/shared.jpg", + type: "Image", + format: "image/jpeg", + width: 6000, + }, + ], + }, + ], + }; + + const result = normalize(manifest as any); + const image = result.entities.ContentResource["https://example.org/image/shared.jpg"] as any; + + expect(image).toBeTruthy(); + expect(Array.isArray(image[HAS_PART])).toBe(true); + + const partOf = (image[HAS_PART] as any[]).map((item) => item[PART_OF]); + expect(partOf).toContain("https://example.org/canvas/1"); + expect(partOf).toContain("https://example.org/canvas/2"); + }); +}); diff --git a/__tests__/presentation-4-parser/meta.test.ts b/__tests__/presentation-4-parser/meta.test.ts new file mode 100644 index 0000000..866ba29 --- /dev/null +++ b/__tests__/presentation-4-parser/meta.test.ts @@ -0,0 +1,85 @@ +import { describe, expect, test } from 'vitest'; +import { documentation, properties, resources } from '../../src/presentation-4/meta'; + +describe('presentation-4 meta generation', () => { + test('contains required class anchors', () => { + const requiredClasses = [ + 'Collection', + 'Manifest', + 'Timeline', + 'Canvas', + 'Scene', + 'Annotation', + 'AnnotationPage', + 'AnnotationCollection', + 'SpecificResource', + 'Range', + 'Agent', + 'Service', + 'Quantity', + 'ImageApiSelector', + 'PointSelector', + ] as const; + + for (const className of requiredClasses) { + const def = documentation.definedTypes[className]; + expect(def, `missing class ${className}`).toBeDefined(); + if (!def) { + continue; + } + expect(def.link).toBe(`${documentation.root}#${className}`); + expect(def.summary.length).toBeGreaterThan(0); + } + }); + + test('contains required property anchors', () => { + const requiredProperties = [ + 'id', + 'type', + 'label', + 'items', + 'annotations', + 'metadata', + 'summary', + 'requiredStatement', + 'rights', + 'provider', + 'thumbnail', + 'start', + 'structures', + 'behavior', + 'viewingDirection', + 'timeMode', + 'body', + 'target', + 'selector', + 'source', + 'service', + 'services', + ] as const; + + for (const property of requiredProperties) { + const def = documentation.properties[property]; + expect(def, `missing property ${property}`).toBeDefined(); + if (!def) { + continue; + } + expect(def.link).toBe(`${documentation.root}#${property}`); + expect(def.summary.length).toBeGreaterThan(0); + } + }); + + test('resource groups and property categories are deterministic', () => { + const sortedResources = [...resources.all].sort((a, b) => a.localeCompare(b)); + expect(resources.all).toEqual(sortedResources); + + const allGroupedResources = Object.values(resources.groups).flat(); + expect(new Set(allGroupedResources).size).toBe(resources.all.length); + + const sortedProperties = [...properties.all].sort((a, b) => a.localeCompare(b)); + expect(properties.all).toEqual(sortedProperties); + + const allCategorizedProperties = Object.values(properties.categories).flat(); + expect(new Set(allCategorizedProperties).size).toBe(properties.all.length); + }); +}); diff --git a/__tests__/presentation-4-parser/normalize.test.ts b/__tests__/presentation-4-parser/normalize.test.ts new file mode 100644 index 0000000..040cfb5 --- /dev/null +++ b/__tests__/presentation-4-parser/normalize.test.ts @@ -0,0 +1,56 @@ +import { readdirSync, readFileSync } from 'node:fs'; +import { join } from 'node:path'; +import { cwd } from 'node:process'; +import { describe, expect, test } from 'vitest'; +import { normalize } from '../../src/presentation-4'; + +const fixtureDir = join(cwd(), 'fixtures/presentation-4'); +const fixtureFiles = readdirSync(fixtureDir).filter((file) => file.endsWith('.json')); + +describe('presentation-4 normalize', () => { + test.each(fixtureFiles)('normalizes fixture %s', (fixtureName) => { + const fixture = JSON.parse(readFileSync(join(fixtureDir, fixtureName), 'utf8')); + const result = normalize(fixture); + + expect(result.resource.type).toBe('Manifest'); + expect(result.entities.Manifest[result.resource.id]).toBeTruthy(); + expect(Object.keys(result.mapping).length).toBeGreaterThan(1); + }); + + test('mints deterministic ids for missing resources in tolerant mode', () => { + const input = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + type: 'Manifest', + label: { en: ['No IDs'] }, + items: [ + { + type: 'Timeline', + duration: 15.5, + items: [ + { + type: 'AnnotationPage', + items: [ + { + type: 'Annotation', + motivation: 'painting', + body: { + type: 'Sound', + id: 'https://example.org/audio.mp3', + format: 'audio/mp3', + }, + target: 'https://example.org/timeline/1', + }, + ], + }, + ], + }, + ], + }; + + const result = normalize(input as any); + + expect(result.resource.id.startsWith('vault://iiif-parser/v4/Manifest/')).toBe(true); + expect(result.diagnostics.some((diagnostic) => diagnostic.code === 'minted-id')).toBe(true); + expect(Object.keys(result.entities.Timeline).length).toBe(1); + }); +}); diff --git a/__tests__/presentation-4-parser/normalized-defaults.test.ts b/__tests__/presentation-4-parser/normalized-defaults.test.ts new file mode 100644 index 0000000..9503d45 --- /dev/null +++ b/__tests__/presentation-4-parser/normalized-defaults.test.ts @@ -0,0 +1,173 @@ +import { describe, expect, test } from "vitest"; +import { normalize } from "../../src/presentation-4"; + +function expectArrayFields(resource: Record, keys: string[]) { + for (const key of keys) { + expect(Array.isArray(resource[key]), `${key} should default to array`).toBe(true); + } +} + +describe("presentation-4 normalized defaults", () => { + test("applies array defaults across normalized entities", () => { + const manifest = { + "@context": "http://iiif.io/api/presentation/4/context.json", + id: "https://example.org/manifest/defaults", + type: "Manifest", + label: { en: ["defaults"] }, + items: [ + { + id: "https://example.org/canvas/1", + type: "Canvas", + width: 1000, + height: 1000, + items: [ + { + id: "https://example.org/canvas/1/page/1", + type: "AnnotationPage", + items: [ + { + id: "https://example.org/canvas/1/annotation/1", + type: "Annotation", + motivation: ["painting"], + body: [ + { + id: "https://example.org/image/1/full/max/0/default.jpg", + type: "Image", + format: "image/jpeg", + service: [ + { + id: "https://example.org/image/1", + type: "ImageService3", + profile: "level1", + }, + ], + }, + ], + target: ["https://example.org/canvas/1#xywh=10,20,30,40"], + }, + ], + }, + ], + }, + ], + structures: [ + { + id: "https://example.org/range/1", + type: "Range", + label: { en: ["r1"] }, + }, + ], + }; + + const result = normalize(manifest as any); + + const normalizedManifest = result.entities.Manifest["https://example.org/manifest/defaults"] as Record< + string, + unknown + >; + expectArrayFields(normalizedManifest, [ + "items", + "structures", + "metadata", + "provider", + "thumbnail", + "behavior", + "seeAlso", + "service", + "services", + "homepage", + "rendering", + "partOf", + "annotations", + ]); + + const normalizedCanvas = result.entities.Canvas["https://example.org/canvas/1"] as Record; + expectArrayFields(normalizedCanvas, [ + "items", + "annotations", + "metadata", + "provider", + "thumbnail", + "behavior", + "seeAlso", + "service", + "services", + "homepage", + "rendering", + "partOf", + ]); + + const normalizedAnnotation = result.entities.Annotation["https://example.org/canvas/1/annotation/1"] as Record< + string, + unknown + >; + expectArrayFields(normalizedAnnotation, [ + "motivation", + "body", + "target", + "metadata", + "provider", + "thumbnail", + "behavior", + "seeAlso", + "service", + "services", + "homepage", + "rendering", + "partOf", + "annotations", + ]); + + const normalizedContentResource = result.entities.ContentResource[ + "https://example.org/image/1/full/max/0/default.jpg" + ] as Record; + expectArrayFields(normalizedContentResource, [ + "metadata", + "provider", + "thumbnail", + "behavior", + "seeAlso", + "service", + "services", + "homepage", + "rendering", + "partOf", + "annotations", + "language", + "items", + "selector", + "transform", + "action", + "provides", + ]); + + const normalizedRange = result.entities.Range["https://example.org/range/1"] as Record; + expectArrayFields(normalizedRange, [ + "items", + "metadata", + "provider", + "thumbnail", + "behavior", + "seeAlso", + "service", + "services", + "homepage", + "rendering", + "partOf", + "annotations", + ]); + expect((normalizedRange.items as unknown[]).length).toBe(0); + + const normalizedService = result.entities.Service["https://example.org/image/1"] as Record; + expectArrayFields(normalizedService, ["service"]); + expect(normalizedService.profile).toBe("level1"); + + const target = (normalizedAnnotation.target as Array>)[0]!; + const selector = Array.isArray(target.selector) ? target.selector[0] : target.selector; + const selectorEntity = result.entities.Selector[(selector as Record).id as string] as Record< + string, + unknown + >; + expectArrayFields(selectorEntity, ["selectors"]); + }); +}); diff --git a/__tests__/presentation-4-parser/performance.test.ts b/__tests__/presentation-4-parser/performance.test.ts new file mode 100644 index 0000000..74e4f45 --- /dev/null +++ b/__tests__/presentation-4-parser/performance.test.ts @@ -0,0 +1,127 @@ +import { performance } from 'node:perf_hooks'; +import { describe, expect, test } from 'vitest'; +import { normalize, serialize, serializeConfigPresentation4, validatePresentation4 } from '../../src/presentation-4'; + +function createLargeCanvasManifest(canvasCount = 200, annotationsPerCanvas = 4) { + return { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/iiif/perf/canvas-manifest', + type: 'Manifest', + label: { en: ['Large canvas manifest'] }, + items: Array.from({ length: canvasCount }).map((_, canvasIndex) => ({ + id: `https://example.org/iiif/perf/canvas/${canvasIndex + 1}`, + type: 'Canvas', + width: 4000, + height: 3000, + items: [ + { + id: `https://example.org/iiif/perf/canvas/${canvasIndex + 1}/page/1`, + type: 'AnnotationPage', + items: Array.from({ length: annotationsPerCanvas }).map((__, annotationIndex) => ({ + id: `https://example.org/iiif/perf/canvas/${canvasIndex + 1}/annotation/${annotationIndex + 1}`, + type: 'Annotation', + motivation: ['painting'], + body: [ + { + id: `https://example.org/iiif/perf/image/${canvasIndex + 1}-${annotationIndex + 1}.jpg`, + type: 'Image', + format: 'image/jpeg', + }, + ], + target: [ + { + id: `https://example.org/iiif/perf/canvas/${canvasIndex + 1}`, + type: 'Canvas', + }, + ], + })), + }, + ], + })), + }; +} + +function createLargeSceneManifest(sceneCount = 120, modelsPerScene = 3) { + return { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/iiif/perf/scene-manifest', + type: 'Manifest', + label: { en: ['Large scene manifest'] }, + items: Array.from({ length: sceneCount }).map((_, sceneIndex) => ({ + id: `https://example.org/iiif/perf/scene/${sceneIndex + 1}`, + type: 'Scene', + items: [ + { + id: `https://example.org/iiif/perf/scene/${sceneIndex + 1}/page/1`, + type: 'AnnotationPage', + items: Array.from({ length: modelsPerScene }).map((__, modelIndex) => ({ + id: `https://example.org/iiif/perf/scene/${sceneIndex + 1}/annotation/${modelIndex + 1}`, + type: 'Annotation', + motivation: ['painting'], + body: [ + { + id: `https://example.org/iiif/perf/model/${sceneIndex + 1}-${modelIndex + 1}.glb`, + type: 'Model', + format: 'model/gltf-binary', + }, + ], + target: [ + { + id: `https://example.org/iiif/perf/scene/${sceneIndex + 1}`, + type: 'Scene', + }, + ], + })), + }, + ], + })), + }; +} + +describe('presentation-4 performance scale tests', () => { + test('normalizes and serializes large canvas manifests', () => { + const manifest = createLargeCanvasManifest(); + const started = performance.now(); + const normalized = normalize(manifest); + const serialized = serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation4 + ); + const report = validatePresentation4(manifest, { mode: 'tolerant' }); + const elapsed = performance.now() - started; + + expect(report.valid).toBe(true); + expect(normalized.resource.type).toBe('Manifest'); + expect(serialized.id).toBe(manifest.id); + expect(Object.keys(normalized.mapping).length).toBeGreaterThan(1500); + expect(elapsed).toBeLessThan(20000); + }); + + test('normalizes and serializes large scene manifests', () => { + const manifest = createLargeSceneManifest(); + const started = performance.now(); + const normalized = normalize(manifest); + const serialized = serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation4 + ); + const report = validatePresentation4(manifest, { mode: 'tolerant' }); + const elapsed = performance.now() - started; + + expect(report.valid).toBe(true); + expect(normalized.resource.type).toBe('Manifest'); + expect(serialized.id).toBe(manifest.id); + expect(Object.keys(normalized.entities.Scene).length).toBe(120); + expect(elapsed).toBeLessThan(20000); + }); +}); diff --git a/__tests__/presentation-4-parser/serialize-v3-downgrade.test.ts b/__tests__/presentation-4-parser/serialize-v3-downgrade.test.ts new file mode 100644 index 0000000..3ce8338 --- /dev/null +++ b/__tests__/presentation-4-parser/serialize-v3-downgrade.test.ts @@ -0,0 +1,194 @@ +import { readFileSync } from 'node:fs'; +import { join } from 'node:path'; +import { cwd } from 'node:process'; +import { describe, expect, test } from 'vitest'; +import { + normalize, + serialize, + serializeConfigPresentation3, +} from '../../src/presentation-4'; + +describe('presentation-4 to presentation-3 downgrade serializer', () => { + test('downgrades Timeline to Canvas with minimal dimensions', () => { + const timelineManifest = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/iiif/timeline-manifest', + type: 'Manifest', + label: { en: ['Timeline'] }, + items: [ + { + id: 'https://example.org/iiif/timeline-1', + type: 'Timeline', + duration: 20, + items: [ + { + id: 'https://example.org/iiif/timeline-1/page', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/iiif/timeline-1/painting', + type: 'Annotation', + motivation: ['painting'], + body: [ + { + id: 'https://example.org/audio.mp3', + type: 'Sound', + format: 'audio/mp3', + }, + ], + target: ['https://example.org/iiif/timeline-1'], + }, + ], + }, + ], + }, + ], + }; + + const normalized = normalize(timelineManifest); + const serialized = serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation3 + ); + + expect(serialized['@context']).toEqual('http://iiif.io/api/presentation/3/context.json'); + expect(serialized.items[0].type).toEqual('Canvas'); + expect(serialized.items[0].width).toEqual(1); + expect(serialized.items[0].height).toEqual(1); + expect(serialized.items[0].duration).toEqual(20); + }); + + test('fails downgrade when Scene is present', () => { + const fixture = JSON.parse( + readFileSync(join(cwd(), 'fixtures/presentation-4/01-model-in-scene.json'), 'utf8') + ); + const normalized = normalize(fixture); + + expect(() => + serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation3 + ) + ).toThrow(/unsupported/i); + }); + + test('fails downgrade when activating annotations are present', () => { + const manifest = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/iiif/activating-manifest', + type: 'Manifest', + label: { en: ['Activating'] }, + items: [ + { + id: 'https://example.org/iiif/canvas/1', + type: 'Canvas', + width: 1000, + height: 1000, + items: [ + { + id: 'https://example.org/iiif/canvas/1/page/1', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/iiif/canvas/1/page/1/anno/1', + type: 'Annotation', + motivation: ['activating'], + body: [ + { + id: 'https://example.org/iiif/image/1.jpg', + type: 'Image', + format: 'image/jpeg', + }, + ], + target: ['https://example.org/iiif/canvas/1'], + }, + ], + }, + ], + }, + ], + }; + + const normalized = normalize(manifest); + + expect(() => + serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation3 + ) + ).toThrow(/activating/i); + }); + + test('fails downgrade when content has transform metadata', () => { + const manifest = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/iiif/transform-manifest', + type: 'Manifest', + label: { en: ['Transform'] }, + items: [ + { + id: 'https://example.org/iiif/canvas/2', + type: 'Canvas', + width: 1000, + height: 1000, + items: [ + { + id: 'https://example.org/iiif/canvas/2/page/1', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/iiif/canvas/2/page/1/anno/1', + type: 'Annotation', + motivation: ['painting'], + body: [ + { + id: 'https://example.org/iiif/image/2.jpg', + type: 'Image', + format: 'image/jpeg', + transform: [ + { + type: 'RotateTransform', + angle: 90, + }, + ], + }, + ], + target: ['https://example.org/iiif/canvas/2'], + }, + ], + }, + ], + }, + ], + }; + + const normalized = normalize(manifest); + + expect(() => + serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation3 + ) + ).toThrow(/transform/i); + }); +}); diff --git a/__tests__/presentation-4-parser/serialize-v4.test.ts b/__tests__/presentation-4-parser/serialize-v4.test.ts new file mode 100644 index 0000000..52ef4b0 --- /dev/null +++ b/__tests__/presentation-4-parser/serialize-v4.test.ts @@ -0,0 +1,28 @@ +import { readFileSync } from 'node:fs'; +import { join } from 'node:path'; +import { cwd } from 'node:process'; +import { describe, expect, test } from 'vitest'; +import { normalize, serialize, serializeConfigPresentation4 } from '../../src/presentation-4'; + +describe('presentation-4 serializer', () => { + test('serializes normalized v4 back to a v4 manifest', () => { + const fixture = JSON.parse( + readFileSync(join(cwd(), 'fixtures/presentation-4/01-model-in-scene.json'), 'utf8') + ); + const normalized = normalize(fixture); + + const serialized = serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation4 + ); + + expect(serialized['@context']).toEqual('http://iiif.io/api/presentation/4/context.json'); + expect(serialized.type).toEqual('Manifest'); + expect(Array.isArray(serialized.items)).toBe(true); + }); +}); diff --git a/__tests__/presentation-4-parser/service-profile-retention.test.ts b/__tests__/presentation-4-parser/service-profile-retention.test.ts new file mode 100644 index 0000000..b8be975 --- /dev/null +++ b/__tests__/presentation-4-parser/service-profile-retention.test.ts @@ -0,0 +1,91 @@ +import { describe, expect, test } from 'vitest'; +import { normalize, serialize, serializeConfigPresentation3, serializeConfigPresentation4 } from '../../src/presentation-4'; + +function createManifestWithImageService() { + return { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/manifest/service-profile', + type: 'Manifest', + label: { en: ['service profile retention'] }, + items: [ + { + id: 'https://example.org/canvas/1', + type: 'Canvas', + width: 1000, + height: 1000, + items: [ + { + id: 'https://example.org/canvas/1/page/1', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/canvas/1/annotation/1', + type: 'Annotation', + motivation: ['painting'], + body: [ + { + id: 'https://example.org/image/1/full/max/0/default.jpg', + type: 'Image', + format: 'image/jpeg', + service: [ + { + id: 'https://example.org/image/1', + type: 'ImageService3', + profile: 'level1', + }, + ], + }, + ], + target: ['https://example.org/canvas/1'], + }, + ], + }, + ], + }, + ], + }; +} + +describe('presentation-4 service profile retention', () => { + test('keeps service profile when serializing to presentation-4', () => { + const normalized = normalize(createManifestWithImageService() as any); + const storedService = normalized.entities.Service['https://example.org/image/1'] as any; + expect(storedService.profile).toBe('level1'); + + const serialized = serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation4 + ); + + const serializedService = serialized.items[0].items[0].items[0].body[0].service[0]; + expect(serializedService.id).toBe('https://example.org/image/1'); + expect(serializedService.type).toBe('ImageService3'); + expect(serializedService.profile).toBe('level1'); + }); + + test('keeps service profile when downgrading to presentation-3', () => { + const normalized = normalize(createManifestWithImageService() as any); + + const serialized = serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation3 + ); + + const body = serialized.items[0].items[0].items[0].body; + const serializedBody = Array.isArray(body) ? body[0] : body; + const serializedService = serializedBody.service[0]; + expect(serializedService.id).toBe('https://example.org/image/1'); + expect(serializedService.type).toBe('ImageService3'); + expect(serializedService.profile).toBe('level1'); + }); +}); diff --git a/__tests__/presentation-4-parser/smoke.tests.ts b/__tests__/presentation-4-parser/smoke.tests.ts new file mode 100644 index 0000000..4460be8 --- /dev/null +++ b/__tests__/presentation-4-parser/smoke.tests.ts @@ -0,0 +1,48 @@ +import { promises } from 'node:fs'; +import { cwd } from 'node:process'; +import { join } from 'node:path'; +import { describe, expect } from 'vitest'; +import { normalize, serialize, serializeConfigPresentation4, validatePresentation4 } from '../../src/presentation-4'; + +const { readFile, readdir } = promises; + +describe('Presentation 4 smoke tests', async () => { + const skipThese = [ + // Contains intentionally cyclic references in `partOf` metadata. + '10-directional-light-rotated.json', + ]; + + const files = await readdir(join(cwd(), 'fixtures/presentation-4')); + const tests = files + .filter((item) => item.endsWith('.json') && !skipThese.includes(item)) + .map((item) => [item]); + + test.each(tests)('Smoke test: ./fixtures/presentation-4/%s', (async (id: string) => { + const json = await readFile(join(cwd(), 'fixtures/presentation-4', `${id}`)); + const jsonString = json.toString(); + const manifest = JSON.parse(jsonString); + const result = normalize(manifest); + + expect(result.resource.type).toEqual('Manifest'); + expect(result.entities.Manifest[result.resource.id]).toBeTruthy(); + + const report = validatePresentation4(manifest, { mode: 'tolerant' }); + expect(Array.isArray(report.issues)).toBe(true); + + const reserialized = serialize( + { + mapping: result.mapping as any, + entities: result.entities as any, + requests: {}, + }, + result.resource, + serializeConfigPresentation4 + ) as any; + + expect(reserialized).toHaveProperty('type'); + expect(reserialized).toHaveProperty('id'); + expect(reserialized.type).toEqual(manifest.type); + expect(reserialized.id).toEqual(manifest.id); + expect(reserialized['@context']).toEqual('http://iiif.io/api/presentation/4/context.json'); + }) as any); +}); diff --git a/__tests__/presentation-4-parser/specific-resource-parity.test.ts b/__tests__/presentation-4-parser/specific-resource-parity.test.ts new file mode 100644 index 0000000..89f787e --- /dev/null +++ b/__tests__/presentation-4-parser/specific-resource-parity.test.ts @@ -0,0 +1,155 @@ +import { describe, expect, test } from "vitest"; +import { normalize, serialize, serializeConfigPresentation4 } from "../../src/presentation-4"; + +describe("presentation-4 specific resource parity", () => { + test("coerces start, range items, and annotation target for v3 input and keeps selectors", () => { + const manifest = { + "@context": "http://iiif.io/api/presentation/3/context.json", + id: "https://example.org/manifest/p3-upgrade", + type: "Manifest", + label: { en: ["p3 specific resource parity"] }, + start: "https://example.org/canvas/1#t=5,15", + items: [ + { + id: "https://example.org/canvas/1", + type: "Canvas", + width: 1000, + height: 1000, + items: [ + { + id: "https://example.org/canvas/1/page/1", + type: "AnnotationPage", + items: [ + { + id: "https://example.org/canvas/1/annotation/1", + type: "Annotation", + motivation: "painting", + body: { + id: "https://example.org/image/1.jpg", + type: "Image", + format: "image/jpeg", + }, + target: "https://example.org/canvas/1#xywh=10,20,30,40", + }, + ], + }, + ], + }, + ], + structures: [ + { + id: "https://example.org/range/1", + type: "Range", + items: ["https://example.org/canvas/1#t=0,10"], + }, + ], + }; + + const result = normalize(manifest as any); + const normalizedManifest = result.entities.Manifest["https://example.org/manifest/p3-upgrade"] as any; + const normalizedRange = result.entities.Range["https://example.org/range/1"] as any; + const normalizedAnnotation = result.entities.Annotation["https://example.org/canvas/1/annotation/1"] as any; + const normalizedTarget = Array.isArray(normalizedAnnotation.target) + ? normalizedAnnotation.target[0] + : normalizedAnnotation.target; + const startSelector = Array.isArray(normalizedManifest.start.selector) + ? normalizedManifest.start.selector[0] + : normalizedManifest.start.selector; + const rangeSelector = Array.isArray(normalizedRange.items[0].selector) + ? normalizedRange.items[0].selector[0] + : normalizedRange.items[0].selector; + const targetSelector = Array.isArray(normalizedTarget.selector) + ? normalizedTarget.selector[0] + : normalizedTarget.selector; + + expect(normalizedManifest.start.type).toBe("SpecificResource"); + expect(normalizedManifest.start.source.id).toBe("https://example.org/canvas/1"); + expect(startSelector.type).toBe("FragmentSelector"); + expect(startSelector.value).toBe("t=5,15"); + + expect(normalizedRange.items[0].type).toBe("SpecificResource"); + expect(normalizedRange.items[0].source.id).toBe("https://example.org/canvas/1"); + expect(rangeSelector.type).toBe("FragmentSelector"); + expect(rangeSelector.value).toBe("t=0,10"); + + expect(normalizedTarget.type).toBe("SpecificResource"); + expect(normalizedTarget.source.id).toBe("https://example.org/canvas/1"); + expect(targetSelector.type).toBe("FragmentSelector"); + expect(targetSelector.value).toBe("xywh=10,20,30,40"); + + const selectorId = targetSelector.id; + if (selectorId) { + expect(result.entities.Selector[selectorId]).toBeTruthy(); + expect(result.mapping[selectorId]).toBe("Selector"); + } else { + expect(Object.keys(result.entities.Selector).length).toBeGreaterThan(0); + } + }); + + test("preserves selector through normalize and serialize for native p4 fragment targets", () => { + const manifest = { + "@context": "http://iiif.io/api/presentation/4/context.json", + id: "https://example.org/manifest/p4-fragment-target", + type: "Manifest", + label: { en: ["native p4 selector parity"] }, + items: [ + { + id: "https://example.org/canvas/1", + type: "Canvas", + width: 1000, + height: 1000, + items: [ + { + id: "https://example.org/canvas/1/page/1", + type: "AnnotationPage", + items: [ + { + id: "https://example.org/canvas/1/annotation/1", + type: "Annotation", + motivation: ["commenting"], + body: [ + { + type: "Text", + id: "https://example.org/body/1", + format: "text/plain", + }, + ], + target: ["https://example.org/canvas/1#xywh=11,22,33,44"], + }, + ], + }, + ], + }, + ], + }; + + const normalized = normalize(manifest as any); + const annotation = normalized.entities.Annotation["https://example.org/canvas/1/annotation/1"] as any; + const target = annotation.target[0]; + const targetSelector = Array.isArray(target.selector) ? target.selector[0] : target.selector; + + expect(target.type).toBe("SpecificResource"); + expect(target.source.id).toBe("https://example.org/canvas/1"); + expect(targetSelector.type).toBe("FragmentSelector"); + expect(targetSelector.value).toBe("xywh=11,22,33,44"); + + const serialized = serialize( + { + entities: normalized.entities as any, + mapping: normalized.mapping as any, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation4 + ); + const serializedTarget = serialized.items[0].items[0].items[0].target[0]; + const serializedSelector = Array.isArray(serializedTarget.selector) + ? serializedTarget.selector[0] + : serializedTarget.selector; + + expect(serializedTarget.type).toBe("SpecificResource"); + expect(serializedTarget.source.id).toBe("https://example.org/canvas/1"); + expect(serializedSelector.type).toBe("FragmentSelector"); + expect(serializedSelector.value).toBe("xywh=11,22,33,44"); + }); +}); diff --git a/__tests__/presentation-4-parser/traverse.test.ts b/__tests__/presentation-4-parser/traverse.test.ts new file mode 100644 index 0000000..45c4017 --- /dev/null +++ b/__tests__/presentation-4-parser/traverse.test.ts @@ -0,0 +1,78 @@ +import { readFileSync } from "node:fs"; +import { join } from "node:path"; +import { cwd } from "node:process"; +import { describe, expect, test } from "vitest"; +import { Traverse } from "../../src/presentation-4"; + +describe("presentation-4 traverse", () => { + test("dispatches callbacks across mixed resource types", () => { + const fixture = JSON.parse( + readFileSync(join(cwd(), "fixtures/presentation-4/21-scene-within-canvas.json"), "utf8") + ); + + const seen = { + manifest: 0, + scene: 0, + canvas: 0, + range: 0, + annotationPage: 0, + annotation: 0, + selector: 0, + contentResource: 0, + }; + + const traverse = new Traverse({ + manifest: [() => void (seen.manifest += 1)], + scene: [() => void (seen.scene += 1)], + canvas: [() => void (seen.canvas += 1)], + range: [() => void (seen.range += 1)], + annotationPage: [() => void (seen.annotationPage += 1)], + annotation: [() => void (seen.annotation += 1)], + selector: [() => void (seen.selector += 1)], + contentResource: [() => void (seen.contentResource += 1)], + }); + + traverse.traverseUnknown(fixture, { path: "$" }); + + expect(seen.manifest).toBeGreaterThan(0); + expect(seen.scene).toBeGreaterThan(0); + expect(seen.canvas).toBeGreaterThan(0); + expect(seen.range).toBeGreaterThan(0); + expect(seen.annotationPage).toBeGreaterThan(0); + expect(seen.annotation).toBeGreaterThan(0); + expect(seen.selector).toBeGreaterThan(0); + expect(seen.contentResource).toBeGreaterThan(0); + }); + + test("traverses selector on implicit specific resource annotation target", () => { + let selectorCount = 0; + const traverse = new Traverse({ + selector: [() => void (selectorCount += 1)], + }); + + const annotation = { + id: "https://example.org/anno/1", + type: "Annotation", + motivation: ["painting"], + target: [ + { + source: { + id: "https://example.org/canvas/1", + type: "Canvas", + }, + selector: { + type: "FragmentSelector", + value: "xywh=10,20,30,40", + }, + }, + ], + }; + + const traversed = traverse.traverseAnnotation(annotation, undefined, "$.annotation"); + const target = traversed.target[0]; + + expect(target.type).toBe("SpecificResource"); + expect(target.selector[0].type).toBe("FragmentSelector"); + expect(selectorCount).toBe(1); + }); +}); diff --git a/__tests__/presentation-4-parser/upgrade.test.ts b/__tests__/presentation-4-parser/upgrade.test.ts new file mode 100644 index 0000000..23ee577 --- /dev/null +++ b/__tests__/presentation-4-parser/upgrade.test.ts @@ -0,0 +1,138 @@ +import { readFileSync } from 'node:fs'; +import { join } from 'node:path'; +import { cwd } from 'node:process'; +import { describe, expect, test } from 'vitest'; +import { upgradePresentation3To4, upgradeToPresentation4 } from '../../src/presentation-4'; + +const PRESENTATION_4_CONTEXT = 'http://iiif.io/api/presentation/4/context.json'; + +describe('presentation-4 upgrade', () => { + test('upgrades v3 shape to v4 annotation arrays and container naming', () => { + const v3Manifest = { + '@context': 'http://iiif.io/api/presentation/3/context.json', + id: 'https://example.org/manifest/v3', + type: 'Manifest', + label: { en: ['v3'] }, + items: [ + { + id: 'https://example.org/canvas/1', + type: 'Canvas', + width: 1000, + height: 1000, + placeholderCanvas: { + id: 'https://example.org/placeholder', + type: 'Canvas', + width: 100, + height: 100, + }, + items: [ + { + id: 'https://example.org/page/1', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/anno/1', + type: 'Annotation', + motivation: 'painting', + body: { + id: 'https://example.org/image.jpg', + type: 'Image', + format: 'image/jpeg', + }, + target: 'https://example.org/canvas/1', + }, + ], + }, + ], + }, + ], + }; + + const upgraded = upgradePresentation3To4(v3Manifest) as any; + + expect(upgraded['@context']).toEqual(PRESENTATION_4_CONTEXT); + expect(upgraded.items[0].placeholderContainer).toBeTruthy(); + expect(upgraded.items[0].placeholderCanvas).toBeUndefined(); + + const annotation = upgraded.items[0].items[0].items[0]; + expect(Array.isArray(annotation.motivation)).toBe(true); + expect(Array.isArray(annotation.body)).toBe(true); + expect(Array.isArray(annotation.target)).toBe(true); + expect(annotation.target[0]).toEqual({ + id: 'https://example.org/canvas/1', + type: 'Canvas', + }); + }); + + test('upgrades v2 content through v3 into v4 context', () => { + const v2Manifest = JSON.parse( + readFileSync(join(cwd(), 'fixtures/presentation-2/iiif-fixture-manifest.json'), 'utf8') + ); + + const upgraded = upgradeToPresentation4(v2Manifest) as any; + + expect(upgraded['@context']).toEqual(PRESENTATION_4_CONTEXT); + expect(upgraded.type).toEqual('Manifest'); + expect(Array.isArray(upgraded.items)).toBe(true); + }); + + test('keeps v4 resources as v4 while coercing legacy annotation fields', () => { + const v4Manifest = JSON.parse( + readFileSync(join(cwd(), 'fixtures/presentation-4/01-model-in-scene.json'), 'utf8') + ); + const upgraded = upgradeToPresentation4(v4Manifest) as any; + expect(upgraded['@context']).toEqual(PRESENTATION_4_CONTEXT); + expect(upgraded.type).toEqual('Manifest'); + }); + + test('infers target type for missing-type target objects and fragments', () => { + const manifest = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/manifest/v4-targets', + type: 'Manifest', + label: { en: ['v4 targets'] }, + items: [ + { + id: 'https://example.org/scene/1', + type: 'Scene', + items: [ + { + id: 'https://example.org/scene/1/page', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/scene/1/anno/1', + type: 'Annotation', + motivation: ['painting'], + body: [ + { + id: 'https://example.org/model/1.glb', + type: 'Model', + }, + ], + target: [ + 'https://example.org/scene/1#t=0,10', + { + id: 'https://example.org/scene/1/page', + }, + ], + }, + ], + }, + ], + }, + ], + }; + + const upgraded = upgradeToPresentation4(manifest) as any; + const targets = upgraded.items[0].items[0].items[0].target; + expect(targets[0]).toEqual({ + id: 'https://example.org/scene/1#t=0,10', + type: 'Scene', + }); + expect(targets[1]).toEqual({ + id: 'https://example.org/scene/1/page', + type: 'AnnotationPage', + }); + }); +}); diff --git a/__tests__/presentation-4-parser/validator.test.ts b/__tests__/presentation-4-parser/validator.test.ts new file mode 100644 index 0000000..11ccbf9 --- /dev/null +++ b/__tests__/presentation-4-parser/validator.test.ts @@ -0,0 +1,211 @@ +import { readFileSync } from 'node:fs'; +import { join } from 'node:path'; +import { cwd } from 'node:process'; +import { describe, expect, test } from 'vitest'; +import { upgradeToPresentation4, validatePresentation4 } from '../../src/presentation-4'; + +describe('presentation-4 validator', () => { + test('reports raw-shape issues for authored v4 fixtures', () => { + const fixture = JSON.parse( + readFileSync(join(cwd(), 'fixtures/presentation-4/01-model-in-scene.json'), 'utf8') + ); + const report = validatePresentation4(fixture); + + expect(report.valid).toBe(false); + expect(report.issues.some((issue) => issue.code === 'annotation-target-array')).toBe(true); + expect(report.issues.some((issue) => issue.code === 'annotation-body-array')).toBe(true); + }); + + test('accepts the same fixture after v4 coercion', () => { + const fixture = JSON.parse( + readFileSync(join(cwd(), 'fixtures/presentation-4/01-model-in-scene.json'), 'utf8') + ); + const coerced = upgradeToPresentation4(fixture); + const report = validatePresentation4(coerced); + + expect(report.valid).toBe(true); + expect(report.stats.errors).toBe(0); + }); + + test('reports structural validation issues', () => { + const invalid = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/manifest/invalid', + type: 'Manifest', + label: { en: ['invalid'] }, + items: [ + { + id: 'https://example.org/canvas/1', + type: 'Canvas', + width: 0, + height: -10, + items: [], + }, + ], + }; + + const report = validatePresentation4(invalid); + + expect(report.valid).toBe(false); + expect(report.issues.some((issue) => issue.code === 'canvas-width-required')).toBe(true); + expect(report.issues.some((issue) => issue.code === 'canvas-height-required')).toBe(true); + }); + + test('throws in strict mode when errors are present', () => { + const invalid = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/manifest/invalid-2', + type: 'Manifest', + label: { en: ['invalid'] }, + items: [], + }; + + expect(() => validatePresentation4(invalid, { mode: 'strict' })).toThrow(); + }); + + test('reports activating annotation body errors', () => { + const invalid = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/manifest/activating-invalid', + type: 'Manifest', + label: { en: ['invalid activating'] }, + items: [ + { + id: 'https://example.org/canvas/1', + type: 'Canvas', + width: 1000, + height: 1000, + items: [ + { + id: 'https://example.org/canvas/1/page/1', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/canvas/1/page/1/anno/1', + type: 'Annotation', + motivation: ['activating'], + body: [ + { + id: 'https://example.org/bodies/plain-text', + type: 'Text', + value: 'not a specific resource', + }, + ], + target: ['https://example.org/canvas/1'], + }, + ], + }, + ], + }, + ], + }; + + const report = validatePresentation4(invalid, { mode: 'tolerant' }); + expect(report.valid).toBe(false); + expect(report.issues.some((issue) => issue.code === 'activating-body-specific-resource')).toBe(true); + }); + + test('reports selector and quantity-shape issues', () => { + const invalid = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/manifest/selector-invalid', + type: 'Manifest', + label: { en: ['invalid selector'] }, + items: [ + { + id: 'https://example.org/scene/1', + type: 'Scene', + items: [ + { + id: 'https://example.org/scene/1/page', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/scene/1/anno/1', + type: 'Annotation', + motivation: ['painting'], + body: [ + { + id: 'https://example.org/content/model.glb', + type: 'Model', + format: 'model/gltf-binary', + spatialScale: { + type: 'Text', + value: 'wrong', + }, + }, + ], + target: [ + { + type: 'SpecificResource', + source: 'https://example.org/scene/1', + selector: [ + { + type: 'Spatial', + value: '0,0,100,100', + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }; + + const report = validatePresentation4(invalid, { mode: 'tolerant' }); + expect(report.valid).toBe(false); + expect(report.issues.some((issue) => issue.code === 'selector-type-invalid')).toBe(true); + expect(report.issues.some((issue) => issue.code === 'spatial-scale-quantity')).toBe(true); + }); + + test('reports target object type/id requirements', () => { + const invalid = { + '@context': 'http://iiif.io/api/presentation/4/context.json', + id: 'https://example.org/manifest/target-shape', + type: 'Manifest', + label: { en: ['target shape'] }, + items: [ + { + id: 'https://example.org/canvas/1', + type: 'Canvas', + width: 1000, + height: 1000, + items: [ + { + id: 'https://example.org/canvas/1/page/1', + type: 'AnnotationPage', + items: [ + { + id: 'https://example.org/canvas/1/page/1/anno/1', + type: 'Annotation', + motivation: ['painting'], + body: [ + { + id: 'https://example.org/image.jpg', + type: 'Image', + format: 'image/jpeg', + }, + ], + target: [ + { + id: 'https://example.org/canvas/1', + }, + 'https://example.org/canvas/1#xywh=0,0,100,100', + ], + }, + ], + }, + ], + }, + ], + }; + + const report = validatePresentation4(invalid, { mode: 'tolerant' }); + expect(report.valid).toBe(false); + expect(report.issues.some((issue) => issue.code === 'annotation-target-type-required')).toBe(true); + expect(report.issues.some((issue) => issue.code === 'annotation-target-object')).toBe(true); + }); +}); diff --git a/__tests__/presentation-types/helpers.test.ts b/__tests__/presentation-types/helpers.test.ts new file mode 100644 index 0000000..ec268b6 --- /dev/null +++ b/__tests__/presentation-types/helpers.test.ts @@ -0,0 +1,95 @@ +import { describe, expect, test } from 'vitest'; +import { + cast as cast2, + infer as infer2, + narrow as narrow2, + type Manifest as Manifest2, + type ContentResource as ContentResource2, +} from '../../src/presentation-2/types'; +import { + cast as cast3, + infer as infer3, + narrow as narrow3, + type Manifest as Manifest3, + type ContentResource as ContentResource3, +} from '../../src/presentation-3/types'; +import { + cast as cast4, + infer as infer4, + narrow as narrow4, + type Manifest as Manifest4, + type ContentResourceLike as ContentResource4, +} from '../../src/presentation-4/types'; +import { infer as infer3FromEntry } from '../../src/presentation-3'; +import * as Presentation3Normalized from '../../src/presentation-3-normalized'; +import * as Presentation4Normalized from '../../src/presentation-4-normalized'; + +describe('presentation helper APIs', () => { + test('v3 supports satisfies + infer', () => { + const manifest = { + id: 'https://example.org/manifest', + type: 'Manifest', + label: { en: ['Example'] }, + items: [], + } satisfies Manifest3; + + const inferred = infer3.Manifest(manifest); + expect(inferred.type).toBe('Manifest'); + }); + + test('v2 supports satisfies + infer', () => { + const manifest = { + '@id': 'https://example.org/p2/manifest', + '@type': 'sc:Manifest', + label: 'Example', + sequences: [], + } satisfies Manifest2; + + const inferred = infer2.Manifest(manifest); + expect(inferred['@type']).toBe('sc:Manifest'); + }); + + test('v4 supports satisfies + infer', () => { + const manifest = { + id: 'https://example.org/p4/manifest', + type: 'Manifest', + label: { en: ['Example'] }, + items: [], + } satisfies Manifest4; + + const inferred = infer4.Manifest(manifest); + expect(inferred.type).toBe('Manifest'); + }); + + test('cast validates discriminants', () => { + expect(() => cast3.Manifest({ id: 'x', type: 'Canvas' })).toThrow(TypeError); + expect(() => cast2.Manifest({ '@id': 'x', '@type': 'sc:Canvas' })).toThrow(TypeError); + expect(() => cast4.Manifest({ id: 'x', type: 'Canvas' })).toThrow(TypeError); + }); + + test('narrow guards content resources', () => { + const resource3: ContentResource3 = { id: 'https://example.org/image.jpg', type: 'Image' } as ContentResource3; + const resource2: ContentResource2 = { '@id': 'https://example.org/image.jpg', '@type': 'dctypes:Image' } as ContentResource2; + const resource4: ContentResource4 = { id: 'https://example.org/image.jpg', type: 'Image', width: 100, height: 100 }; + + expect(narrow3.isImage(resource3)).toBe(true); + expect(narrow2.isImage(resource2)).toBe(true); + expect(narrow4.isImage(resource4)).toBe(true); + }); + + test('generic byType guard works', () => { + const isCanvas = narrow3.byType('Canvas'); + expect(isCanvas({ id: 'https://example.org/canvas/1', type: 'Canvas' })).toBe(true); + expect(isCanvas({ id: 'https://example.org/manifest/1', type: 'Manifest' })).toBe(false); + }); + + test('presentation-3 and presentation-3/types expose same helper surface', () => { + expect(typeof infer3FromEntry.Manifest).toBe('function'); + expect(infer3FromEntry.Manifest).toBe(infer3.Manifest); + }); + + test('normalized entrypoints are type-only at runtime', () => { + expect((Presentation3Normalized as Record).infer).toBeUndefined(); + expect((Presentation4Normalized as Record).infer).toBeUndefined(); + }); +}); diff --git a/__tests__/presentation-types/p4-converted-from-p3-manifest-types.test.ts b/__tests__/presentation-types/p4-converted-from-p3-manifest-types.test.ts new file mode 100644 index 0000000..36ea4fc --- /dev/null +++ b/__tests__/presentation-types/p4-converted-from-p3-manifest-types.test.ts @@ -0,0 +1,207297 @@ +import { describe, expect, test } from 'vitest'; +import type { Manifest as Manifest4 } from '../../src/presentation-4/types'; + +// Generated by scripts/generate-p3-to-p4-type-test.mjs from fixtures/3-to-4-converted. +const manifestsByFixture = { + "2_to_3_converted_manifests_british_library_manifest": { + "label": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "Digital Store 12603.h.15." + ] + } + }, + { + "label": { + "@none": [ + "Held by" + ] + }, + "value": { + "@none": [ + "The British Library" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]" + ] + } + }, + { + "label": { + "@none": [ + "Creator" + ] + }, + "value": { + "@none": [ + "Dickens, Charles" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Undetermined" + ] + } + }, + { + "label": { + "@none": [ + "Catalogue record" + ] + }, + "value": { + "@none": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "@none": [ + "Digitised from" + ] + }, + "value": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]." + ] + } + }, + { + "label": { + "@none": [ + "Citation" + ] + }, + "value": { + "@none": [ + "Dickens, Charles, The Works of Charles Dickens. Household edition. [With illustrations.] <http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E>" + ] + } + }, + { + "label": { + "@none": [ + "Digitised by" + ] + }, + "value": { + "@none": [ + "The British Library" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Item supplied by the British Library" + ] + } + } + ], + "service": [ + { + "profile": "http://iiif.io/api/auth/0/login", + "description": "Some content may only be available to registered readers or staff. Please log-in to The British Library to continue.", + "header": "Please Log-In", + "label": "Login to The British Library", + "service": [ + { + "profile": "http://iiif.io/api/auth/0/token", + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1" + } + ], + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1" + }, + { + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this item", + "service": [ + { + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words in this item", + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E/autocomplete", + "type": "AutoCompleteService1" + } + ], + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E", + "type": "SearchService1" + }, + { + "profile": "http://universalviewer.io/share-extensions-profile", + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_00000004216E", + "type": "Service" + }, + { + "profile": "http://universalviewer.io/feedback-extensions-profile", + "id": "http://access.bl.uk/item/feedback/ark:/81055/vdc_00000004216E", + "type": "Service" + }, + { + "profile": "http://universalviewer.io/print-extensions-profile", + "id": "http://access.bl.uk/item/print/ark:/81055/vdc_00000004216E", + "type": "Service" + } + ], + "logo": [ + { + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "Image" + } + ], + "thumbnail": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg" + } + ], + "structures": [ + { + "label": { + "@none": [ + "Section" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000001", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000002", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Table of Contents" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000003", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Table of Contents" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000004", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Section" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000005", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "type": "Canvas" + } + ] + } + ], + "type": "Manifest", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "rights": "https://creativecommons.org/publicdomain/mark/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Public Domain

" + ] + } + }, + "homepage": { + "format": "text/html", + "label": { + "@none": [ + "View at the British Library" + ] + }, + "type": "Text", + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E" + }, + "items": [ + { + "label": { + "@none": [ + "1" + ] + }, + "width": 2181, + "height": 2920, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000001" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000001" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da433b74-66b1-492d-b9d8-74211014f1ca", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 2181, + "height": 2920, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/585ba371-e4e1-43ab-88b0-8c66134e7c0f" + } + ] + }, + { + "label": { + "@none": [ + "2" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000002" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000002" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000002", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0711498-a018-4898-96e3-d3e8c8912ace", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000002", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000002", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000002/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b38853c-7017-4225-af80-f4f897b30dcb" + } + ] + }, + { + "label": { + "@none": [ + "3" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000003" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000003" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000003", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/498fee95-3536-4383-b38a-80748089749d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000003", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000003", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000003/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0af8204d-f90e-43d3-b6a9-e6b4335e177e" + } + ] + }, + { + "label": { + "@none": [ + "4" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000004" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000004" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000004", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9efc111-ca14-41ae-acf0-834963d6f47a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000004", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000004", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000004/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cec65202-79c2-46db-b781-511197dceb3d" + } + ] + }, + { + "label": { + "@none": [ + "5" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000005" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000005" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000005", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9d629865-7fe6-4138-baa2-5e5dce67647a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000005", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000005", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000005/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e6264e62-e58f-498e-bf50-9e4149818780" + } + ] + }, + { + "label": { + "@none": [ + "6" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000006" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000006" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000006", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0287dccb-4332-4a9b-8d0e-e9f405b60859", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000006", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000006", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000006/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f50cfa04-4d9f-424f-9bfc-d56dde6ed175" + } + ] + }, + { + "label": { + "@none": [ + "7" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000007" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000007" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/89df135d-0174-421d-8444-47ac3c93a583", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d9254ea9-f8cd-498a-84a9-e902eccd9a53" + } + ] + }, + { + "label": { + "@none": [ + "8" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000008" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000008" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000008", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8845d269-552d-4cef-829b-b09f56376612", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000008", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000008", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000008/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce5f6132-3681-45bb-a850-b195896c29e0" + } + ] + }, + { + "label": { + "@none": [ + "9" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000009" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000009" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000009", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1238b83-be0c-4be0-9780-1f246e1171ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000009", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000009", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000009/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/680bd37f-87c3-4094-80ab-f578cec4ec0e" + } + ] + }, + { + "label": { + "@none": [ + "10" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ed01f254-f080-40c6-8fa1-8940936d77bc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67b7fc21-c203-4417-b4ee-465e0ffe68e5" + } + ] + }, + { + "label": { + "@none": [ + "11" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e56058c-57c4-417e-a7fc-58f28ee72592", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eaf4a25b-aa87-4e0d-8f78-5d1e36cca45c" + } + ] + }, + { + "label": { + "@none": [ + "12" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b7a8ab22-d13f-4cd3-9d5a-87fcac11bacb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84c47e6b-e7ce-4bdc-9f5c-959625dde74c" + } + ] + }, + { + "label": { + "@none": [ + "13" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7bcd5316-ae97-4e38-baa2-521f2d717b6a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/380fb8c5-82fb-4661-a74d-7526de92e03c" + } + ] + }, + { + "label": { + "@none": [ + "14" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e7a7bcde-84c7-4451-bc64-065344397459", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0191df8-60f7-4fb4-9d73-29b98c9d55b7" + } + ] + }, + { + "label": { + "@none": [ + "15" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5293bdcc-2c4a-4f65-8e90-4ba1a849c616", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0adbd173-0533-4dfd-b907-2353d8cd1721" + } + ] + }, + { + "label": { + "@none": [ + "16" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000010" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000010" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000010", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a6b6397f-18ed-40b6-bbb8-4c01fbee74b4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000010", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000010", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000010/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19528ad3-90c5-4ad3-93c3-2815aa2b46ad" + } + ] + }, + { + "label": { + "@none": [ + "17" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000011" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000011" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000011", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dfb32a65-45aa-4eb9-b459-cc9a7ace71bb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000011", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000011", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000011/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ec365dcc-9b01-4ca5-8ed8-531435f26903" + } + ] + }, + { + "label": { + "@none": [ + "18" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000012" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000012" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000012", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/264efb5e-68c4-45f4-8e82-b85f8ead88ff", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000012", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000012", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000012/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dab00122-897b-485d-97f5-eed23a9730e7" + } + ] + }, + { + "label": { + "@none": [ + "19" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000013" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000013" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000013", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/03d38b7d-9389-4d0a-bd43-d1d1e0dddde7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000013", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000013", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000013/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8336d80b-c2e9-4fa3-b987-bd5e2b36a74b" + } + ] + }, + { + "label": { + "@none": [ + "20" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000014" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000014" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000014", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9d50824b-589f-4695-a350-afe454967aeb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000014", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000014", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000014/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/046bcee3-d1c9-45df-bacb-a27833145c0e" + } + ] + }, + { + "label": { + "@none": [ + "21" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000015" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000015" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000015", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d4c2da42-e9d0-41c0-b2b1-5d1caa70dbb6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000015", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000015", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000015/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72f476c1-1fa8-45d5-b58a-52fa5b718b2f" + } + ] + }, + { + "label": { + "@none": [ + "22" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000016" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000016" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000016", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/22790fee-6814-4641-9e7e-79df8772d5e9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000016", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000016", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000016/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd5c81cd-1ba6-47d1-a681-931486ca71b9" + } + ] + }, + { + "label": { + "@none": [ + "23" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000017" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000017" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000017", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2aff8742-ec5a-460d-ae1d-dc9d18dc7aa4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000017", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000017", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000017/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee5148fa-0004-4e23-b9af-5dcac37a061c" + } + ] + }, + { + "label": { + "@none": [ + "24" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000018" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000018" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000018", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/37fe7ba5-182d-4f15-86a5-eb3493152cad", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000018", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000018", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000018/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ce9feff-7ae8-4a36-bfce-c07f58e46cbd" + } + ] + }, + { + "label": { + "@none": [ + "25" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000019" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000019" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000019", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a0c21f03-d85c-4f12-93f6-8ee9114435a8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000019", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000019", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000019/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38129349-9f78-4438-802a-6554eb07d866" + } + ] + }, + { + "label": { + "@none": [ + "26" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d14ceb95-b599-4ba8-bb3b-f75e86e88cd8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10514069-dd14-485e-94d6-9b33e3e681d3" + } + ] + }, + { + "label": { + "@none": [ + "27" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/add2616b-99c4-413e-af1f-c188ddf7aab4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed7205ae-5cc0-4ecb-a7db-d04248562a2d" + } + ] + }, + { + "label": { + "@none": [ + "28" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eabd14d6-0b4b-410e-8d06-116c231ef2d7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14537400-b05a-4128-8be1-4206a1de201c" + } + ] + }, + { + "label": { + "@none": [ + "29" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8f266e1e-ea44-4cf5-b9d5-548c911977df", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e5654ab-1c66-42fd-a296-8007b907e7bd" + } + ] + }, + { + "label": { + "@none": [ + "30" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/71f26dff-d7b3-4e9c-a6b9-1001497d3141", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83401f76-4bd5-411f-b793-8d4ff1debc99" + } + ] + }, + { + "label": { + "@none": [ + "31" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f748b76c-a2d6-48c7-863e-5c3cf604956f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/66fc2d7c-d394-449a-8da8-a14fc0d47349" + } + ] + }, + { + "label": { + "@none": [ + "32" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000020" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000020" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000020", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4bf61f8f-d7f0-42b2-a23a-66b87935d594", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000020", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000020", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000020/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/256a5d56-68f0-4a6b-a65d-5ee5013c25ee" + } + ] + }, + { + "label": { + "@none": [ + "33" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000021" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000021" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000021", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fcc9e2fb-16fe-41b5-b059-2713a28c9a18", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000021", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000021", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000021/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2d1cfaf-7055-4ae8-96db-adda2c2a9b49" + } + ] + }, + { + "label": { + "@none": [ + "34" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000022" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000022" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000022", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1359cd6-b369-48a6-98ef-7d1737300b52", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000022", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000022", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000022/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c5efeb1-2302-48c5-98ab-a0796f78ce30" + } + ] + }, + { + "label": { + "@none": [ + "35" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000023" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000023" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000023", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/993e5ea0-811d-454d-b2ed-89e127fb2a21", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000023", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000023", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000023/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5190050-6053-472d-a30b-d60675827ad7" + } + ] + }, + { + "label": { + "@none": [ + "36" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000024" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000024" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000024", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1234dfc7-06ff-4240-810a-c815371ef997", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000024", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000024", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000024/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25fc5c10-7e2b-4e84-aa4c-fc0296f08554" + } + ] + }, + { + "label": { + "@none": [ + "37" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000025" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000025" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000025", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0c90749-485c-4d68-b9e9-a5261f85915f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000025", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000025", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000025/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/186e905b-8f37-4d3f-b634-2a6a3341150d" + } + ] + }, + { + "label": { + "@none": [ + "38" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000026" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000026" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000026", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/95ba3889-bb95-4a4d-bfe6-cd0b8238d280", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000026", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000026", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000026/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/069487ad-adcc-488c-984c-9fd5800c45b1" + } + ] + }, + { + "label": { + "@none": [ + "39" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000027" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000027" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000027", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/266c9dc4-1aa4-464c-b6fa-16f3de7810c7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000027", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000027", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000027/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd0d25c7-45ca-4358-90d4-8d6c50a50e9a" + } + ] + }, + { + "label": { + "@none": [ + "40" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000028" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000028" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000028", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/02785277-9a7c-462f-bbc0-8e332abc6559", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000028", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000028", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000028/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9d79789-e750-4c6c-b2eb-317d0819faa5" + } + ] + }, + { + "label": { + "@none": [ + "41" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000029" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000029" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000029", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bf3c9e9-3f7a-49cb-b357-d127f0b0974f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000029", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000029", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000029/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a00633a7-e05b-414a-86df-ece144fca93a" + } + ] + }, + { + "label": { + "@none": [ + "42" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3e92ecb9-70c7-4503-89c0-1b4fd821cc13", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3455f38b-bd7e-4ad8-9115-1f6cc5ec1b56" + } + ] + }, + { + "label": { + "@none": [ + "43" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6df704df-256a-4edb-9a94-c33e2ebcfdfb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c9592f5-a2bc-44bd-a5d4-e96758afa13b" + } + ] + }, + { + "label": { + "@none": [ + "44" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e541093-e1c2-4633-b4a3-dee5d22de132", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a13e289-1616-49ba-831e-35d1a53e7bb8" + } + ] + }, + { + "label": { + "@none": [ + "45" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0ec4876b-3c29-46bd-ba04-48b4aa5cf7c3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3a85837-10e1-4d42-9674-5c4736b5f953" + } + ] + }, + { + "label": { + "@none": [ + "46" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/546be2b6-4fef-492b-918d-e69b9d3040ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e7bad36-057c-423d-b63c-a0cfb8bff6f5" + } + ] + }, + { + "label": { + "@none": [ + "47" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1e4b5953-3bce-4cbd-8353-f53675e0364e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b08e51cd-f218-4ee5-a580-da4b920a236d" + } + ] + }, + { + "label": { + "@none": [ + "48" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000030" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000030" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000030", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/71a60200-f47c-4ab0-baa8-07587c4ebdcc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000030", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000030", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000030/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55341bc4-96fe-4fda-b205-d2fd9ee3b5bc" + } + ] + }, + { + "label": { + "@none": [ + "49" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000031" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000031" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000031", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ed6d197d-d3d1-4128-9052-4d2c654e59a4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000031", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000031", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000031/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4232afb-49f4-4b33-a8a6-e90c8544ae37" + } + ] + }, + { + "label": { + "@none": [ + "50" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000032" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000032" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000032", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2f7f27f7-0afa-4903-9941-00b481d36fb5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000032", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000032", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000032/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a9dd586-cae0-49eb-9731-8abd6ffcc606" + } + ] + }, + { + "label": { + "@none": [ + "51" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000033" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000033" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000033", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5e4aac97-beef-4261-adef-edc1866bac94", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000033", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000033", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000033/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e6499e2-ea1d-47fb-a43f-f0098ffb0957" + } + ] + }, + { + "label": { + "@none": [ + "52" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000034" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000034" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000034", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b55894f9-952e-4476-a01c-a8f1fdacae08", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000034", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000034", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000034/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17ceb238-926a-454e-98b1-63a34e28f5df" + } + ] + }, + { + "label": { + "@none": [ + "53" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000035" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000035" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000035", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fa3f9880-7f83-4cd6-ba7c-06f0883b69a5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000035", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000035", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000035/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef47bfc0-ef55-4177-a5d8-19ee88eeb2b0" + } + ] + }, + { + "label": { + "@none": [ + "54" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000036" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000036" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000036", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6092393c-f24e-4f7d-a1d9-7361dc5e58ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000036", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000036", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000036/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c2a8ae51-6954-46b9-b152-dfe34efe06d8" + } + ] + }, + { + "label": { + "@none": [ + "55" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000037" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000037" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000037", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bcd52be9-5a09-4161-a7bd-689a88feae35", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000037", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000037", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000037/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3f64f97e-46bc-40c7-a00e-25126304f444" + } + ] + }, + { + "label": { + "@none": [ + "56" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000038" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000038" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000038", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d3d3f067-10df-4f88-acc8-610f484d2ddb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000038", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000038", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000038/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6bc54031-e885-494f-9414-29bb4c444659" + } + ] + }, + { + "label": { + "@none": [ + "57" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000039" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000039" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000039", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/662649d3-1f45-45fd-8533-8f9ea5b40f3c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000039", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000039", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000039/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd312495-3bd0-4226-b446-38f6670ac025" + } + ] + }, + { + "label": { + "@none": [ + "58" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/980237d6-95bd-4214-b541-2dd28eed18b0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f308ca67-1558-4849-911c-5df11aecdc28" + } + ] + }, + { + "label": { + "@none": [ + "59" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7ba198b7-4dbd-4338-b3ff-3962c7418a05", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/045ddfa9-a089-4164-813e-e49a01ef98db" + } + ] + }, + { + "label": { + "@none": [ + "60" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/877ae5b4-4063-4bc9-9e54-06beb97541ec", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/670b60a9-67b9-49bd-ac36-2e3bc05768ea" + } + ] + }, + { + "label": { + "@none": [ + "61" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/05c06c05-378f-48a0-86cb-1827d692e7e4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/789f4225-4e18-4dee-95a5-a9da85ccb906" + } + ] + }, + { + "label": { + "@none": [ + "62" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/259e1ff9-bc47-4057-91e4-414e89d0e382", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/913bc93e-0b61-4e29-bad8-b36ec95548b7" + } + ] + }, + { + "label": { + "@none": [ + "63" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2c73828f-3125-4339-a396-4e0da1f907ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/221ddbd3-c5a4-4053-aa22-ec6d950c356f" + } + ] + }, + { + "label": { + "@none": [ + "64" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000040" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000040" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000040", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/46be6873-e09b-452a-906c-89f6a8676376", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000040", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000040", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000040/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08db5c3e-5ff4-471e-baff-26bc7552ca8a" + } + ] + }, + { + "label": { + "@none": [ + "65" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000041" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000041" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000041", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/624484be-bf69-4fd6-b88d-402b86f63c8d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000041", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000041", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000041/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/daac813f-116b-4e54-ab65-72cfbf5b6618" + } + ] + }, + { + "label": { + "@none": [ + "66" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000042" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000042" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000042", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/823d9e75-ebd2-4660-96ad-e75a82ec0026", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000042", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000042", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000042/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/de616e66-d822-49e4-b511-da6934db1271" + } + ] + }, + { + "label": { + "@none": [ + "67" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000043" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000043" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000043", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/339f11db-f774-4fa8-8d44-3bbc14959b49", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000043", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000043", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000043/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/047fb5a8-68ca-43b1-90ea-08b242289ab7" + } + ] + }, + { + "label": { + "@none": [ + "68" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000044" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000044" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000044", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a83cf294-6d32-41d3-b2ff-607aeb60dc9b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000044", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000044", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000044/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6a1fd2c-bed3-4e1e-94d7-9da7eda16026" + } + ] + }, + { + "label": { + "@none": [ + "69" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000045" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000045" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000045", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1793141-6a7b-4e2e-8f2c-b5d03109c2bb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000045", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000045", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000045/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/121f68e6-594b-4c1d-8ef1-0fa3fc08f23b" + } + ] + }, + { + "label": { + "@none": [ + "70" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000046" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000046" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000046", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce84edb0-45af-4572-a288-cf7682d080d5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000046", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000046", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000046/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/019cf56f-8066-49d5-8211-b7328f4a9354" + } + ] + }, + { + "label": { + "@none": [ + "71" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000047" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000047" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000047", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b4fda78-cbea-4d5c-bb93-e7cd16cb32c4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000047", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000047", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000047/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee10db73-bbc7-42f4-aeed-8eb6f68d0cb7" + } + ] + }, + { + "label": { + "@none": [ + "72" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000048" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000048" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000048", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0bdfbb81-fc0b-47c9-bf79-34133de77182", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000048", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000048", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000048/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1b1cea0-c3a8-4781-9411-c8dbcb85e167" + } + ] + }, + { + "label": { + "@none": [ + "73" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000049" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000049" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000049", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da02d5cb-2a08-48e3-aa3f-14a8a47a2a13", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000049", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000049", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000049/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a7ae578-edaf-4729-b07e-a8d7d75db060" + } + ] + }, + { + "label": { + "@none": [ + "74" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0efbfd9b-775f-4990-a924-1a8d9fcd255e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10a2b8fa-b659-4e93-9c55-db8251e4b748" + } + ] + }, + { + "label": { + "@none": [ + "75" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eac3827b-3bd5-4455-a2a3-6fcc346ce19c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be8d00ba-26a3-4a38-86b6-29f7486b7954" + } + ] + }, + { + "label": { + "@none": [ + "76" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b013f26-4e39-422d-b7e6-0d496708fdc6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f4decf6-3c5a-47f9-9da7-fddf96b5c084" + } + ] + }, + { + "label": { + "@none": [ + "77" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a7f07cec-2584-4522-b2f5-01acd2b50230", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9486061f-67d5-40e2-b4bc-5f21b407fee2" + } + ] + }, + { + "label": { + "@none": [ + "78" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/14920365-c173-4d17-81fd-c836fc8a308e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c766e9a-a480-4972-9578-8edd18215091" + } + ] + }, + { + "label": { + "@none": [ + "79" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/539be5b5-43cb-4da8-8ef7-f56a55c841fd", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e999327-060e-45c1-9e09-49f9277f6260" + } + ] + }, + { + "label": { + "@none": [ + "80" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000050" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000050" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000050", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/21ea66aa-9894-41fe-9d0c-8dfb31647e13", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000050", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000050", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000050/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0694289e-27ab-4d3c-a909-5442514f8f4a" + } + ] + }, + { + "label": { + "@none": [ + "81" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000051" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000051" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000051", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3707d477-6e10-4acb-92c8-595c44a90539", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000051", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000051", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000051/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58a40a5e-e495-40a0-8915-9813421c9ede" + } + ] + }, + { + "label": { + "@none": [ + "82" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000052" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000052" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000052", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/98798aa7-ed09-4d29-a170-e790b2890e88", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000052", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000052", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000052/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73ee84a4-8ffe-4739-b88a-2595ba4f1d65" + } + ] + }, + { + "label": { + "@none": [ + "83" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000053" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000053" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000053", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a638ac65-d040-40a9-8c5b-799c3debdbda", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000053", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000053", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000053/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a5c16ce-b2fa-44ea-a173-c8ce43ce646a" + } + ] + }, + { + "label": { + "@none": [ + "84" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000054" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000054" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000054", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/de430558-6d1f-4b69-9aae-87173be304ed", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000054", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000054", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000054/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7755a1ef-726f-4d50-a2b1-292cdc772ac5" + } + ] + }, + { + "label": { + "@none": [ + "85" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000055" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000055" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000055", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d7d3e28e-b730-42ca-b073-cb4842e6c7ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000055", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000055", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000055/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d5ca504-8a0d-439d-9346-9f7891d8a8ef" + } + ] + }, + { + "label": { + "@none": [ + "86" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000056" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000056" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000056", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4cf84a02-e677-4025-af54-0c4a95d688a1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000056", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000056", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000056/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/276cdb17-a3ec-4d6e-9753-86d1235aa244" + } + ] + }, + { + "label": { + "@none": [ + "87" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000057" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000057" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000057", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d70f43a9-6f23-469a-a2ff-4819cb9ae042", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000057", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000057", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000057/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99ef32e1-bb0e-44fd-a175-11f661a2a176" + } + ] + }, + { + "label": { + "@none": [ + "88" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000058" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000058" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000058", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/60b60444-23de-4f41-85e5-3ac14cb1f1ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000058", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000058", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000058/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90bff9e1-f326-48d9-98ac-7b9e3ee28b61" + } + ] + }, + { + "label": { + "@none": [ + "89" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000059" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000059" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000059", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/37b3020a-2bfb-4e67-9a34-069ddece0032", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000059", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000059", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000059/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06e0b9f8-7b34-443e-979d-aeee481dd202" + } + ] + }, + { + "label": { + "@none": [ + "90" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9fe879a1-4bef-41af-ba9d-902f3f0f4f78", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bcbde1ef-7520-4fbb-a0f9-199fe0e4bd89" + } + ] + }, + { + "label": { + "@none": [ + "91" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/08d15daf-b500-44b1-9aad-bc9b96731e73", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e7fbb03-b9d8-4196-bbfc-23cafb8ed93b" + } + ] + }, + { + "label": { + "@none": [ + "92" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/214e33db-c8f3-4679-b26c-f64df2455070", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f922f300-dd15-4ff7-9abd-fdd082e1870f" + } + ] + }, + { + "label": { + "@none": [ + "93" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/490858c3-dff3-4083-b1a6-03972e20d157", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf875106-bd96-4895-b946-8bfd83f353dc" + } + ] + }, + { + "label": { + "@none": [ + "94" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ede230d7-cc66-48ae-bfcf-302c32f7d1d6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ed20f72-1665-461e-8158-46e4d802c140" + } + ] + }, + { + "label": { + "@none": [ + "95" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9cd09cc-b711-450e-be4c-1e9e573d1192", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97e24780-491a-4592-ab16-9f005de249f5" + } + ] + }, + { + "label": { + "@none": [ + "96" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000060" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000060" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000060", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cab98c19-06f5-49a0-be8b-34f539138079", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000060", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000060", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000060/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5577707a-ec5e-499d-826e-4cfaf8252cbc" + } + ] + }, + { + "label": { + "@none": [ + "97" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000061" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000061" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000061", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ef6d0c6e-a98b-4670-ae8f-434a505ff746", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000061", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000061", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000061/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/819a5433-44bc-45fd-a959-031b5f47decd" + } + ] + }, + { + "label": { + "@none": [ + "98" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000062" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000062" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000062", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/56381e6c-1781-498e-8e26-4dab758103e2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000062", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000062", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000062/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6abb7299-ad32-403b-b306-fa80a53d7b85" + } + ] + }, + { + "label": { + "@none": [ + "99" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000063" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000063" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000063", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3baf4e8a-2571-4986-98b0-9f29846e73ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000063", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000063", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000063/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65dbd81b-f69d-4e64-a0ba-6c4e6e4296a2" + } + ] + }, + { + "label": { + "@none": [ + "100" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000064" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000064" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000064", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e6228c53-960f-4f36-9b6b-5990acbcf1a6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000064", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000064", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000064/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8cf63b3a-deef-41a8-89de-5246504238a4" + } + ] + }, + { + "label": { + "@none": [ + "101" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000065" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000065" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000065", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/882beeb3-7c3a-4f47-8bc5-bfe3de911a4b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000065", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000065", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000065/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/194c483f-b78a-46e1-a85f-7b34bbb23b5f" + } + ] + }, + { + "label": { + "@none": [ + "102" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000066" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000066" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000066", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/16cd8c6d-0753-4be4-8e30-c91264a19d54", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000066", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000066", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000066/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/620287ef-13fa-412f-bf54-5005da52eb5a" + } + ] + }, + { + "label": { + "@none": [ + "103" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000067" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000067" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000067", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7b8f593b-9294-49ed-86f7-322301f19293", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000067", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000067", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000067/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62bc30bf-ee83-468a-9bdc-186148c57756" + } + ] + }, + { + "label": { + "@none": [ + "104" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000068" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000068" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000068", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/47ed2381-0051-4b3e-972f-5de61a2836fb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000068", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000068", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000068/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba4b82cd-e78c-4cf3-80e6-bafee24d3529" + } + ] + }, + { + "label": { + "@none": [ + "105" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000069" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000069" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000069", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/adf5228b-208e-4bc5-aa22-88b965dfd216", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000069", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000069", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000069/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dde6c217-e3b6-4db2-8f01-2d22f76c322f" + } + ] + }, + { + "label": { + "@none": [ + "106" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/057e563e-debc-4be9-b533-f0e409605a91", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ec077410-688f-4a01-9ada-2528fba19474" + } + ] + }, + { + "label": { + "@none": [ + "107" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bd003225-c6f7-4ec1-91a2-c4ee2b9c7e3d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd79a7a3-0cb9-4018-b441-a6e219874983" + } + ] + }, + { + "label": { + "@none": [ + "108" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e85f88cb-6d38-4da2-a149-000bcc4cf443", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/feb6eb87-1dbe-4bb8-887f-5e2f835d53f0" + } + ] + }, + { + "label": { + "@none": [ + "109" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/421b8c2d-1d87-423c-8e0d-9a795f999022", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3469b4f8-2bd2-42bf-a03e-b70661a98a11" + } + ] + }, + { + "label": { + "@none": [ + "110" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b61ff23-d633-40f9-8e6d-f4dceba5ce50", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0702b86b-8229-4939-b2f7-abc427a8831b" + } + ] + }, + { + "label": { + "@none": [ + "111" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2750bb72-180b-4568-bf9f-4d0bfb341c1f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55c374f1-a398-4fa3-bb81-8ff9d95f1c73" + } + ] + }, + { + "label": { + "@none": [ + "112" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000070" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000070" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000070", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7e2cdc89-6e21-4c0a-a98b-8b3c337e0638", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000070", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000070", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000070/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39967969-5297-407c-86c6-f256616490fe" + } + ] + }, + { + "label": { + "@none": [ + "113" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000071" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000071" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000071", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d0fb421f-47cf-4441-a620-8613c2ed09d1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000071", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000071", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000071/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85741449-bc3a-459c-bedd-05da4473f905" + } + ] + }, + { + "label": { + "@none": [ + "114" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000072" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000072" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000072", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9ad42a7-ad73-44e3-ba08-df23200a240e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000072", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000072", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000072/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61beb0e7-e49b-483d-b86f-666c42b07756" + } + ] + }, + { + "label": { + "@none": [ + "115" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000073" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000073" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000073", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7d461786-fe7e-47c3-a5f4-c870e8582afb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000073", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000073", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000073/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e0710fc-5580-4dda-bf61-93a46539ee9b" + } + ] + }, + { + "label": { + "@none": [ + "116" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000074" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000074" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000074", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/593343b2-0a8f-4dad-ae41-c43d166a172d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000074", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000074", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000074/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4fe434f1-4d9d-4b88-a8f8-b063b505d7f0" + } + ] + }, + { + "label": { + "@none": [ + "117" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000075" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000075" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000075", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1c786de7-bc06-409a-855a-4ccc87afbd56", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000075", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000075", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000075/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a3c07e6-4dbc-4c5b-8b82-9708bd8671ac" + } + ] + }, + { + "label": { + "@none": [ + "118" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000076" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000076" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000076", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b5f00d75-45e8-4bc3-a4e9-51e610017ded", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000076", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000076", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000076/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0830a794-eabe-4e2f-9369-7beeecf9086f" + } + ] + }, + { + "label": { + "@none": [ + "119" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000077" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000077" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000077", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c1eb53ce-8cb3-4796-ab76-316caadab3ae", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000077", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000077", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000077/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36909ecb-eab4-4069-8e49-a49a230b65dd" + } + ] + }, + { + "label": { + "@none": [ + "120" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000078" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000078" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000078", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e4f89fef-f58b-4de1-ba18-55613ef6353a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000078", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000078", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000078/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/247a3fa5-adf8-4770-a2e6-0d3d2301e5e0" + } + ] + }, + { + "label": { + "@none": [ + "121" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000079" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000079" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000079", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/01f5a009-9ca6-4ba8-bfe7-cdfdc9caa5a4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000079", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000079", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000079/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/965167d2-f913-480d-ba05-0cd6d967367a" + } + ] + }, + { + "label": { + "@none": [ + "122" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2eea4589-70e3-4577-a73d-996847615d3f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/511a9f61-1118-4272-ab85-13f78780b1a0" + } + ] + }, + { + "label": { + "@none": [ + "123" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6eea439d-a1c7-4a90-af1e-2e8339045151", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e49eb2af-4b85-4c44-8229-d8e4c2fe0d59" + } + ] + }, + { + "label": { + "@none": [ + "124" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/469e440e-b6c2-4db5-a686-031d5f600387", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d187575-12ec-4d7d-ab0b-f249a8156f55" + } + ] + }, + { + "label": { + "@none": [ + "125" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ead2546f-6508-45e4-95f0-e90d6df13c2f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1be3b9c-c00b-48e0-bba0-e141a35f868b" + } + ] + }, + { + "label": { + "@none": [ + "126" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/77f29f92-9835-40aa-b46b-76a7d87bd7f8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/16724668-bf85-4c44-bc2e-9e27974469b6" + } + ] + }, + { + "label": { + "@none": [ + "127" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/44256d2b-78d2-4cb5-ba25-c86a0325c277", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a43df2df-2c89-4f49-81dc-e2d996cc28bc" + } + ] + }, + { + "label": { + "@none": [ + "128" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000080" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000080" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000080", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4d338bda-ff4b-4c72-96d7-12e4d6047c4e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000080", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000080", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000080/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/828b7c94-ca19-4bf5-a71a-a916cb9b762f" + } + ] + }, + { + "label": { + "@none": [ + "129" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000081" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000081" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000081", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1cc0d01e-f840-4343-9112-592837e496d8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000081", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000081", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000081/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a71e5f0-a28d-4d31-809c-9bec885e7e83" + } + ] + }, + { + "label": { + "@none": [ + "130" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000082" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000082" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000082", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/304ec8bf-c09d-4531-adc6-5231eff5ab71", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000082", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000082", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000082/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2107f898-f962-40ed-be62-683db98281fd" + } + ] + }, + { + "label": { + "@none": [ + "131" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000083" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000083" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000083", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8435c2f7-77a0-45fe-acf1-1f0e40c412d1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000083", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000083", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000083/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88e9161c-4c35-46cf-b3b8-87e30857c02e" + } + ] + }, + { + "label": { + "@none": [ + "132" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000084" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000084" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000084", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/41e65df7-49ff-4afc-bd82-a878cfdb7fd7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000084", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000084", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000084/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8a9f090-3396-4024-a955-27eb0bd511d8" + } + ] + }, + { + "label": { + "@none": [ + "133" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000085" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000085" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000085", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1c4f3cc5-bab4-4963-a442-2d665260ee12", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000085", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000085", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000085/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/78e46fa7-a512-419a-9113-aaa4ad4ea1aa" + } + ] + }, + { + "label": { + "@none": [ + "134" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000086" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000086" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000086", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6c42f13d-6859-418e-92f8-ab05fd436e43", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000086", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000086", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000086/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/76c51c95-1073-430c-9e19-218d724abda4" + } + ] + }, + { + "label": { + "@none": [ + "135" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000087" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000087" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000087", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/79b2bae3-ebb2-4e8f-997e-8364f98faa23", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000087", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000087", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000087/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/030c8721-7937-4675-846f-af2ee665c22b" + } + ] + }, + { + "label": { + "@none": [ + "136" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000088" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000088" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000088", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ffff345c-976a-4107-a01b-3c84a7a63427", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000088", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000088", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000088/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b27e1991-e24e-47ff-87a5-8b2642a11412" + } + ] + }, + { + "label": { + "@none": [ + "137" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000089" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000089" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000089", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cc322838-011b-468c-9b58-34fa8a768198", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000089", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000089", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000089/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62344fb7-c414-4f07-bfd2-44679c5e2115" + } + ] + }, + { + "label": { + "@none": [ + "138" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/11699a02-d043-4cd5-ba7d-f6a18d61ccd9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be3fccff-fcad-4249-ac45-53c385e78611" + } + ] + }, + { + "label": { + "@none": [ + "139" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1471e8f4-fc67-4de4-b877-505922cf6b40", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f861180-6240-473f-ba53-b5d1bb3d7ea9" + } + ] + }, + { + "label": { + "@none": [ + "140" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/871eacec-2a5c-4421-ba1c-d743e002fcfa", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee10b9e8-d1b7-4888-8893-7b4069965ebd" + } + ] + }, + { + "label": { + "@none": [ + "141" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd611f2c-d517-42fd-9192-7bb6e3f29d53", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f737a18-b3ef-4ec0-97b6-940affede978" + } + ] + }, + { + "label": { + "@none": [ + "142" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0fe368ea-e25c-4d95-844e-115b2fbb4181", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bbf7746-1c53-423c-af34-58a9f708d3d2" + } + ] + }, + { + "label": { + "@none": [ + "143" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5dd0d4ba-5b27-4e36-bcc5-94760288e363", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/89d6df26-e15d-4e5f-9293-d0be3a8afe75" + } + ] + }, + { + "label": { + "@none": [ + "144" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000090" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000090" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000090", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/419b2897-f481-44d5-8d7b-2d77f98b20d8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000090", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000090", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000090/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5cd5d20e-8826-4e2a-8d78-9794ed6de5e8" + } + ] + }, + { + "label": { + "@none": [ + "145" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000091" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000091" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000091", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4baf15f3-21de-4457-9457-a9a164181beb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000091", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000091", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000091/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6aa8f115-c4c5-4d88-8556-7b795aafb7f4" + } + ] + }, + { + "label": { + "@none": [ + "146" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000092" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000092" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000092", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1827973-a8aa-49d6-bfa4-7868d6cec813", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000092", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000092", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000092/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39914388-47d9-44e0-be84-9d435b933cb6" + } + ] + }, + { + "label": { + "@none": [ + "147" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000093" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000093" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000093", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5e32751f-f023-43ec-880d-e2e18fecac82", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000093", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000093", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000093/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34804318-3706-439e-97a1-c344f46a8778" + } + ] + }, + { + "label": { + "@none": [ + "148" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000094" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000094" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000094", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/82fd1d7c-ad67-46bb-9d4a-a6a398a471ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000094", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000094", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000094/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb5861ae-fe14-43c6-9135-6c87106048de" + } + ] + }, + { + "label": { + "@none": [ + "149" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000095" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000095" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000095", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b67bdb1-f73d-4b62-8794-4768d0b10854", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000095", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000095", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000095/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/745448a3-5e75-4ce3-9acd-cebcbe8f2a98" + } + ] + }, + { + "label": { + "@none": [ + "150" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000096" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000096" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000096", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a2798c1c-b79f-4382-9d9f-c9b717f22b7a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000096", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000096", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000096/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24151a5e-1eca-4ddd-a8d1-2d3648893c92" + } + ] + }, + { + "label": { + "@none": [ + "151" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000097" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000097" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000097", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/96928638-6549-427e-890f-f85cd05ccac4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000097", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000097", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000097/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/868e997d-db76-46b8-b439-217795dc4b44" + } + ] + }, + { + "label": { + "@none": [ + "152" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000098" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000098" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000098", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0c3d3b5e-500f-4207-8c97-4c13aab360aa", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000098", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000098", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000098/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cfd23263-77a5-4639-adf5-33d40ba221da" + } + ] + }, + { + "label": { + "@none": [ + "153" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000099" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000099" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000099", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f7637b3f-1aa8-4ad8-9569-b3ef52246514", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000099", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000099", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000099/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e5541e8-49bd-41ce-b28a-bab91c2c5337" + } + ] + }, + { + "label": { + "@none": [ + "154" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67c0544a-11e6-4e47-a57f-93c176de71cc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/983fc3d4-3c39-4f1e-8578-7070019c3186" + } + ] + }, + { + "label": { + "@none": [ + "155" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f5dd64cc-a6dc-45c2-9536-70dff29595e5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75b19f3b-1f9a-414d-a69f-05f22121040d" + } + ] + }, + { + "label": { + "@none": [ + "156" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a65e3962-e79b-4237-81c8-f1f79aa2d16c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c58c2593-e79c-4fab-8d35-7bb16a128e47" + } + ] + }, + { + "label": { + "@none": [ + "157" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c717991c-df38-4488-ac7a-f3b06185ce2b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/340bcf64-3066-4f7f-852d-6edbad7abdf2" + } + ] + }, + { + "label": { + "@none": [ + "158" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bd5b449d-c4a7-410b-b3fc-89d1b3bf4d45", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d435f59-2024-4e92-8c80-cbcdb276de82" + } + ] + }, + { + "label": { + "@none": [ + "159" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b6c64067-f616-4004-8d22-6123ae7bdd51", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2575cd56-c904-4323-be47-3900e5c91b9d" + } + ] + }, + { + "label": { + "@none": [ + "160" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/739476d5-87dd-4f55-9159-ed059f3cfd2a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5007550e-b488-4932-9729-bab0135d48b5" + } + ] + }, + { + "label": { + "@none": [ + "161" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d733b74c-1fc1-4b31-ae62-f47ec7854eb5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/20747f98-01f3-4a4a-9ff3-41a28220657a" + } + ] + }, + { + "label": { + "@none": [ + "162" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2b8185de-ecb7-4537-9e32-d0035fbecab1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a18b2800-bbeb-405a-b2b0-9dff2e4731d8" + } + ] + }, + { + "label": { + "@none": [ + "163" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/65a6e9e9-5360-49fc-a70d-d609fea7e9f2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07463cb6-d21e-4c37-a24d-8962242bce08" + } + ] + }, + { + "label": { + "@none": [ + "164" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a4a051cf-bc4f-42df-bec2-b0dbb6587c0e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8dddfb40-7702-4208-9fd5-50761ba7a31e" + } + ] + }, + { + "label": { + "@none": [ + "165" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3996fb3d-856b-423d-8a58-653fbb267013", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c3b675f-189b-4ce1-a75e-59af66c0a3a6" + } + ] + }, + { + "label": { + "@none": [ + "166" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0fe90c99-2e7d-4095-85e6-129fa3b849a0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5a6e58b-ddc2-4b9f-82ab-a178cc1a3c00" + } + ] + }, + { + "label": { + "@none": [ + "167" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/323b9069-dd1b-4cdf-9cd2-d0ef7fa8ba8b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/485fe444-e095-4583-b3ef-30981fc22a25" + } + ] + }, + { + "label": { + "@none": [ + "168" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6c207182-d245-4d9c-9be6-94795aa1f63b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/665715c8-e603-48ba-aa16-ce3592ad5d02" + } + ] + }, + { + "label": { + "@none": [ + "169" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9716c7f-eb34-419d-873e-698a9a7e20d8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/659fd51a-ded7-42f1-af99-ab6355d29ea1" + } + ] + }, + { + "label": { + "@none": [ + "170" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/530634fc-140f-4171-9c8d-075e58d60882", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/949a172e-1f92-4853-913c-383cebc9a131" + } + ] + }, + { + "label": { + "@none": [ + "171" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c74631f9-a3bc-417a-83fb-ef5d25aa9f65", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12b630cb-f4b3-423c-b8b2-2ae617b8e267" + } + ] + }, + { + "label": { + "@none": [ + "172" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b28f2f0c-cdb9-4f5b-aa49-a9395311b31c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7707a5cd-bc4f-42cd-a89c-dca77eb6267d" + } + ] + }, + { + "label": { + "@none": [ + "173" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1ca32d9-1426-4cc0-b7b1-ca12e14f3354", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ba4fa2f-c680-4a36-8028-041e5c345e38" + } + ] + }, + { + "label": { + "@none": [ + "174" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ddfee69f-5942-49d8-89dd-c979e01e54d6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c1a0a27-ad41-4c4b-bf95-a972e67859e5" + } + ] + }, + { + "label": { + "@none": [ + "175" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/775659e6-92c2-4744-94bd-d010e2766e00", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e415e417-9de4-4780-87cd-f8de91f5f7ed" + } + ] + }, + { + "label": { + "@none": [ + "176" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0b98f46-961a-4de1-a824-0ee323ac1cf2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f3274159-6e2f-4499-aec3-9a148d5670c1" + } + ] + }, + { + "label": { + "@none": [ + "177" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/32ddc76a-4c0f-4d1f-8445-f45383e52a5d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e6f91af-aae5-4617-974a-23a2d98ac7e4" + } + ] + }, + { + "label": { + "@none": [ + "178" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d6e4b3cc-daae-4be6-a490-cb13e5f6ceff", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5d72cf0-2b12-4bb8-bda4-531e6388108f" + } + ] + }, + { + "label": { + "@none": [ + "179" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ccb2aa4a-7e5b-44eb-abd2-8984c34169f5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68c4efe9-6203-4899-8532-df2b21319596" + } + ] + }, + { + "label": { + "@none": [ + "180" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1250751c-1303-4438-b201-2ad187e2e73e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81ff8210-52aa-4415-8aa0-ebdf27f32cd4" + } + ] + }, + { + "label": { + "@none": [ + "181" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9524fd48-6a6b-4012-bf96-d602c0e8032e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6a16863-a2fc-421e-b588-7837944c93a8" + } + ] + }, + { + "label": { + "@none": [ + "182" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/317a99ee-19fa-4813-8631-8e922534d343", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e66143b8-0f4a-4212-b014-6b907b5cec38" + } + ] + }, + { + "label": { + "@none": [ + "183" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c5f88cc2-82c7-4924-8fd9-f10aafb41ea5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25e10d93-7de1-445b-b49f-12441fc4ea2c" + } + ] + }, + { + "label": { + "@none": [ + "184" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/beced9c0-bce2-494b-9b03-e816507b261c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/052cbdda-d325-4791-9478-8177b42dd97e" + } + ] + }, + { + "label": { + "@none": [ + "185" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/62ee191c-f1a6-4416-8ba1-e184fe553aaa", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/133591bd-e6f7-4f7d-94e2-e1b0244ec820" + } + ] + }, + { + "label": { + "@none": [ + "186" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9a188555-3ea0-49eb-b674-8f2c0032fd3a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb9d52e3-058d-4a90-b88c-baa75b03e70a" + } + ] + }, + { + "label": { + "@none": [ + "187" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8e7eda36-b658-49bd-8158-09ee93bcc0db", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f87516d-d9ad-4ed2-97b6-21be6ebb282b" + } + ] + }, + { + "label": { + "@none": [ + "188" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4dbc9d84-cd9b-4045-b135-3cd46faa8a3d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e22dc99a-c703-45a5-9e7a-34828c66e892" + } + ] + }, + { + "label": { + "@none": [ + "189" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce0fcc6a-1892-4014-b790-53784a76aae8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/185be747-1429-46fa-ba90-814af5538e45" + } + ] + }, + { + "label": { + "@none": [ + "190" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/25fb9d4e-4423-4937-b36f-cb71a18ba49b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8876d417-f5cd-40bf-8def-432ae4622963" + } + ] + }, + { + "label": { + "@none": [ + "191" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a0e1c9dc-0dec-4dcf-b35f-8ddabedb960c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f9b0624-b0c6-4c87-94a2-a9b993f16af5" + } + ] + }, + { + "label": { + "@none": [ + "192" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c3570d2d-40b4-4b18-be1d-6db37d7d0458", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9830c694-9a84-4000-96c2-eac05ba6dc9f" + } + ] + }, + { + "label": { + "@none": [ + "193" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bd6f3b9-3106-40be-be4c-09655a712d53", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a198dbb3-8ea5-42fb-af5e-69877fe62e9e" + } + ] + }, + { + "label": { + "@none": [ + "194" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c8721edf-305f-4a4c-afa8-08e78d32a605", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29fc8214-3cab-477d-9203-58659fe1e235" + } + ] + }, + { + "label": { + "@none": [ + "195" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bbb410f-124b-46d0-ac89-52fdf534bf7d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb2bf041-8ab9-49a1-916a-4494cfc012ca" + } + ] + }, + { + "label": { + "@none": [ + "196" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/afa2cb63-da59-40f9-a1a8-1708dc146ef9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4aff31b2-339b-4861-b846-a4c988d3f3b6" + } + ] + }, + { + "label": { + "@none": [ + "197" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7bc332c4-a743-487d-9412-abf9c5f65b4a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fef814ba-605a-4824-a029-464ddc361b80" + } + ] + }, + { + "label": { + "@none": [ + "198" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2c984893-3e38-4687-9de1-93dc00fb8cdc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a5cf0e8-babc-4b22-a64f-45779e8cba45" + } + ] + }, + { + "label": { + "@none": [ + "199" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce42aadc-f8c5-487c-9e97-2fc631c5fd7d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fcf79c2f-6537-405f-adbf-402d492af9e5" + } + ] + }, + { + "label": { + "@none": [ + "200" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5f3e325b-059a-41d0-80cf-c9079c848a99", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab7a534c-5c73-4d80-acf6-a08cace4d31e" + } + ] + }, + { + "label": { + "@none": [ + "201" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/17cfa06e-f9af-4138-8f72-2198ad6c93c3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7ac84ea5-adc1-4d1b-80e0-3ec04560ffd0" + } + ] + }, + { + "label": { + "@none": [ + "202" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/52a56c1d-2375-4497-89ba-aee5f9366a2d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6902556a-0564-433e-ac3d-3a0e0ad04568" + } + ] + }, + { + "label": { + "@none": [ + "203" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/72633e24-fe26-4d13-b592-c5dd830c944f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33d40f6f-01ae-4bb7-bd83-68b4fa0537a5" + } + ] + }, + { + "label": { + "@none": [ + "204" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/99eeec88-52d1-40b0-8f42-7da354d05763", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c1e86c5-277f-4234-8577-e28372be84d3" + } + ] + }, + { + "label": { + "@none": [ + "205" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1f4c425-73c8-4fe3-835a-4dbb8d21489e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d66953e-7bea-46cf-a912-d0765e8df083" + } + ] + }, + { + "label": { + "@none": [ + "206" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/66be62b4-a7fd-465f-a5ca-81d13448c99b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/311acfbf-0228-4101-b552-3bc31640a2ec" + } + ] + }, + { + "label": { + "@none": [ + "207" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4f722b15-5634-4429-be70-f68bced01c49", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3baf238a-b821-40a9-af59-aab5309bf975" + } + ] + }, + { + "label": { + "@none": [ + "208" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d22ca457-5af2-4ce4-8f01-6ecc0a712285", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f9f3d692-5ea4-4122-9f01-ad490e8944fc" + } + ] + }, + { + "label": { + "@none": [ + "209" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5ce934f-03d1-47a2-918a-8ed7969f5aef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/390a24f5-dbc4-4800-9dd4-50e475b39489" + } + ] + }, + { + "label": { + "@none": [ + "210" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd852c09-f110-40d2-8df9-fe844a1a983b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9abb9da-917c-410f-880a-ca60aabe2474" + } + ] + }, + { + "label": { + "@none": [ + "211" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/472c2fbe-353a-4fc9-9713-925efde1daeb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b834b3eb-f10c-4451-b521-3e86d5c2c1f8" + } + ] + }, + { + "label": { + "@none": [ + "212" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3b520a7c-0a2d-42ff-b4fe-db8ec98f5151", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39cb6e0f-f9f9-4596-9e6d-71fc1375f701" + } + ] + }, + { + "label": { + "@none": [ + "213" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9c2aa3d-5562-4ca5-9fc9-0b2382cf8f7a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f8747659-7fd1-40d7-9982-34a281805290" + } + ] + }, + { + "label": { + "@none": [ + "214" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e8ed777f-0e10-4fee-860f-b280b42413a1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eeec00e1-de4c-429a-ba7c-cc56e1e33baa" + } + ] + }, + { + "label": { + "@none": [ + "215" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b6231582-5959-44f8-affe-684bc0441e30", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0339abba-7d22-4c37-866d-f3c3e941cdf9" + } + ] + }, + { + "label": { + "@none": [ + "216" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e6367070-1ea8-4e40-917c-f2bbc293b16f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d053dd3f-b6ce-4b0f-ad6b-cf4728f80ba6" + } + ] + }, + { + "label": { + "@none": [ + "217" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ddcf339f-93ee-436e-a82f-dec26270a73a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48445e17-bfef-4602-bbb5-43f0b484fb5f" + } + ] + }, + { + "label": { + "@none": [ + "218" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c3fae9cd-6299-4218-a4a4-e37ad561c962", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14835451-da13-4931-9fc6-ed84fb739a42" + } + ] + }, + { + "label": { + "@none": [ + "219" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/be2b5e1b-0dde-441d-bfb2-28f51f648bab", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/89f0f1b9-d269-43b3-9577-241dbe92f20f" + } + ] + }, + { + "label": { + "@none": [ + "220" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f0a9bf3a-abd5-4500-bfd8-e1dbc4abe1c9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a709007c-0833-4133-a1c7-e2a1fc9c15f2" + } + ] + }, + { + "label": { + "@none": [ + "221" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/043bd5af-e794-44aa-a685-fe69a4f89962", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22c7511c-b445-4cac-9fe7-26ff9abbfd1b" + } + ] + }, + { + "label": { + "@none": [ + "222" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e416b2f3-311a-4855-8463-5c389f426f02", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85eb453e-6e43-4e5e-b3ec-8fcbe39e3a40" + } + ] + }, + { + "label": { + "@none": [ + "223" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1f14e759-4f1d-4219-8c72-68124b14023f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f5f2323-0b55-4445-83a7-23a9a02c8b65" + } + ] + }, + { + "label": { + "@none": [ + "224" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67167ca4-830e-4e02-b4f0-c6203043e3db", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8a2a3300-1bea-43b7-a2f6-c6f7d2bf7126" + } + ] + }, + { + "label": { + "@none": [ + "225" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/68371f89-7b00-435c-8a1f-98e5996b7019", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/592b9ac3-c25d-48c0-bc4d-e3e7be002753" + } + ] + }, + { + "label": { + "@none": [ + "226" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/85c57da4-a283-4e3d-92dc-c757b2c83392", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0bada551-d49d-4166-820a-a4b64218096e" + } + ] + }, + { + "label": { + "@none": [ + "227" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a946f0ff-4755-4a1b-ba24-e251925d7800", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9849f28a-9805-485f-8025-16ec2ffc33ff" + } + ] + }, + { + "label": { + "@none": [ + "228" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1ade7066-2339-44fc-9197-f11ae57f50bb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8a04cffd-9c76-4996-a67e-57df98b86535" + } + ] + }, + { + "label": { + "@none": [ + "229" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2f714530-8f13-4f2a-8f49-f9e951d59292", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b1ed616-b8a4-4e49-967e-17947d10b54b" + } + ] + }, + { + "label": { + "@none": [ + "230" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b6f3e2c-27cf-4bf7-bc22-36fff59a44f9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/949d30ee-e221-48d3-9a2a-73a7f59a3700" + } + ] + }, + { + "label": { + "@none": [ + "231" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ebc9e521-4e32-4737-8204-1271576ef7b9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/096d136d-23d4-456b-808b-052b62fdf727" + } + ] + }, + { + "label": { + "@none": [ + "232" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/976ff09d-b6d1-48b3-bc21-1fbf7ab55d62", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75cd41ce-f33c-4dc5-ad2a-e269b29e42ff" + } + ] + }, + { + "label": { + "@none": [ + "233" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/15d5b126-36db-472d-b0cc-d810fcbb5d0d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0910dc6c-0160-4a45-b852-823d559a9861" + } + ] + }, + { + "label": { + "@none": [ + "234" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fe21980d-1aa6-4424-89df-64058dd7e8f5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e03c9c4-a9db-475a-829f-0b5912af77f3" + } + ] + }, + { + "label": { + "@none": [ + "235" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/119bfc1e-e446-44d3-99ae-a7b505bf3700", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fc07e3d-0b58-4ba5-97bd-36caa4f6bd4e" + } + ] + }, + { + "label": { + "@none": [ + "236" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e4a6c1ad-199f-41fa-8a13-97c72c8be474", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aec2987f-d511-48da-a801-062f51b12698" + } + ] + }, + { + "label": { + "@none": [ + "237" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000ED" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000ED" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000ED", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3644b754-cfac-4a77-ae7f-c26fdeecd976", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000ED", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000ED", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000ED/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/89599a8a-5140-423f-84a4-10d99b5a362f" + } + ] + }, + { + "label": { + "@none": [ + "238" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/312a91f8-33c2-4eab-9562-c1a7a81fc781", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04a9b55d-d657-402a-afae-6ecfe7287d2e" + } + ] + }, + { + "label": { + "@none": [ + "239" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/05c5fb72-f90b-41fe-92e3-4464b023400e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce9c4ef5-5d81-46ef-9af0-1ae3df911e0d" + } + ] + }, + { + "label": { + "@none": [ + "240" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9e791fd2-ce86-4437-a175-84b2e64d87ae", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e50e254-660b-42ff-aa7d-8c770c35271a" + } + ] + }, + { + "label": { + "@none": [ + "241" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f12eea82-fb6f-4ede-a2cd-4a5d241fc119", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25ad7d06-0056-42cd-a31e-c93a85672ad3" + } + ] + }, + { + "label": { + "@none": [ + "242" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5cc64daf-8fee-4c61-bae3-a5f8d9ada088", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e542650-e913-432f-883f-4ec6b70f64b6" + } + ] + }, + { + "label": { + "@none": [ + "243" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b79c42c-fa8a-443f-9ee2-d87ee479aa81", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/13acb599-f5da-4718-b028-550c09a80b13" + } + ] + }, + { + "label": { + "@none": [ + "244" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/26ae69f5-86d7-4c6a-8ef3-b79f7c60c05a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3754fcce-bd09-45f9-be4b-ea806e25b488" + } + ] + }, + { + "label": { + "@none": [ + "245" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/222ed399-7266-471f-9b87-d76996e63dbf", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58680b02-5b7e-4cc5-9a99-9c78764391e1" + } + ] + }, + { + "label": { + "@none": [ + "246" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e318177-5c0e-4fa2-b696-155433e0aa4c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba06a96b-0ad6-4ca9-bbb3-ae88af63cb2d" + } + ] + }, + { + "label": { + "@none": [ + "247" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fb5a2d8b-c8de-4838-89ff-733f25a11c4f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acae71af-9626-440f-86da-bbff85510477" + } + ] + }, + { + "label": { + "@none": [ + "248" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e33c20e0-dd27-4df7-b2b0-9d77b99cdf1e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31f98336-299e-4843-8f2f-3376adbd43bd" + } + ] + }, + { + "label": { + "@none": [ + "249" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f283bdc4-d04b-4365-b0b3-dded888ef99c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a000851-c8cb-4768-9b4b-aa068aed63cf" + } + ] + }, + { + "label": { + "@none": [ + "250" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/30472e67-91df-4260-a51c-3e3eddf51b8a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c58f8f4a-f92b-4d11-ba5b-44a323711769" + } + ] + }, + { + "label": { + "@none": [ + "251" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1f04140-163d-4c61-be12-afdb402d0f88", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8376d438-5a8f-4ae0-8c3e-cad8f7e62ecd" + } + ] + }, + { + "label": { + "@none": [ + "252" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2a8ff677-3359-4c87-82ad-e0caa6ceac86", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c3cd5d17-f4a7-48a7-bbd0-5dabd6ec2b48" + } + ] + }, + { + "label": { + "@none": [ + "253" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9eb0112-193a-46c7-a56f-27ea8e7672b9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37b0ee5f-31ec-4543-bbb4-262131ffd411" + } + ] + }, + { + "label": { + "@none": [ + "254" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0d75860-c0e2-4861-ad5e-4f0532aa2904", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5e00839a-b06b-4339-a9b3-b4d36108da2b" + } + ] + }, + { + "label": { + "@none": [ + "255" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b81ffb0-21a2-472d-98a0-592b6b468670", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c402f662-fe1b-4176-a906-a1bab7ec23c2" + } + ] + }, + { + "label": { + "@none": [ + "256" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000100" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000100" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000100", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/382873ff-ef2f-48fd-af35-f4517bf32334", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000100", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000100", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000100/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d7ef1ee-e507-497c-a101-538473e539d6" + } + ] + }, + { + "label": { + "@none": [ + "257" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000101" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000101" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000101", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1559615b-2f12-4d33-882d-1dad5e822f88", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000101", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000101", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000101/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22b0fcf8-dd6e-4a2a-837e-b35fa86ed5b6" + } + ] + }, + { + "label": { + "@none": [ + "258" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000102" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000102" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000102", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/797c327b-0bb4-4a4b-bfb3-ad8d24b7a679", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000102", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000102", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000102/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c2fde81-0abd-4561-9943-18e0ffd08e0b" + } + ] + }, + { + "label": { + "@none": [ + "259" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000103" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000103" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000103", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7eda74e5-db79-4414-afa3-a2aabc21d19b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000103", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000103", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000103/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05ac894d-ffe4-4b55-b6a2-b49bc96e532d" + } + ] + }, + { + "label": { + "@none": [ + "260" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000104" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000104" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000104", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f7741c18-4250-49fc-a25d-48f4f5a583b1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000104", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000104", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000104/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/700e697f-a336-476f-a30f-7a0598bb72df" + } + ] + }, + { + "label": { + "@none": [ + "261" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000105" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000105" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000105", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/44cb85c4-8fe1-49ed-80e9-af22f626b074", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000105", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000105", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000105/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef1fef28-556a-4d81-99f4-b0684bde971d" + } + ] + }, + { + "label": { + "@none": [ + "262" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000106" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000106" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000106", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/749fd787-c5d8-49d5-b4fb-ef348da04e1d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000106", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000106", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000106/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87b46372-54f9-4e4c-92f9-27de96a8aae9" + } + ] + }, + { + "label": { + "@none": [ + "263" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000107" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000107" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000107", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/39483bbc-5a4e-4485-8072-d353fea319d7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000107", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000107", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000107/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7b99d82-43a8-4686-90f7-745e135bda2f" + } + ] + }, + { + "label": { + "@none": [ + "264" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000108" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000108" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000108", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/44ba417d-f1d5-4b18-87f1-883439c6190b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000108", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000108", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000108/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c217e11f-ae35-4d27-8e09-e289f8de9bc1" + } + ] + }, + { + "label": { + "@none": [ + "265" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000109" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000109" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000109", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7a13923a-279a-4ff9-9197-c82766bd10ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000109", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000109", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000109/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/695ecdb4-6237-4a15-bb36-ac6056f5be99" + } + ] + }, + { + "label": { + "@none": [ + "266" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4749010c-2c22-49ae-94bb-e1e473312100", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a812e84-20de-48a9-9599-e531957d3908" + } + ] + }, + { + "label": { + "@none": [ + "267" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b76ba410-b4ae-4986-9d3e-fd469121522f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67e2f80b-a181-4603-8075-3dcd77f9a8fd" + } + ] + }, + { + "label": { + "@none": [ + "268" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/70e2f322-08d6-476a-ab4e-7740b73f6b8f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d4470ddc-4367-4b55-8535-c5548d1553f4" + } + ] + }, + { + "label": { + "@none": [ + "269" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/db6f0d39-235c-4fc1-9dbe-a053fc37b0bf", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/542674de-8388-499e-877e-2e2a83a404f8" + } + ] + }, + { + "label": { + "@none": [ + "270" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0c408e1f-3641-44bc-8902-47b7934ac15b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/26ff4f35-8a2a-4e96-98b6-c753715c7fbf" + } + ] + }, + { + "label": { + "@none": [ + "271" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4179776b-7f95-4cfb-85d3-11217fe10dc2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06483757-b6af-477a-a9b1-6e629395041f" + } + ] + }, + { + "label": { + "@none": [ + "272" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000110" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000110" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000110", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/11b61e93-81ae-4435-bc74-13ffcedfce63", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000110", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000110", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000110/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54605da1-f762-4fef-9b1b-29a277b05b23" + } + ] + }, + { + "label": { + "@none": [ + "273" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000111" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000111" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000111", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5300391b-1fc1-482e-bc68-21f180a1e76a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000111", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000111", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000111/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bea7a66-c25a-48bf-93dd-a1fcc7054e98" + } + ] + }, + { + "label": { + "@none": [ + "274" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000112" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000112" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000112", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7e4667b1-2817-4cb6-9bd5-541293437763", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000112", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000112", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000112/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/799ce156-5062-4dbe-90b2-ea6a4fad5ebb" + } + ] + }, + { + "label": { + "@none": [ + "275" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000113" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000113" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000113", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c168fca2-8efe-4eab-b1a7-0b1aae593da1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000113", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000113", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000113/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fb13ac0-b486-4a51-90a7-e1030a19a8ae" + } + ] + }, + { + "label": { + "@none": [ + "276" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000114" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000114" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000114", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0b11e7df-d18b-4c48-85d7-3b97037b0392", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000114", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000114", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000114/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6f6683a-4e67-48f0-b758-c5c4bc8ce2ae" + } + ] + }, + { + "label": { + "@none": [ + "277" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000115" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000115" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000115", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d0c893e6-7c9b-487e-8500-8c76ad776d5f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000115", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000115", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000115/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a73a1de5-7135-4a2b-817c-bca5ce73e0d1" + } + ] + }, + { + "label": { + "@none": [ + "278" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000116" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000116" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000116", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1c8bd68-339e-44c9-ba0e-dff7f6fde193", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000116", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000116", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000116/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba8fb6d1-dc2d-4e93-92de-6e5cd2222406" + } + ] + }, + { + "label": { + "@none": [ + "279" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000117" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000117" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000117", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c5ba28bd-405b-45e1-be7a-eeb8de78a6b3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000117", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000117", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000117/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b74931d-4366-4d48-bb9f-afe9ddf7abe3" + } + ] + }, + { + "label": { + "@none": [ + "280" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000118" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000118" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000118", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c55cc85b-7d3e-440f-b74a-f72551500b63", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000118", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000118", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000118/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8c35c07d-796b-4d10-8bc3-663e301512d0" + } + ] + }, + { + "label": { + "@none": [ + "281" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000119" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000119" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000119", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0ce0272e-5bb9-4e7c-8daf-1098bf123d68", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000119", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000119", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000119/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59977b8c-1491-4f29-ba3d-ffd4e76f3934" + } + ] + }, + { + "label": { + "@none": [ + "282" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/58f5a88b-2296-42ad-8f98-bb2fbd50f991", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/26ec2a9b-060d-4497-85d4-9b48003a8478" + } + ] + }, + { + "label": { + "@none": [ + "283" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d804d52e-d583-42af-a6dd-804ed4d30758", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98422a5c-7a88-46f9-9008-09e3e6042ad8" + } + ] + }, + { + "label": { + "@none": [ + "284" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/439c29cd-9344-41b0-b1cb-06dc6c8fe767", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa57a06d-0a92-45e1-8971-02aca3a1094a" + } + ] + }, + { + "label": { + "@none": [ + "285" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0d8bfea9-e6bb-4158-b568-4105e45b85c1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2b18f8e8-50db-4f03-bb5c-e606481151ec" + } + ] + }, + { + "label": { + "@none": [ + "286" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fe28200e-0c63-4f4f-a712-b2d828b3bdcd", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5493cff5-63fa-4f18-95d5-ae6bbdce5092" + } + ] + }, + { + "label": { + "@none": [ + "287" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/62a9b232-eca3-4cbc-82fc-f051aa7b0503", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/126e0d38-501c-4dba-b049-40d62aa99ead" + } + ] + }, + { + "label": { + "@none": [ + "288" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000120" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000120" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000120", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/697324d9-2ffc-4a42-bc90-dc3b02460917", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000120", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000120", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000120/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82090b5f-594d-498a-9267-04a756d87366" + } + ] + }, + { + "label": { + "@none": [ + "289" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000121" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000121" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000121", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4a7cec81-0f59-4445-bc40-35baceb486d6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000121", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000121", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000121/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/392a8fc7-fff4-40c0-9af5-acb94d40dd3d" + } + ] + }, + { + "label": { + "@none": [ + "290" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000122" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000122" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000122", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ddab42cd-6bfe-4d69-91ea-abb32149665b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000122", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000122", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000122/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4af80ce-fdc8-4702-8d27-af4e24341dad" + } + ] + }, + { + "label": { + "@none": [ + "291" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000123" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000123" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000123", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0cdf267-ee41-4ea9-9ea1-aff7d805b0c0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000123", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000123", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000123/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f99c0b6-6aa7-4bc3-a7db-ed92ad343490" + } + ] + }, + { + "label": { + "@none": [ + "292" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000124" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000124" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000124", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a330bd0-4208-4b6b-b7db-b630f740d0bf", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000124", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000124", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000124/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3b2669b3-5f15-41b5-b989-0dd2e30e05ca" + } + ] + }, + { + "label": { + "@none": [ + "293" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000125" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000125" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000125", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4ecab2fb-37b0-4dcc-8eff-e4729d29ef3c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000125", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000125", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000125/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36fdf1a9-7530-4698-8403-e769b534cdfc" + } + ] + }, + { + "label": { + "@none": [ + "294" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000126" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000126" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000126", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d8ab1e19-ffbb-4c34-8bde-e435fcd871d5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000126", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000126", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000126/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8fa459b-fa25-43e1-a879-49c34926c120" + } + ] + }, + { + "label": { + "@none": [ + "295" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000127" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000127" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000127", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bad3b086-16f4-4a68-97f4-a90fd4627336", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000127", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000127", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000127/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e0caa92-a490-4b78-a5b6-b983cd852042" + } + ] + }, + { + "label": { + "@none": [ + "296" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000128" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000128" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000128", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da057a69-a823-4b78-a6ee-4a5ff8530806", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000128", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000128", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000128/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/13c5db4e-ead0-48a3-8205-0f41b9f0b448" + } + ] + }, + { + "label": { + "@none": [ + "297" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000129" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000129" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000129", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/35f2e8f1-3bea-4c33-8792-b658e88077ea", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000129", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000129", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000129/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1cb13e7e-7c26-4a11-a832-5e44dec97fe7" + } + ] + }, + { + "label": { + "@none": [ + "298" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d223651e-fa0b-45b9-a778-e91eb9329ead", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a570d509-4d9f-4c8a-8b34-7ad0fbceb760" + } + ] + }, + { + "label": { + "@none": [ + "299" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/09221e75-d1a4-4eb8-9470-2b83b6cb3180", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c3e0ed3b-93b2-4c9f-8d37-1bcee0686527" + } + ] + }, + { + "label": { + "@none": [ + "300" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2db8cc89-451b-44af-afd3-cb334157396d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5916748-9cb3-421f-9f8b-fa43a51b5b85" + } + ] + }, + { + "label": { + "@none": [ + "301" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ee9ec8ec-5bea-421e-b3d5-fbf9a95b3d23", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b2a9ace-32d8-4802-91c1-964129dca6c9" + } + ] + }, + { + "label": { + "@none": [ + "302" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/264d81d7-3559-4f3f-98b5-0ba29485a922", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54ec25e9-c167-4706-b117-190fa4142678" + } + ] + }, + { + "label": { + "@none": [ + "303" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b68e8fbf-c704-4443-82b1-89fa0fbce71c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08b610de-c6b9-4498-be2c-56055d6b141e" + } + ] + }, + { + "label": { + "@none": [ + "304" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000130" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000130" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000130", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5979f640-b5e7-4d4a-bc4a-ccabc26a2708", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000130", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000130", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000130/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a2e60b1-2b31-49f5-85cf-973b128a087b" + } + ] + }, + { + "label": { + "@none": [ + "305" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000131" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000131" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000131", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd022468-f75b-449e-b47a-305104a84519", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000131", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000131", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000131/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad29c4e6-b456-44bc-82dd-4333ff9dd1b5" + } + ] + }, + { + "label": { + "@none": [ + "306" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000132" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000132" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000132", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b0fe0e38-9145-4272-a1d4-de37a336447f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000132", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000132", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000132/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d05632d8-e8c0-4f82-b3da-cb2111267467" + } + ] + }, + { + "label": { + "@none": [ + "307" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000133" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000133" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000133", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6914f22b-00ee-4018-91f4-a71cc1e5a124", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000133", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000133", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000133/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3f4e2585-b42b-4e39-aadb-60d13198e12c" + } + ] + }, + { + "label": { + "@none": [ + "308" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000134" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000134" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000134", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b27a28e8-1eb1-4ac5-a097-bab63a518ed7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000134", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000134", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000134/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48979772-7d21-48ab-8dc3-36e754dfe5d5" + } + ] + }, + { + "label": { + "@none": [ + "309" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000135" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000135" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000135", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ebf00bcb-94c3-436d-8dc4-782f517243dc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000135", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000135", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000135/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b431ffc6-823b-4d5a-a8bc-801bc187c7ab" + } + ] + }, + { + "label": { + "@none": [ + "310" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000136" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000136" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000136", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/60161961-65c2-4372-b92c-4fc58089e9a2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000136", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000136", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000136/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/844a5d8b-2fc9-4a4a-92d2-b36150c96e1e" + } + ] + }, + { + "label": { + "@none": [ + "311" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000137" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000137" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000137", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8d4dd534-a48b-4d0a-8d79-4a2eb7908405", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000137", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000137", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000137/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb219ea0-c687-4f75-a46a-3b00cb7be25c" + } + ] + }, + { + "label": { + "@none": [ + "312" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000138" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000138" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000138", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1d6bfc7d-1d2b-4c59-9d6b-2287c5ed482f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000138", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000138", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000138/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f472687-40bc-4af3-b791-8d65050cd9d8" + } + ] + }, + { + "label": { + "@none": [ + "313" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000139" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000139" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000139", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/92117a02-9129-400b-a8bd-d45733b8702d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000139", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000139", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000139/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ca302d4-4e6a-4ae8-b699-fd3e90651149" + } + ] + }, + { + "label": { + "@none": [ + "314" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e7980626-33a4-48ed-9acf-1b1359ddb59b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/950771df-f777-4cd1-b5d5-58c659c14fd5" + } + ] + }, + { + "label": { + "@none": [ + "315" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/800660bd-1311-4252-b709-c0ef5533e0c5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b282bdae-5347-4afc-b681-8048db23ad37" + } + ] + }, + { + "label": { + "@none": [ + "316" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/97eb0d51-11e7-4dbc-8f87-52f9864499ad", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62a9b0db-8051-4581-953d-f79008acfda8" + } + ] + }, + { + "label": { + "@none": [ + "317" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0eb44822-586d-4519-a7c9-4bbd4a4174ad", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c375e69-fbb2-48b1-8d30-96070059a981" + } + ] + }, + { + "label": { + "@none": [ + "318" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c057c689-6271-4ddd-8c7c-efb9252f6970", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df3b1e79-1886-4f08-a862-a9d5013c41de" + } + ] + }, + { + "label": { + "@none": [ + "319" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/74f7ea84-b622-4b6c-821b-79a635fe22fd", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b285a58e-36b5-4e71-98a5-d8fad718f004" + } + ] + }, + { + "label": { + "@none": [ + "320" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000140" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000140" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000140", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/70085ec3-85c0-4ec0-a1fd-eeefb5591404", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000140", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000140", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000140/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/880c0b90-d5c9-4acc-a92c-9e67e5713a72" + } + ] + }, + { + "label": { + "@none": [ + "321" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000141" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000141" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000141", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/19ae2d26-fe3e-43fc-9a68-9f7be16e1fe8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000141", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000141", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000141/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82e0d4be-fea7-41cf-9c50-f10d894dd6b0" + } + ] + }, + { + "label": { + "@none": [ + "322" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000142" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000142" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000142", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f47fc074-fc29-442b-9a12-8821e62c8ab8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000142", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000142", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000142/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2974990d-5880-4854-9138-23a554e3a22c" + } + ] + }, + { + "label": { + "@none": [ + "323" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000143" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000143" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000143", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8765039f-4cac-4347-a5e9-13a358e878b1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000143", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000143", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000143/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e665b5d-dba0-4461-8b34-3e95222fca3f" + } + ] + }, + { + "label": { + "@none": [ + "324" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000144" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000144" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000144", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/82f825fd-57aa-4c61-bb7e-6e4da0332c0a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000144", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000144", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000144/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be94af66-cce0-42d9-b046-bb1c551f72c4" + } + ] + }, + { + "label": { + "@none": [ + "325" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000145" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000145" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000145", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0f9aea6-8b5f-4719-a5a9-c6b0739470db", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000145", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000145", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000145/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cbc328c-53d3-4069-9385-1659436e13f7" + } + ] + }, + { + "label": { + "@none": [ + "326" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000146" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000146" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000146", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aaa6fba8-21d4-450c-8879-117300162913", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000146", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000146", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000146/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d924d240-8e8d-43b5-b356-da56de5e89d0" + } + ] + }, + { + "label": { + "@none": [ + "327" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000147" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000147" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000147", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/777efd4b-4abc-47fa-adc3-3012a2a83eee", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000147", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000147", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000147/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6804dfb5-2d15-47a4-aff9-18a555fc5b73" + } + ] + }, + { + "label": { + "@none": [ + "328" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000148" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000148" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000148", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/971e5463-0ac0-4306-a3b3-545b446e4c76", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000148", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000148", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000148/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d09ea61-b9b0-42f5-84ff-49cdf5347e84" + } + ] + }, + { + "label": { + "@none": [ + "329" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000149" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000149" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000149", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8be3ff0f-aca7-47c3-abb7-68523fc618d7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000149", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000149", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000149/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7e8f690-e37a-4de2-88e3-bece8f4b51aa" + } + ] + }, + { + "label": { + "@none": [ + "330" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ec348f9a-81c4-45cd-b19d-601dbcffdb5f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6ba3b6b5-6dfb-4088-8559-60a7ce0f1cc6" + } + ] + }, + { + "label": { + "@none": [ + "331" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3a9f8d69-ef98-43b7-ad1f-29628657e6f3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2825d174-fad8-4ab2-a37f-769e56b85b53" + } + ] + }, + { + "label": { + "@none": [ + "332" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cd7561fd-f12a-4def-9745-61159fae330b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0db718d3-9ebe-40b9-a542-2c2d2d3a0c27" + } + ] + }, + { + "label": { + "@none": [ + "333" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fb6400f1-cb3c-42fd-b4de-d976835020b5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22a5473a-46e7-4632-9ace-0e83199619d2" + } + ] + }, + { + "label": { + "@none": [ + "334" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b73bac6b-ae04-4c45-814b-5d85d05b97b5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7793f546-66cb-47c9-8799-1091e097a19c" + } + ] + }, + { + "label": { + "@none": [ + "335" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1fe984c3-ff31-4c9c-b7df-812b35962727", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a205e1ae-9b1d-4f4f-89c4-242a1d9ab5e3" + } + ] + }, + { + "label": { + "@none": [ + "336" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000150" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000150" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000150", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d771e157-d7cf-4264-bdf2-d5579f91b232", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000150", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000150", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000150/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d112632-ba95-42e6-85b5-b7f78d4ff481" + } + ] + }, + { + "label": { + "@none": [ + "337" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000151" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000151" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000151", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d1bd2b5b-a93c-4276-8172-788f3e05be10", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000151", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000151", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000151/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed1d88d0-9ccf-4f29-b56c-0cd7fce626c9" + } + ] + }, + { + "label": { + "@none": [ + "338" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000152" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000152" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000152", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2a3d529d-9c4f-4c9f-bd53-970376a70218", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000152", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000152", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000152/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/daeb3bbd-3f6d-484f-9592-adfd20d8fad9" + } + ] + }, + { + "label": { + "@none": [ + "339" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000153" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000153" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000153", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e22703ad-b76d-42f4-bf68-8c791995985e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000153", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000153", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000153/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2df75453-a0f7-449f-af40-a637e8ae6dd4" + } + ] + }, + { + "label": { + "@none": [ + "340" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000154" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000154" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000154", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/baef49bf-a42c-4bc2-b2c0-feebd368bf5b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000154", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000154", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000154/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64d94a72-93ce-41c6-9a85-74e31a94236f" + } + ] + }, + { + "label": { + "@none": [ + "341" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000155" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000155" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000155", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9a3d09c-750e-48b9-8bb7-2aeb7d0308b1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000155", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000155", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000155/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c2e5cd54-0b06-4a01-a204-51a7a39467c5" + } + ] + }, + { + "label": { + "@none": [ + "342" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000156" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000156" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000156", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/77527760-76dd-4860-805d-12810a5de819", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000156", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000156", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000156/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f8f847a7-5211-47ba-83c9-1f801075e52d" + } + ] + }, + { + "label": { + "@none": [ + "343" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000157" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000157" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000157", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/62cb3c36-cdc0-482e-8a77-bfa92bb349ee", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000157", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000157", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000157/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/adc2a689-bb48-439b-bfe4-fa922e595808" + } + ] + }, + { + "label": { + "@none": [ + "344" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000158" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000158" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000158", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/54d71d66-ae3d-4c4a-aa0e-e13030ed2689", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000158", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000158", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000158/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed87a834-2947-4f32-b293-30cc9b4eff96" + } + ] + }, + { + "label": { + "@none": [ + "345" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000159" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000159" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000159", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1c9c234-3c98-4974-9a06-2dfd27688a02", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000159", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000159", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000159/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d768b5aa-018f-4d14-80de-90180334ca57" + } + ] + }, + { + "label": { + "@none": [ + "346" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3fbc83a3-e2d4-4976-a3c4-4c9aa32104c8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0862cec5-f249-4345-9b30-9bd3872c167d" + } + ] + }, + { + "label": { + "@none": [ + "347" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6b18a9c3-aa39-4a94-af8d-2b204db17ff6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08c0bcd6-0fec-4786-8922-9e8aa95f5786" + } + ] + }, + { + "label": { + "@none": [ + "348" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a2c88f42-c385-4fe6-b7ed-9ba0b2c276a2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ce957ea-48a2-4c2e-a7c3-a69d5e86639c" + } + ] + }, + { + "label": { + "@none": [ + "349" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2e6b7fd0-ad24-4a4a-b39b-6ec34955d57f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc24e536-b86c-44b3-b71e-0f4af0a248c7" + } + ] + }, + { + "label": { + "@none": [ + "350" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4ad35380-49d2-4a99-96e1-a20f82da30ea", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68b702a2-e585-4abe-8a6d-78a19d079e51" + } + ] + }, + { + "label": { + "@none": [ + "351" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a259c752-cd8a-4dd4-9e42-0e086324ce52", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f2a4b2c-5c72-49b0-83b2-2561de05731c" + } + ] + }, + { + "label": { + "@none": [ + "352" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000160" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000160" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000160", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/be3350f1-5269-49c5-ac9e-1b3f18d12e8a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000160", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000160", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000160/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44b2a752-c2a4-408b-bd39-478f35395e1c" + } + ] + }, + { + "label": { + "@none": [ + "353" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000161" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000161" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000161", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2cab653c-dae4-45bc-8a39-2fa6c106b795", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000161", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000161", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000161/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4af73626-ee26-4338-a23d-809f5a8a82d4" + } + ] + }, + { + "label": { + "@none": [ + "354" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000162" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000162" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000162", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ac6b2bbe-7bdf-4a47-9f9c-38c2b22ad69a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000162", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000162", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000162/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b66942c-8fb1-4a1c-b51b-e0091fccc394" + } + ] + }, + { + "label": { + "@none": [ + "355" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000163" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000163" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000163", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4ba7dc85-5282-45c9-ac68-793739e9e95f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000163", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000163", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000163/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2532154-7a7f-4210-a487-6a49f0fbf9ad" + } + ] + }, + { + "label": { + "@none": [ + "356" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000164" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000164" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000164", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fb0bb9fa-737b-4016-aee7-446359d705f1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000164", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000164", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000164/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa1ecad5-f297-4d7a-b20e-94be395336ba" + } + ] + }, + { + "label": { + "@none": [ + "357" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000165" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000165" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000165", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5fe8acf-5334-43d6-9119-4673c3c42170", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000165", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000165", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000165/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd16f80d-1fde-4aab-9e9f-f7199593a08f" + } + ] + }, + { + "label": { + "@none": [ + "358" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000166" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000166" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000166", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7c03bace-af2a-4529-a5f5-364fd97170a7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000166", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000166", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000166/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4701bdef-9135-4ec5-8096-80e5ec4c4c4f" + } + ] + }, + { + "label": { + "@none": [ + "359" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000167" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000167" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000167", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5961035d-23df-4d12-b709-165d92b62a0e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000167", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000167", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000167/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/247f40d7-6882-4410-8d62-7b9703e74aad" + } + ] + }, + { + "label": { + "@none": [ + "360" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000168" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000168" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000168", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e27ca8cb-11f2-461f-aabe-135309134295", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000168", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000168", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000168/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b13f3554-19e3-45da-bb52-5722dacb8ce2" + } + ] + }, + { + "label": { + "@none": [ + "361" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000169" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000169" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000169", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7d8080b7-2bb1-4aed-9b66-6cf76053fb81", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000169", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000169", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000169/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40e0bbc1-1dca-47c9-8c80-4038ed12fcbe" + } + ] + }, + { + "label": { + "@none": [ + "362" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4162055e-2f22-489b-ad64-ba7e0d2cf8b2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54427c4d-94bb-41f9-830a-e2e1034ac9dd" + } + ] + }, + { + "label": { + "@none": [ + "363" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/05a90e53-ce32-4dba-a297-6b7a7dff623d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/30b08048-f3a9-4488-8dc8-5e31464ea1a2" + } + ] + }, + { + "label": { + "@none": [ + "364" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9f2f4f20-c2b6-49a9-951c-242cdcc56b1b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/16326b37-9417-4b7f-9669-cd7c2054e40a" + } + ] + }, + { + "label": { + "@none": [ + "365" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8ac9894d-0ca4-44fe-a54e-62ed35b1c226", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0213248-8e1e-4220-9158-4acf3f6e5233" + } + ] + }, + { + "label": { + "@none": [ + "366" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6355c14a-a186-4431-938c-cea61f58c232", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03592d0c-2ad9-40e3-b889-dbbdeb598ad8" + } + ] + }, + { + "label": { + "@none": [ + "367" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9c0dad5c-92c0-46dc-8ebc-e9722b851dc3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e70f2e45-3640-4e74-9623-5de135312473" + } + ] + }, + { + "label": { + "@none": [ + "368" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000170" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000170" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000170", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad6b3e6e-6407-41db-81ca-8f4633c5464d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000170", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000170", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000170/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df55351e-1215-43b9-9c3e-f74b8703544f" + } + ] + }, + { + "label": { + "@none": [ + "369" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000171" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000171" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000171", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9331167e-4751-4b2b-bc10-10f05fc9f87d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000171", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000171", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000171/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8bcc79cd-ef23-4b17-9e35-34f53159ac53" + } + ] + }, + { + "label": { + "@none": [ + "370" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000172" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000172" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000172", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9b2809c3-adda-4dc8-845a-a4597c882652", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000172", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000172", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000172/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c368b1d9-e395-47d4-9e17-6d7db1e06422" + } + ] + }, + { + "label": { + "@none": [ + "371" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000173" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000173" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000173", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/926510ad-3f00-4cb8-940b-cc7ed6ea890e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000173", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000173", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000173/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bcc28678-15a6-45ee-821b-45cb0276de83" + } + ] + }, + { + "label": { + "@none": [ + "372" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000174" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000174" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000174", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9501eb7-61c9-4b50-8563-f2f24e63037c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000174", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000174", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000174/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e7795c3-78d1-41bc-a90b-466ae3c188ee" + } + ] + }, + { + "label": { + "@none": [ + "373" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000175" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000175" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000175", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/726b3366-7baa-4a6f-bda5-14a4afba1208", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000175", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000175", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000175/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d011425-5de9-4f94-934d-231aa3de67bf" + } + ] + }, + { + "label": { + "@none": [ + "374" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000176" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000176" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000176", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9c328da9-b88c-4b46-a55c-b587cdbefa9a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000176", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000176", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000176/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f0b8911-7767-492d-b65e-9130e4a9e48c" + } + ] + }, + { + "label": { + "@none": [ + "375" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000177" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000177" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000177", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a28528ff-6c79-4a12-8020-65cf041b2eec", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000177", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000177", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000177/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f17d9d03-9a03-45a5-bf53-c5f0d7b7443c" + } + ] + }, + { + "label": { + "@none": [ + "376" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000178" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000178" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000178", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/032f1f4b-5b17-4524-9b70-dfdd90873669", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000178", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000178", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000178/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2d09ac6-fa93-4278-8434-56d38f632a60" + } + ] + }, + { + "label": { + "@none": [ + "377" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000179" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000179" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000179", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d1e1120e-4627-4192-98e6-beeb0ea98017", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000179", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000179", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000179/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06585d12-7aab-4ae8-abb4-b3eb48ce4a9a" + } + ] + }, + { + "label": { + "@none": [ + "378" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/432b71ae-52dc-475b-8585-f6ba1f38387a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40e3f2e8-63e6-49d2-a7c2-8ae01e1828d1" + } + ] + }, + { + "label": { + "@none": [ + "379" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9d0ddcd4-8527-43be-a923-4c16a763b9f0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4813184a-867f-4d55-98a1-4674e2182fa6" + } + ] + }, + { + "label": { + "@none": [ + "380" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59ab7e60-6354-4113-9e6a-d5c150e248ea", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5873b9d-2228-4743-925f-bba1019d55f1" + } + ] + }, + { + "label": { + "@none": [ + "381" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5e5f9a8a-3221-4afe-b3fc-706c46e66d31", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f983024-42fb-42bf-8dcc-3a60eae22cea" + } + ] + }, + { + "label": { + "@none": [ + "382" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/721ae155-e57f-40e5-9176-f8f619a1a4ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bad6ae45-54ff-4b00-a3b6-d8c4a1a5585e" + } + ] + }, + { + "label": { + "@none": [ + "383" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aa5d8c33-ae93-4697-925a-dd893ed02bd6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ba0bc6f-d44e-43ba-a2e5-4b566294bdc0" + } + ] + }, + { + "label": { + "@none": [ + "384" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000180" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000180" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000180", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8af16cc4-ec0f-41b4-9f22-d3501d143dd9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000180", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000180", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000180/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/56186ea0-dcda-44d6-9511-a8c730a2f5e3" + } + ] + }, + { + "label": { + "@none": [ + "385" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000181" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000181" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000181", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7fa596db-fa8a-48fa-bb33-57aef680b0e5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000181", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000181", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000181/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e26151f-2220-428f-bb1c-c0d277700789" + } + ] + }, + { + "label": { + "@none": [ + "386" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000182" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000182" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000182", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/531b902c-27e1-4972-958b-d88204a796ca", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000182", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000182", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000182/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2acefb46-c15e-46c4-826e-d40affc74bc6" + } + ] + }, + { + "label": { + "@none": [ + "387" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000183" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000183" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000183", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c52a9b6f-592b-43cb-af2e-554676f7356a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000183", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000183", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000183/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/45d4624b-c5af-40ca-baeb-d83dc508791b" + } + ] + }, + { + "label": { + "@none": [ + "388" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000184" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000184" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000184", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f442e062-c3c3-4904-b09b-a7a2dca61e9e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000184", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000184", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000184/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59d21b6e-6b1a-4151-9022-b77db6c4040d" + } + ] + }, + { + "label": { + "@none": [ + "389" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000185" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000185" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000185", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a6c5ecc5-0db2-4fe5-8243-287e077aa5ff", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000185", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000185", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000185/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3508254-ca59-4885-8ed4-cd796f18a97d" + } + ] + }, + { + "label": { + "@none": [ + "390" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000186" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000186" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000186", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f6c68ff2-e1e6-4d5c-aafb-ddf804a68607", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000186", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000186", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000186/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee7094af-809c-45d9-b86a-c3b7a5b9b642" + } + ] + }, + { + "label": { + "@none": [ + "391" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000187" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000187" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000187", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b68508b-5f06-47b5-8697-dc953f0e7cd4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000187", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000187", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000187/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb88846b-5a7a-4e80-95d5-17c39c20b5d7" + } + ] + }, + { + "label": { + "@none": [ + "392" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000188" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000188" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000188", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b32acccf-c931-4912-9668-0cbb36cef690", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000188", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000188", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000188/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7f94a099-99e1-41fa-8616-0e203b5a2ba3" + } + ] + }, + { + "label": { + "@none": [ + "393" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000189" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000189" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000189", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b2f4ccda-c8c8-4e7b-a50e-cdc0b229a38d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000189", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000189", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000189/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01872975-8538-42fb-bb01-7da8a6843cab" + } + ] + }, + { + "label": { + "@none": [ + "394" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ed424077-7bc4-4f27-8088-fb1e1084668b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82a9b20e-4d53-451e-9bf5-9d62a4c8ed4d" + } + ] + }, + { + "label": { + "@none": [ + "395" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a0c20f7c-87ae-42fc-95e1-705f607e2dc1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c419f520-d5be-4942-be8b-a168e3d97694" + } + ] + }, + { + "label": { + "@none": [ + "396" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1fcc85ff-f867-4782-9ea6-4a321c35eaa4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a20d23e2-a33a-4f12-8866-ae1aca005ead" + } + ] + }, + { + "label": { + "@none": [ + "397" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/49f7137f-75c2-48ad-bd53-08a40cd9462e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd2277d1-cf75-4db3-a21b-5ba0a25fde1d" + } + ] + }, + { + "label": { + "@none": [ + "398" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff01a981-c77c-410f-9b5f-c5137c784f6f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/27553b4e-9ca8-441e-8836-4a7903834420" + } + ] + }, + { + "label": { + "@none": [ + "399" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ab25c2f4-536b-4700-9f08-cee6e5cf286d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8ec17c43-c298-478e-9603-aefc06f4cb32" + } + ] + }, + { + "label": { + "@none": [ + "400" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000190" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000190" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000190", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4e89458b-fe01-40ae-9492-16483f86321c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000190", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000190", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000190/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85c9e402-9c4d-4a25-9f47-36eed3e4c8ac" + } + ] + }, + { + "label": { + "@none": [ + "401" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000191" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000191" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000191", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/49bdcc81-5c5e-444f-ae87-464fa56ddd04", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000191", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000191", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000191/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/996a6871-d74f-4728-b43f-6558adfc1d0c" + } + ] + }, + { + "label": { + "@none": [ + "402" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000192" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000192" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000192", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e2027d97-b566-46ec-9799-c27bcd0acf95", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000192", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000192", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000192/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8cc69853-5838-4451-aed7-bf9f58af8255" + } + ] + }, + { + "label": { + "@none": [ + "403" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000193" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000193" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000193", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4dd79d24-ca13-44fe-abdc-c3909e2f51f0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000193", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000193", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000193/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1833a6a-cae9-49a4-948b-4e8834f67de6" + } + ] + }, + { + "label": { + "@none": [ + "404" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000194" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000194" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000194", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a0c0c79-d8e4-4c5a-b318-9e53aba0bdfb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000194", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000194", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000194/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b996c8e0-7a2c-4b52-854a-409426c050c8" + } + ] + }, + { + "label": { + "@none": [ + "405" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000195" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000195" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000195", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/68949290-2174-4268-b3fc-d7749a28f0f5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000195", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000195", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000195/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9366e776-13f4-4cb6-b989-fb2851c15af6" + } + ] + }, + { + "label": { + "@none": [ + "406" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000196" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000196" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000196", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/18634112-1636-4ddc-8738-a12c6bd85941", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000196", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000196", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000196/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7bc88d11-578b-40e8-918e-850a6318227a" + } + ] + }, + { + "label": { + "@none": [ + "407" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000197" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000197" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000197", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/36f94f73-6c5e-45e7-bf98-32063eb37029", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000197", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000197", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000197/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/984d1763-a515-4a6d-a68f-060de661b3bf" + } + ] + }, + { + "label": { + "@none": [ + "408" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000198" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000198" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000198", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/050e931d-5cfb-4b0a-912d-4a4b37dfa92a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000198", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000198", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000198/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8608854f-db4f-486c-aab5-8b7064cc9357" + } + ] + }, + { + "label": { + "@none": [ + "409" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000199" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000199" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000199", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df9bc985-c990-448b-99e9-d21f3bffcbe1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000199", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000199", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000199/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/252d1e1d-534c-4aad-83dd-3b920b1a6903" + } + ] + }, + { + "label": { + "@none": [ + "410" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b10910aa-a808-431d-869c-e4ca92b6a943", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/151ec0cd-4c78-4b8c-8f7c-7e892088b06f" + } + ] + }, + { + "label": { + "@none": [ + "411" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/38274572-eb4c-4567-af03-3d4ffb86c94d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/980c8f7f-3d17-4cf0-b0eb-041df48cbc7d" + } + ] + }, + { + "label": { + "@none": [ + "412" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6ed51413-fcc4-4266-ae06-fd49999e8dea", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0d9edc4-7cca-4c99-a399-c2c272b18da7" + } + ] + }, + { + "label": { + "@none": [ + "413" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/97681afb-af69-4669-ac10-6810a26e8245", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0c901228-afc4-4c3e-9ee1-2b8228e0653a" + } + ] + }, + { + "label": { + "@none": [ + "414" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/587f3466-08b8-48ea-a0b3-b3c0edb8e689", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75bc700c-4181-416e-88a4-21ab9bd8030c" + } + ] + }, + { + "label": { + "@none": [ + "415" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1965bf98-5d2e-49c0-a237-9e39eb472cb4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47c35385-0261-4454-b805-26f3a873a59d" + } + ] + }, + { + "label": { + "@none": [ + "416" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/10b74b92-9bb3-4b8f-af3d-1956b125dc66", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04a6ef30-8f2f-42fb-8806-0d76e93d2751" + } + ] + }, + { + "label": { + "@none": [ + "417" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5510bbfa-75c4-447a-8993-65d30b78abc0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e852516b-f17c-4a96-b67a-9502a1e8dee5" + } + ] + }, + { + "label": { + "@none": [ + "418" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/48b6104d-4980-4493-ba44-c74db14ca40f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/775735c6-ea6b-485a-a9f4-e8c86ee9fd40" + } + ] + }, + { + "label": { + "@none": [ + "419" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad811505-3015-4135-a725-cdef80f1f13d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3de12aba-d6b7-42ee-90f4-c6e3e26e0e9f" + } + ] + }, + { + "label": { + "@none": [ + "420" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b6fe8983-f66c-410f-a858-406389eee33a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3f9fbc04-ef01-490d-8760-9a90ec71eea1" + } + ] + }, + { + "label": { + "@none": [ + "421" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/84018140-e272-4115-ac43-f69331e6c6fd", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09688f4f-82d5-4dcf-9dbb-fc85f6078efa" + } + ] + }, + { + "label": { + "@none": [ + "422" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f4e99e87-24f4-42da-b7bb-ddd8757f5a38", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f1d8c43-4cff-4f8d-97c2-f3a528973d06" + } + ] + }, + { + "label": { + "@none": [ + "423" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f62b0928-56fa-40da-8f68-ab8159bf5895", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8535e69c-a1c1-4752-a435-0067fc088108" + } + ] + }, + { + "label": { + "@none": [ + "424" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/beadb4b0-1110-4058-9a19-f538cfb74522", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3aab5958-91d6-47d7-98d9-c6d9e778f075" + } + ] + }, + { + "label": { + "@none": [ + "425" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af52467b-cff0-4996-ab54-7d26bbd84bb5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf3873b0-517e-4069-b3b0-b1291976c5ba" + } + ] + }, + { + "label": { + "@none": [ + "426" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0b5c573-c298-4651-b62a-03c0df8e7249", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c3f5a44-87f3-40ef-9e43-9037c52e2017" + } + ] + }, + { + "label": { + "@none": [ + "427" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/51bbc9df-a875-409b-885d-5ddeb8d14da1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0da58a5-c972-49b5-a4a2-9a462f2cf47e" + } + ] + }, + { + "label": { + "@none": [ + "428" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e656752f-7907-4588-8f76-caf474915e12", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed8fcd98-61e5-4608-906c-a54d09cb1061" + } + ] + }, + { + "label": { + "@none": [ + "429" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/89389684-6389-4a19-90bb-59e7d1327807", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d4439333-6cff-46fd-85dc-0a3df0ad9961" + } + ] + }, + { + "label": { + "@none": [ + "430" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/430e272e-906a-40b4-8f69-e89ed1413f58", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f017954c-1a7f-4c68-81ef-cbc4e1dae1d9" + } + ] + }, + { + "label": { + "@none": [ + "431" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/935ef81a-9999-4162-a087-dfa43a1b4575", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9da441a-7cbd-41bd-ae8f-274f19648651" + } + ] + }, + { + "label": { + "@none": [ + "432" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0ae0f93-6894-4f09-8af5-1c03103906ad", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43e0b603-7b0d-4065-a32e-a5ee77491b46" + } + ] + }, + { + "label": { + "@none": [ + "433" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8859fe27-dec3-42fd-819e-b776460a118b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/721d58c0-2cbd-4ea1-adc3-d92cbeff2c6d" + } + ] + }, + { + "label": { + "@none": [ + "434" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2e351c89-342c-43be-a557-1bce6732a1b5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee764ec0-3213-41a0-aa9b-9bace3b1c896" + } + ] + }, + { + "label": { + "@none": [ + "435" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9ccbe48d-b7a8-4754-9888-b415131b5c83", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca5a39af-5e02-44a4-9d38-814de0e7d6f2" + } + ] + }, + { + "label": { + "@none": [ + "436" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/025d1ea0-4daf-461c-b2eb-8ddad71c5bb9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff1d192d-c2d9-4b2e-a523-4091645da7b5" + } + ] + }, + { + "label": { + "@none": [ + "437" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/209c8aa9-40e1-42f4-a35d-852562cc4f85", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e79a1d1-d54c-4923-a007-771780a972a0" + } + ] + }, + { + "label": { + "@none": [ + "438" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e4ce793d-4c23-48f7-a0f8-163a2560f0f6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b014c2b7-7fd2-41eb-91e8-f59cf1c412c9" + } + ] + }, + { + "label": { + "@none": [ + "439" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b83bd909-7cec-43e6-9aaa-4592d7804867", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7a19bb9a-544a-48e2-8e30-329549b34143" + } + ] + }, + { + "label": { + "@none": [ + "440" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/30bd7966-4b23-4b47-a072-4e1197c57ae1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9accbdb5-b4f6-4b1b-af32-481f218d871c" + } + ] + }, + { + "label": { + "@none": [ + "441" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/80679c71-5294-49e9-b41f-fdf1ee190739", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e5260aa-36d3-4d18-9a10-16cc4bf96eb9" + } + ] + }, + { + "label": { + "@none": [ + "442" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/db7bef90-a6d5-450a-a2f6-2e260a708dae", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c2323a7-cfdd-499b-9626-fd0a6d55f052" + } + ] + }, + { + "label": { + "@none": [ + "443" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/78361465-feed-40e9-9c76-d93a20e10e8f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a05a869a-ed93-4a03-961f-c58d4bd74b0c" + } + ] + }, + { + "label": { + "@none": [ + "444" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/feb87559-b555-4697-b287-d7d09ecb5a12", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53d32832-d9d2-4cf0-91ca-9a6c1a873c1a" + } + ] + }, + { + "label": { + "@none": [ + "445" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ef945ff1-ef3c-4644-a10b-5aab03a61e58", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc2176ed-6fe0-405e-ae4d-a0a41214a473" + } + ] + }, + { + "label": { + "@none": [ + "446" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/55ea64d7-644e-4576-b825-6b8e1727b0b0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47b921ec-678a-4f9e-aabd-249234ff8300" + } + ] + }, + { + "label": { + "@none": [ + "447" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3e400087-1b55-400c-b430-75a50ca1db3e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/492a3b79-b876-475d-aac2-262a4168e1f8" + } + ] + }, + { + "label": { + "@none": [ + "448" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b129c38-f09f-470e-8e5f-8da4ce6e9d85", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2258bfd3-fb12-472c-ba32-38ad954c2044" + } + ] + }, + { + "label": { + "@none": [ + "449" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/81453b17-9cdd-4954-a4b5-563d8c1629a7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7bbe2477-a16e-4af9-b583-89057909bedc" + } + ] + }, + { + "label": { + "@none": [ + "450" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1e84775a-c78b-412e-bf98-b5b82effabbf", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/76edd9f8-2644-4998-8d4e-1ba4b5456f60" + } + ] + }, + { + "label": { + "@none": [ + "451" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c1e8c042-129e-448a-8ded-bc4eb5c94aa9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb312ee3-c777-4eca-a42b-fe5b94b48f81" + } + ] + }, + { + "label": { + "@none": [ + "452" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/65bbec76-7c84-4220-9ddb-2ed9723b52d4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2642602a-d20f-40d9-b682-a0b7d8e9d867" + } + ] + }, + { + "label": { + "@none": [ + "453" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c0f0154-a39b-439e-9ebb-1b9839d7545f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad2ed891-fe91-4684-a21d-8a055de1f2be" + } + ] + }, + { + "label": { + "@none": [ + "454" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4d32d384-a964-4326-8b24-00d5c54b8e5f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2277e851-068d-48e6-bd96-16139b785f8a" + } + ] + }, + { + "label": { + "@none": [ + "455" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f244c910-faf3-45d2-9d87-1e0c4ce9a46d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ae0da1f-b095-4760-bc99-33485f1fae30" + } + ] + }, + { + "label": { + "@none": [ + "456" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5565ca2-27df-486f-a7f6-ab6e306eb3ca", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/77b1aa65-7073-4d20-beff-8269eb6c0b67" + } + ] + }, + { + "label": { + "@none": [ + "457" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/666f9a54-0c7f-4216-8a26-cecade8775c8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/381b8d39-9263-4018-9584-2d8823f8a2f5" + } + ] + }, + { + "label": { + "@none": [ + "458" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3f7acadc-d698-4bce-84b1-27756181dba0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36a52046-d48c-4ca8-aee8-6a803a7d0cb6" + } + ] + }, + { + "label": { + "@none": [ + "459" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d5e1384b-b9c0-472e-b088-6ba097548084", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/202cc3e5-e8ac-4d70-8fff-51621211517a" + } + ] + }, + { + "label": { + "@none": [ + "460" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/74545b20-7d88-40c3-bedb-ad7c9275e852", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae30e695-c9f7-44ab-9539-ad679bee95fc" + } + ] + }, + { + "label": { + "@none": [ + "461" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/44fda355-5384-43a6-9a04-115bb37b5a95", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/015ca193-b20d-4906-98b1-28e0e08300da" + } + ] + }, + { + "label": { + "@none": [ + "462" + ] + }, + "width": 2184, + "height": 2916, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/364feea9-c79f-4861-978c-87f34467ea07", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 2184, + "height": 2916, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3cb23e7-ba78-4dbb-8f9b-4ad590ba4222" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_data_getty_edu_museum_api_iiif_298147_manifest": { + "label": { + "@none": [ + "La Surprise (1718–1719), Jean-Antoine Watteau (French, 1684 - 1721)" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Artist / Maker" + ] + }, + "value": { + "@none": [ + "Jean-Antoine Watteau (French, 1684 - 1721)" + ] + } + }, + { + "label": { + "@none": [ + "Culture & Date" + ] + }, + "value": { + "@none": [ + "French, 1718–1719" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Oil on panel" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "36.4 × 28.2 cm (14 5/16 × 11 1/8 in.)" + ] + } + }, + { + "label": { + "@none": [ + "Object Number" + ] + }, + "value": { + "@none": [ + "2017.72" + ] + } + }, + { + "label": { + "@none": [ + "Object Type" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + }, + { + "label": { + "@none": [ + "Place Created" + ] + }, + "value": { + "@none": [ + "France" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "The J. Paul Getty Museum" + ] + } + }, + { + "label": { + "@none": [ + "Rights Statement" + ] + }, + "value": { + "@none": [ + "
Images provided here are believed to be in the public domain and are made available under the terms of the Getty's Open Content Program. Texts provided here are © J. Paul Getty Trust, licensed under CC BY 4.0. Terms of use for the Getty logo can be found here.
" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://www.getty.edu/legal/copyright.html#oc" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "In a verdant park at sunset, a young woman abandons herself to her tousle-haired companion’s ardent embrace. Coiled up in a pose of centrifugal energy, the impulsive lovers are oblivious to the third figure: Mezzetin, sitting on the same rocky outcrop. Drawn from the theatrical tradition of the commedia dell’arte, this character represents a poignant foil to the couple’s unbridled passion. Introverted and with a melancholy air, he tunes his guitar, knowing that his serenading will mean nothing to the lovers and serve only to heighten his own sense of lonely longing as he gazes upon them. His costume, a rose-coloured jacket and knee-britches slashed with yellow and adorned with blue ribbons as well as a lace ruff and cuffs, is reminiscent of the paintings of Anthony van Dyck. The small dog at lower right, a quotation from Rubens, watches the couple with considerably more appreciation than Mezzetin can muster." + ] + } + } + ], + "thumbnail": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "Image" + } + ], + "viewingDirection": "left-to-right", + "logo": [ + { + "id": "http://www.getty.edu/museum/media/graphics/web/logos/getty-logo.png", + "type": "Image" + } + ], + "type": "Manifest", + "id": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Digital image courtesy of the Getty's Open Content Program." + ] + } + }, + "homepage": { + "id": "https://www.getty.edu/art/collection/objects/298147/jean-antoine-watteau-la-surprise-french-1718-1719/", + "type": "Text" + }, + "partOf": [ + { + "id": "http://www.getty.edu/art/collection/", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "Main Image" + ] + }, + "width": 4937, + "height": 6406, + "thumbnail": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "Image" + } + ], + "type": "Canvas", + "id": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://data.getty.edu/museum/api/iiif/298147/annotation/main-image", + "target": [ + { + "id": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "id": "https://data.getty.edu/museum/api/iiif/633385", + "type": "ImageService2" + } + ], + "width": 789, + "height": 1024, + "type": "Image", + "id": "https://data.getty.edu/museum/api/iiif/633385/full/789,1024/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7817ebfa-5c4b-4dc6-8af9-8dd6043ed31a" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_data_ucd_ie_api_img_manifests_ucdlib_33064": { + "seeAlso": [ + { + "format": "text/xml", + "profile": "http://www.loc.gov/mods/v3", + "label": { + "@none": [ + "MODS metadata describing this object" + ] + }, + "type": "Dataset", + "id": "https://digital.ucd.ie/view/ucdlib:33064.xml" + }, + { + "format": "text/rdf+n3", + "label": { + "@none": [ + "RDF n3 serialisation of metadata describing this object" + ] + }, + "type": "Dataset", + "id": "https://digital.ucd.ie/view/ucdlib:33064.n3" + }, + { + "format": "application/x.europeana-edm+xml", + "label": { + "@none": [ + "EDM (Europeana Data Model) RDF metadata" + ] + }, + "profile": "http://www.europeana.eu/schemas/edm/", + "type": "Dataset", + "id": "https://data.ucd.ie/api/edm/v1/ucdlib:33064" + }, + { + "format": "application/rdf+xml", + "label": { + "@none": [ + "RDF-XML metadata describing this object" + ] + }, + "type": "Dataset", + "id": "https://digital.ucd.ie/view/ucdlib:33064.rdf" + } + ], + "logo": [ + { + "id": "https://digital.ucd.ie/images/logos/ucd_logo_sm.png", + "type": "Image" + } + ], + "label": { + "@none": [ + "Housing Plans for Greater Dublin" + ] + }, + "thumbnail": [ + { + "id": "https://digital.ucd.ie/get/ucdlib:33064/thumbnail", + "type": "Image" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Housing Plans for Greater Dublin" + ] + } + }, + { + "label": { + "@none": [ + "Type of resource" + ] + }, + "value": { + "@none": [ + "dctypes:StillImage" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "@none": [ + "Urbana, Ill." + ] + } + }, + { + "label": { + "@none": [ + "created" + ] + }, + "value": { + "@none": [ + "1914" + ] + } + }, + { + "label": { + "@none": [ + "Exhibitions" + ] + }, + "value": { + "@none": [ + "A label included with the drawings indicates that Cushing Smith later exhibited the drawings in the Thirtieth Annual Chicago Architectural Exhibition, Art Institute of Chicago, 5-29 April, 1917." + ] + } + }, + { + "label": { + "@none": [ + "Ownership/custodial history" + ] + }, + "value": { + "@none": [ + "The drawings were donated to the Wilmette Historical Museum, Wilmette, Illinois by Cushing Smith's granddaughter, Mary Duke Smith, and daughter-in-law, Joan Smith. With the Smiths permission, Wilmette Historical Museum donated the drawings to the Irish Architectural Archive in 2011." + ] + } + }, + { + "label": { + "@none": [ + "permalink" + ] + }, + "value": { + "@none": [ + "doi:10.7925/drs1.ucdlib_33064" + ] + } + }, + { + "label": { + "@none": [ + "topic-LCSH" + ] + }, + "value": { + "@none": [ + "City planning", + "Architecture, Domestic" + ] + } + }, + { + "label": { + "@none": [ + "genre" + ] + }, + "value": { + "@none": [ + "Competition drawings" + ] + } + }, + { + "label": { + "@none": [ + "genre" + ] + }, + "value": { + "@none": [ + "Architectural drawings" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Drawing submitted by F.A. Cushing Smith to the town plan for Dublin international competition organised by the Civics Institute of Ireland in 1914. Cushing Smith was the sole US entrant and also one of only two single-person entrants. His address at the time of the competition was the University Club, Urbana, Illinois. To ensure anonymity during the adjudication process his entry was give the designation 'B'. Aside from the winners, the adjudicators were unanimous in giving Honourable Mention to four entries including Cushing Smith's. This drawing includes plans and elevations for various types of housing and a block plan of suburban house arrangements." + ] + } + } + ], + "type": "Manifest", + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Irish Architectural Archive" + ] + } + }, + "partOf": [ + { + "label": { + "@none": [ + "Dublin Town Planning Competition 1914" + ] + }, + "type": "Collection", + "id": "https://data.ucd.ie/api/img/collection/ucdlib:33058" + } + ], + "items": [ + { + "label": { + "@none": [ + "recto" + ] + }, + "width": 14451, + "height": 14214, + "service": [ + { + "profile": "http://iiif.io/api/annex/services/physdim", + "physicalScale": 0.00333333333333333, + "physicalUnits": "in", + "type": "Service" + } + ], + "type": "Canvas", + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://data.ucd.ie/api/img/ucdlib:33064/annotation/ucdlib:33543", + "target": [ + { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.ucd.ie/loris/ucdlib:33543", + "type": "ImageService2" + } + ], + "format": "image/jpeg", + "height": 14214, + "width": 14451, + "type": "dcTypes:Image", + "id": "https://iiif.ucd.ie/loris/ucdlib:33543/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/46df4103-9fa4-4f30-b85d-f01fc6bbaa9c" + } + ] + } + ], + "structures": [ + { + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064/sequence/normal", + "type": "Range", + "behavior": [ + "sequence", + "individuals" + ], + "items": [ + { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas" + } + ], + "label": { + "@none": [ + "Current Page Order" + ] + } + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_demos_biblissima_condorcet_fr_iiif_metadata_bvmm_chateauroux_manifest": { + "label": { + "@none": [ + "Reconstructed manifest (partial): Grandes Chroniques de France (Châteauroux, BM, ms 5)" + ] + }, + "thumbnail": [ + { + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/150,/0/default.jpg", + "type": "Image" + } + ], + "logo": [ + { + "id": "http://static.biblissima.fr/images/logo-biblissima-350w.jpg", + "type": "Image" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "Reconstructed manuscrit (partial reconstruction)" + ] + } + }, + { + "label": { + "@none": [ + "Holding institution (manuscript)" + ] + }, + "value": { + "@none": [ + "Bibliothèque municipale de Châteauroux" + ] + } + }, + { + "label": { + "@none": [ + "Holding institution (cuttings)" + ] + }, + "value": { + "@none": [ + "Bibliothèque nationale de France, Département des Estampes et de la photographie" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmarks" + ] + }, + "value": { + "@none": [ + "Châteauroux, Bibliothèque municipale, ms. 5", + "Paris, BnF, Département des Estampes et de la photographie, RESERVE 4-AD-133" + ] + } + }, + { + "label": { + "@none": [ + "Images Providers" + ] + }, + "value": { + "@none": [ + "Gallica - Bibliothèque nationale de France", + "BVMM (IRHT-CNRS) - Bibliothèque municipale de Châteauroux" + ] + } + }, + { + "label": { + "@none": [ + "Manifest Provider" + ] + }, + "value": { + "@none": [ + "Equipex Biblissima" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This manifest is a partial reconstruction of the Grandes Chroniques de France manuscript (Châteauroux, BM, ms 5 ; full page images coming from the BVMM). The miniatures are associated as detail images on their respective canvas (images coming from Gallica). It only shows the mutilated pages of the original manuscript, not the full object." + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Catalogue record (CCFr)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Digitized miscellany containing the miniatures (Gallica)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Digitized miniatures, retail (Gallica)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Catalogue record of the miscellany (BnF)" + ] + } + } + ], + "type": "Manifest", + "id": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Images : Gallica - Bibliothèque nationale de France / BVMM (IRHT-CNRS) - Bibliothèque municipale de Châteauroux ; Manifest IIIF : Régis Robineau (Biblissima)" + ] + } + }, + "homepage": { + "label": { + "@none": [ + "Digitized manuscript (BVMM, IRHT-CNRS)" + ] + }, + "id": "http://bvmm.irht.cnrs.fr/consult/consult.php?reproductionId=4490", + "type": "Text" + }, + "items": [ + { + "label": { + "@none": [ + "f. 033v - 034" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e9618d7e-ed21-47ed-ad33-4206ed79762e", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59103bf1-d5b2-48f3-bcdb-757a43bd6d2b", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394#xywh=3949,994,1091,1232", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2138, + "height": 2414, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771" + } + ] + }, + { + "label": { + "@none": [ + "f. 034v - 035" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981395", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cc127582-de23-45bc-b591-93f5fb2b2254", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981395", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0039", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0039/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f5c3fe24-f7c5-4866-bd81-57a66b55375f", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981395#xywh=2618,927,1080,1224", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2159, + "height": 2447, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a86cbafd-9ad4-4c07-8764-6c3aac565be2" + } + ] + }, + { + "label": { + "@none": [ + "f. 045v - 046" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981406", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8d5171ce-08cd-42fb-9af3-f8bd38b5e35b", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981406", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0050", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0050/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd91238f-b309-4967-a864-7db8c5f855d2", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981406#xywh=3953,927,1078,1045", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2161, + "height": 2094, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111432/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111432/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b47e9ca-e4ac-4c7c-b882-d2417a17b269" + } + ] + }, + { + "label": { + "@none": [ + "f. 046v - 047" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981407", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/001744a1-9d1c-471c-8b8d-3a300636dd8e", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981407", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0051", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0051/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b3991a64-7eec-432a-9094-5f424f2b7f92", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981407#xywh=2632,881,1091,1024", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2175, + "height": 2041, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111432/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111432/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/45205e4a-da48-427d-92ea-cf38f78fa656" + } + ] + }, + { + "label": { + "@none": [ + "f. 053v - 054" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981414", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/89fd5f39-d6ef-4e8c-aa46-9c3f78492a21", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981414", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0058", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0058/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da8acf69-1bcb-4e26-8212-2eadef54278c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981414#xywh=3928,956,1093,1381", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2183, + "height": 2758, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511147v/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511147v/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07a639d1-9e82-4f09-a742-d06defcdcb16" + } + ] + }, + { + "label": { + "@none": [ + "f. 054v - 055" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981415", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b3deb20-7b67-4c70-aab1-4e54e67ee9f3", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981415", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0059", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0059/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/91d1b01e-6217-4487-b21b-d96171e58ec8", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981415#xywh=2683,925,1046,1333", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2186, + "height": 2785, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511147v/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511147v/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba5c5e9a-f42b-447b-8d11-e81177b61d3d" + } + ] + }, + { + "label": { + "@none": [ + "f. 067v - 068" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981428", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9aca10df-0da4-42ec-93f1-4c20c011e655", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981428", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0072", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0072/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a7f04eaf-2c34-45ec-a8f9-7ed818ee212c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981428#xywh=4053,964,1096,1051", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2161, + "height": 2073, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111504/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111504/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ada02011-6ae7-4249-ac40-c9cf0a07b67d" + } + ] + }, + { + "label": { + "@none": [ + "f. 068v - 069" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981429", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0edb1fac-2ad1-4a28-b0f6-5d9e3c94a8a5", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981429", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0073", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0073/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e299cb5b-9066-4e39-9fe4-16103a4c8e0c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981429#xywh=2695,938,1087,1025", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2230, + "height": 2102, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111504/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111504/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f07e8141-2f7f-4799-bdf9-0a05eee54b5c" + } + ] + }, + { + "label": { + "@none": [ + "f. 080v - 081" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981441", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/948c049c-d6e9-4acc-b3cb-a73bff01f02b", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981441", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0085", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0085/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/552c7765-7a64-40a4-972b-0781a78710c0", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981441#xywh=4007,970,1094,1064", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2227, + "height": 2165, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511154x/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511154x/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05560e25-5c79-4c0f-ba84-6acb55886779" + } + ] + }, + { + "label": { + "@none": [ + "f. 081v - 082" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981442", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/61baeb0c-1584-46cb-8f14-e5ba856e3515", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981442", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0086", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0086/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a736cc82-c11a-44e0-928d-4d1aed795e22", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981442#xywh=2758,974,1044,1046", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2157, + "height": 2162, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511154x/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511154x/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9593efbe-6bb2-4dd9-a3d4-2e72465ceab6" + } + ] + }, + { + "label": { + "@none": [ + "f. 084v - 085" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981445", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7afcb16a-662a-4207-b646-863827662948", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981445", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0089", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0089/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/26af6c1a-63fd-4985-a276-b0785a166bb4", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981445#xywh=4005,963,1089,1085", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2150, + "height": 2143, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511158q/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511158q/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f76cc0c7-e490-41bd-afb9-f1014d1dfdb6" + } + ] + }, + { + "label": { + "@none": [ + "f. 085v - 086" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981446", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4324ffe6-f99d-4522-b844-9bef382b54a4", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981446", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0090", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0090/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dc1c62bb-3560-4bd5-983c-d0b7bf5d70ea", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981446#xywh=2726,970,1097,1080", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2171, + "height": 2137, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511158q/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511158q/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a282c5ea-6a76-4de4-bebb-c2c3ca2d0b8b" + } + ] + }, + { + "label": { + "@none": [ + "f. 088v - 089" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981449", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce4b7733-3add-4a58-8dcb-8158efbfc66e", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981449", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0093", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0093/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c7739be7-c274-4a1f-a30d-536ff9eb1852", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981449#xywh=4077,1028,1055,1015", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2177, + "height": 2095, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111610/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111610/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9a24721-4af8-4ce7-b598-11105c024c57" + } + ] + }, + { + "label": { + "@none": [ + "f. 089v - 090" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981450", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/32902573-0c4d-4470-9bdd-8c67552d6e84", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981450", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0094", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0094/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/91ee62c7-3845-4524-b357-1a58158eb3fe", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981450#xywh=2904,956,1030,1008", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2129, + "height": 2083, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111610/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111610/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be39b461-8086-406d-812d-1891bf231704" + } + ] + }, + { + "label": { + "@none": [ + "f. 181v - 182" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981542", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a29fb20e-5db3-4468-bddb-f766c631e53c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981542", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0186", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0186/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/36678d9c-c7fb-45b8-8035-82c53a8b3ad2", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981542#xywh=4064,1409,976,1026", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2015, + "height": 2119, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511164b/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511164b/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc2646de-0cde-4f36-98ff-b38a3205db4b" + } + ] + }, + { + "label": { + "@none": [ + "f. 182v - 183" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981543", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6d43244a-d1e9-4dc6-8173-13eb592e2721", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981543", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0187", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0187/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/48c645ac-68a9-4fc3-ad73-765ecd24b61c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981543#xywh=2843,1384,990,1039", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 1991, + "height": 2089, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511164b/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511164b/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55bc8536-ba09-4d40-a88e-1b8dadb86038" + } + ] + }, + { + "label": { + "@none": [ + "f. 188v - 189" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981549", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2bca9afa-096e-470c-b242-9f0e2f76d343", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981549", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0193", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0193/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a2dc5623-8f64-4e03-a9d6-5eaab919506d", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981549#xywh=4067,2816,961,1027", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 1972, + "height": 2107, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511167p/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511167p/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7dfa4153-ba41-49e9-b65e-2a808e43f3de" + } + ] + }, + { + "label": { + "@none": [ + "f. 189v - 190" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981550", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9430862-1d59-4a0d-9f1c-f1fb910c20fb", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981550", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0194", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0194/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/34de1b61-e72d-4b0d-bf5f-f355e5e84515", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981550#xywh=2864,2853,1000,1074", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 1932, + "height": 2075, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511167p/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511167p/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a85109b-2bb8-4204-8e16-841d1b1208ba" + } + ] + }, + { + "label": { + "@none": [ + "f. 359v - 360" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981720", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff9a29f2-48a3-42b8-bfa0-92c695a01f1f", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981720", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0364", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0364/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/86605cd4-07db-4fb4-884b-3c5b5e262f03", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981720#xywh=5025,2529,1058,1045", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2115, + "height": 2090, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511170z/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511170z/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/efe7d60e-e468-4c53-8478-79962437aa9b" + } + ] + }, + { + "label": { + "@none": [ + "f. 360v - 361" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981721", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ec7bc4c0-df72-4811-a0b9-69a62940d5a0", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981721", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0365", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0365/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/49e11810-2bbf-4beb-8327-75dab46c9fc8", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981721#xywh=1093,2503,1085,1060", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2103, + "height": 2054, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511170z/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511170z/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1126591a-6479-4331-b8fe-ded4fc13b405" + } + ] + }, + { + "label": { + "@none": [ + "f. 415v - 416" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981776", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf96470a-3ca8-4fd6-8092-694eb65aec4d", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981776", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0420", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0420/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a4b0c83b-3e81-4081-84c8-de164fd05b70", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981776#xywh=4865,2140,1053,1168", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2053, + "height": 2277, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111739/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111739/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e558f974-0d98-4a98-95b1-3b6879e5bd84" + } + ] + }, + { + "label": { + "@none": [ + "f. 416v - 417" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981777", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/580d867a-cd6f-4b48-b4ae-ea902dd7acda", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981777", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0421", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0421/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4a445562-d56d-46e8-8293-b63fd31b69d9", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981777#xywh=1019,2146,1077,1185", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2047, + "height": 2253, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111739/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111739/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c00659d7-9c03-456d-b444-382cf5b93188" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_dzkimgs_l_u_tokyo_ac_jp_iiif_zuzoubu_12b02_manifest": { + "label": { + "@none": [ + "大正新脩大藏經図像部第12b02巻" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Author" + ] + }, + "value": { + "@none": [ + "高楠順次郎" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "ja": [ + "大蔵出版" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "大正新脩大藏經 図像部" + ] + } + }, + { + "label": { + "@none": [ + "manifest URI" + ] + }, + "value": { + "@none": [ + "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "大正新脩大藏經図像部" + ] + } + } + ], + "viewingDirection": "right-to-left", + "logo": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/satlogo80.png", + "type": "Image" + } + ], + "type": "Manifest", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json", + "rights": "http://creativecommons.org/licenses/by-sa/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "大蔵出版(Daizo shuppan) and SAT大蔵経テキストデータベース研究会(SAT Daizōkyō Text Database Committee) " + ] + } + }, + "behavior": [ + "paged" + ], + "items": [ + { + "label": { + "@none": [ + "" + ] + }, + "width": 22779, + "height": 30000, + "type": "Canvas", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/list/p0001-0025.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/ano0001-0025", + "target": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 22779, + "height": 30000, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c1e463e-7ce0-46e2-b91d-e21786168d7c" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_ghent_university_manifest": { + "metadata": [ + { + "label": { + "@none": [ + "Record" + ] + }, + "value": { + "@none": [ + "https://lib.ugent.be/catalog/rug01%3A001484515/items/800000096237" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "[papyrus] Document uit het archief van de dichter Dioskoros van Aphrodite (?)." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "34 regels ; 29 x 72,5 cm." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Papyrus" + ] + } + }, + { + "label": { + "@none": [ + "Publisher" + ] + }, + "value": { + "@none": [ + "537-538?" + ] + } + }, + { + "label": { + "@none": [ + "Provenance" + ] + }, + "value": { + "@none": [ + "BHSL.PAP.000044 Herkomst: Aphroditô" + ] + } + }, + { + "label": { + "@none": [ + "Contents" + ] + }, + "value": { + "@none": [ + "Het document bevat een overeenkomst tussen een corporatie en haar leiders. De leden van de corporatie van jagers (en waarschijnlijk ook van vissers) gaan de verbintenis aan t.o.v. Flavius Hermauos en Flavius Dios, hen als hun chefs te erkennen voor de duu" + ] + } + }, + { + "label": { + "@none": [ + "Object ID" + ] + }, + "value": { + "@none": [ + "archive.ugent.be:4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Het document bevat een overeenkomst tussen een corporatie en haar leiders. De leden van de corporatie van jagers (en waarschijnlijk ook van vissers) gaan de verbintenis aan t.o.v. Flavius Hermauos en Flavius Dios, hen als hun chefs te erkennen voor de duu" + ] + } + } + ], + "seeAlso": [ + { + "dcterms:format": "application/marcxml+xml", + "type": "Dataset", + "id": "https://lib.ugent.be/catalog/rug01%3A001484515.marcxml" + } + ], + "logo": [ + { + "id": "http://adore.ugent.be/IIIF/img/logo_i.svg", + "type": "Image" + } + ], + "label": { + "@none": [ + "Document uit het archief van de dichter Dioskoros van Aphrodite (?)[manuscript]" + ] + }, + "thumbnail": [ + { + "type": "Image", + "id": "https://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg" + } + ], + "type": "Manifest", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "rights": "http://rightsstatements.org/vocab/UND/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by Ghent University Library" + ] + } + }, + "homepage": { + "format": "text/html", + "type": "Text", + "id": "https://lib.ugent.be/viewer/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91" + }, + "items": [ + { + "thumbnail": [ + { + "type": "Image", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg" + } + ], + "label": { + "@none": [ + "1" + ] + }, + "height": 15076, + "width": 6215, + "rendering": [ + { + "format": "image/jp2", + "label": { + "@none": [ + "Download as jpeg2000 (78.77 MB)" + ] + }, + "type": "Image", + "id": "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1&svc_id=original" + } + ], + "type": "Canvas", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "rights": "http://rightsstatements.org/vocab/UND/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by Ghent University Library" + ] + } + }, + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1/image-annotations/0", + "target": [ + { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1", + "type": "ImageService2" + } + ], + "height": 15076, + "label": { + "@none": [ + "BHSL-PAP-000044_2010_0001_AC.jp2" + ] + }, + "width": 6215, + "format": "image/jpeg", + "type": "Image", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e68bf9f3-4544-4e31-a4cf-ef0810019f76" + } + ] + }, + { + "label": { + "@none": [ + "2" + ] + }, + "height": 15036, + "thumbnail": [ + { + "type": "Image", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.3/0,0,6235,15036/226,/0/default.jpg" + } + ], + "rendering": [ + { + "format": "image/jp2", + "label": { + "@none": [ + "Download as jpeg2000 (78.29 MB)" + ] + }, + "type": "Image", + "id": "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.3&svc_id=original" + } + ], + "width": 6235, + "type": "Canvas", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.3", + "rights": "http://rightsstatements.org/vocab/UND/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by Ghent University Library" + ] + } + }, + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.3/image-annotations/0", + "target": [ + { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.3", + "type": "Canvas" + } + ], + "body": [ + { + "label": { + "@none": [ + "BHSL-PAP-000044_2010_0002_AC.jp2" + ] + }, + "height": 15036, + "width": 6235, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edb590d9-43f7-4e52-b2e8-17112e87843b" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_iiif_bodleian_ox_ac_uk_iiif_manifest_60834383_7146_41ab_bfe1_48ee97bc04be": { + "label": { + "@none": [ + "MS. Bodl. 264" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Digital.Bodleian" + ] + }, + "value": { + "@none": [ + "View at: Digital.Bodleian" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "MS. Bodl. 264" + ] + } + }, + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "Multi-page record" + ] + } + }, + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "GEN" + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1400" + ] + } + }, + { + "label": { + "@none": [ + "Catalogueid" + ] + }, + "value": { + "@none": [ + "SC: 2464" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Romance of Alexander, Alexander and Dindimus, Li Livres du Graunt Caam" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "ox:uuid: urn:uuid:60834383-7146-41ab-bfe1-48ee97bc04be" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "goobi:PPNanalog: SC: 2464" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "ox:shelfmark: MS. Bodl. 264" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "Western Manuscripts" + ] + } + }, + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "Bruges?" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "(fols. 3r-208r) The Romance of Alexander in French verse, with miniatures illustrating legends of Alexander the Great and with marginal scenes of everyday life, by the Flemish illuminator Jehan de Grise and his workshop, 1338-44; with two sections added in England c. 1400, (fols. 209r-215v, with fol. 1r) Alexander and Dindimus (Alexander Fragment B) in Middle English verse, with coarser miniatures, and (fols. 218r- 71v, with fol. 2v) Marco Polo, Li Livres du Graunt Caam, in French prose, with miniatures by Johannes and his school." + ] + } + }, + { + "label": { + "@none": [ + "Id" + ] + }, + "value": { + "@none": [ + "60834383-7146-41ab-bfe1-48ee97bc04be" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "(fols. 3r-208r) The Romance of Alexander in French verse, with miniatures illustrating legends of Alexander the Great and with marginal scenes of everyday life, by the Flemish illuminator Jehan de Grise and his workshop, 1338-44; with two sections added in England c. 1400, (fols. 209r-215v, with fol. 1r) Alexander and Dindimus (Alexander Fragment B) in Middle English verse, with coarser miniatures, and (fols. 218r- 71v, with fol. 2v) Marco Polo, Li Livres du Graunt Caam, in French prose, with miniatures by Johannes and his school." + ] + } + } + ], + "logo": [ + { + "id": "https://www.bodleian.ox.ac.uk/__data/assets/image/0005/117176/logo.jpg", + "type": "Image" + } + ], + "type": "Manifest", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "

From:
Rights: Photo: © Bodleian Libraries, University of Oxford
Terms of Access: http://digital.bodleian.ox.ac.uk/terms.html

" + ] + } + }, + "behavior": [ + "paged" + ], + "homepage": { + "id": "https://digital.bodleian.ox.ac.uk/inquire/p/60834383-7146-41ab-bfe1-48ee97bc04be", + "type": "Text" + }, + "items": [ + { + "label": { + "@none": [ + "Inside upper cover" + ] + }, + "height": 7520, + "width": 5712, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/22acd221-e5d8-438f-a179-f105fb99b8ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5712, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a6dac2e5-0f86-4217-a1fe-0c738b838588" + } + ] + }, + { + "label": { + "@none": [ + "Ir" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e878cc78-acd3-43ca-ba6e-90a392f15891.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a1df3882-7428-47bc-b1f4-0f8305d13a15", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e878cc78-acd3-43ca-ba6e-90a392f15891.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e878cc78-acd3-43ca-ba6e-90a392f15891", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e878cc78-acd3-43ca-ba6e-90a392f15891/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b1039c3-3235-4bf2-87a5-498d3409ada5" + } + ] + }, + { + "label": { + "@none": [ + "Iv" + ] + }, + "height": 7520, + "width": 5712, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f1ed064-a972-4215-b884-d8d658acefc5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6b0cdf52-510a-4149-9be2-02656668d75e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f1ed064-a972-4215-b884-d8d658acefc5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5712, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0f1ed064-a972-4215-b884-d8d658acefc5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0f1ed064-a972-4215-b884-d8d658acefc5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e2c20f3a-5597-4eb7-8be9-26e417d78624" + } + ] + }, + { + "label": { + "@none": [ + "IIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d4a96f28-8dc3-4318-bc14-71bdfbb8939a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d9b33e4-3991-4540-956a-904798495917" + } + ] + }, + { + "label": { + "@none": [ + "IIIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/483ff8ec-347d-4070-8442-dbc15bc7b4de.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a59994f0-f031-4971-b69b-b91f1bed363d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/483ff8ec-347d-4070-8442-dbc15bc7b4de.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/483ff8ec-347d-4070-8442-dbc15bc7b4de", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/483ff8ec-347d-4070-8442-dbc15bc7b4de/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19d94f43-4fee-4d75-b5da-f631b6bac195" + } + ] + }, + { + "label": { + "@none": [ + "IVr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d67f1f5-de3f-4f66-8a7d-5063687dd47f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0b13d9f-c25d-4c09-9e6a-378a72dc3e56", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d67f1f5-de3f-4f66-8a7d-5063687dd47f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7d67f1f5-de3f-4f66-8a7d-5063687dd47f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7d67f1f5-de3f-4f66-8a7d-5063687dd47f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24b332fb-99c0-42d7-a7bc-8ed12a2f0686" + } + ] + }, + { + "label": { + "@none": [ + "Vr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/902c2463-102b-4724-a027-5225e6357a79.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5a2510f2-fa73-4c86-b6b9-a687291ece22", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/902c2463-102b-4724-a027-5225e6357a79.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/902c2463-102b-4724-a027-5225e6357a79", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/902c2463-102b-4724-a027-5225e6357a79/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c3d3faa-bf87-4fa7-9c2c-171a41a5ddcb" + } + ] + }, + { + "label": { + "@none": [ + "VIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a6cc2017-2315-433f-8eca-51fef5185dbc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2be6cc8c-b314-4f97-ac98-d13aa2c54359", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a6cc2017-2315-433f-8eca-51fef5185dbc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a6cc2017-2315-433f-8eca-51fef5185dbc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a6cc2017-2315-433f-8eca-51fef5185dbc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ecfc086-b79d-4aae-83c0-915c22819386" + } + ] + }, + { + "label": { + "@none": [ + "VIv" + ] + }, + "height": 7520, + "width": 5544, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f698b098-4701-4aed-946f-659ba4852e4c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0deb2cef-8e90-4170-b771-598747013a9c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f698b098-4701-4aed-946f-659ba4852e4c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5544, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f698b098-4701-4aed-946f-659ba4852e4c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f698b098-4701-4aed-946f-659ba4852e4c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7493bbee-3af8-48f0-85b5-e805e16e8a19" + } + ] + }, + { + "label": { + "@none": [ + "VIIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f60c45-2254-4b07-9e73-fa045e70deb6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b3bf9f41-30d6-411a-b699-cb951c8330ae", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f60c45-2254-4b07-9e73-fa045e70deb6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f60c45-2254-4b07-9e73-fa045e70deb6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f60c45-2254-4b07-9e73-fa045e70deb6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c6ecb26-0773-4ba3-b5b9-865162673faa" + } + ] + }, + { + "label": { + "@none": [ + "VIIv" + ] + }, + "height": 7520, + "width": 5544, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3af0daec-1908-44bc-be53-67654b7c3bf6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1570202c-4af5-4a83-97f0-9d9dd6e398db", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3af0daec-1908-44bc-be53-67654b7c3bf6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5544, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3af0daec-1908-44bc-be53-67654b7c3bf6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3af0daec-1908-44bc-be53-67654b7c3bf6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51701998-4fcb-4709-9c00-6f2cd393db7a" + } + ] + }, + { + "label": { + "@none": [ + "VIIIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b699ce7-482d-47fc-a354-21ee3a4e3a4b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d6579e30-ea12-4ccb-bb33-89ca67a1de83", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b699ce7-482d-47fc-a354-21ee3a4e3a4b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b699ce7-482d-47fc-a354-21ee3a4e3a4b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b699ce7-482d-47fc-a354-21ee3a4e3a4b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00631e0e-fce6-41f4-90de-77c92dfff455" + } + ] + }, + { + "label": { + "@none": [ + "IXr" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/edd8f68a-9267-475c-800e-2c384d90fc96.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff976ec6-5b2d-45f5-b7e1-4b23b67cb6d8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/edd8f68a-9267-475c-800e-2c384d90fc96.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/edd8f68a-9267-475c-800e-2c384d90fc96", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/edd8f68a-9267-475c-800e-2c384d90fc96/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93721d16-e148-4d4c-9fa4-c5686b7c6b82" + } + ] + }, + { + "label": { + "@none": [ + "IXv" + ] + }, + "height": 7436, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d687b8ef-03e1-41a0-81d0-b024987d6922.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bac33f3a-95a2-4e25-99fd-aed5fb11846d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d687b8ef-03e1-41a0-81d0-b024987d6922.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7436, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d687b8ef-03e1-41a0-81d0-b024987d6922", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d687b8ef-03e1-41a0-81d0-b024987d6922/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff98279c-97d7-4e5d-b7b6-ce0c90c1154c" + } + ] + }, + { + "label": { + "@none": [ + "Xr" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/52655462-be47-44ee-a762-f0bfa3e7b35f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09de6018-501b-46fa-a94c-e39a2a5f894c" + } + ] + }, + { + "label": { + "@none": [ + "Xv" + ] + }, + "height": 7436, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b97eb53-7354-46ea-a84c-3565c9221b2c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/35ec035b-46bd-4b87-a968-9a0d07eaf849", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b97eb53-7354-46ea-a84c-3565c9221b2c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7436, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b97eb53-7354-46ea-a84c-3565c9221b2c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b97eb53-7354-46ea-a84c-3565c9221b2c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b4929af-c3e9-4592-9e63-310a4da539fb" + } + ] + }, + { + "label": { + "@none": [ + "1r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c2889c4-cc23-4e74-b45d-2c4368540fe5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/257f84c2-3e20-4f2a-a39f-4b4202fafbe4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c2889c4-cc23-4e74-b45d-2c4368540fe5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7c2889c4-cc23-4e74-b45d-2c4368540fe5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7c2889c4-cc23-4e74-b45d-2c4368540fe5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09d8500d-ba68-452d-830b-48685f73a96a" + } + ] + }, + { + "label": { + "@none": [ + "1v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/34dc4c0d-8df7-4070-982b-6feac01f6d41.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d60bd6d0-0d75-453c-ab81-992b34e25536", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/34dc4c0d-8df7-4070-982b-6feac01f6d41.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/34dc4c0d-8df7-4070-982b-6feac01f6d41", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/34dc4c0d-8df7-4070-982b-6feac01f6d41/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f29a88b-f765-4eaa-b834-03b42f3c3ce2" + } + ] + }, + { + "label": { + "@none": [ + "2r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14fdefa7-21ca-4a3f-a734-b462da5ed45c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/db1deb53-088a-44a1-a47e-5b0de5cd14d8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14fdefa7-21ca-4a3f-a734-b462da5ed45c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/14fdefa7-21ca-4a3f-a734-b462da5ed45c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/14fdefa7-21ca-4a3f-a734-b462da5ed45c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52e31d0a-6cb5-4eee-af59-3ed137211974" + } + ] + }, + { + "label": { + "@none": [ + "2v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/790f4240-9750-4818-8a62-4a88e83e7ab2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b02a1c5-7b9d-487b-97b1-f5aa3c659b83", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/790f4240-9750-4818-8a62-4a88e83e7ab2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/790f4240-9750-4818-8a62-4a88e83e7ab2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/790f4240-9750-4818-8a62-4a88e83e7ab2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e241e69-2ff4-4953-a4b3-e34c1defeeac" + } + ] + }, + { + "label": { + "@none": [ + "3r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e546c5b-afdf-44ed-b574-1f061940cb60.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aee865a4-3a12-46c0-9cc4-5d82acc5dbb6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e546c5b-afdf-44ed-b574-1f061940cb60.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1e546c5b-afdf-44ed-b574-1f061940cb60", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1e546c5b-afdf-44ed-b574-1f061940cb60/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b295c6c4-3868-4603-8608-3e044fda00a9" + } + ] + }, + { + "label": { + "@none": [ + "3v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d3066c0-5cab-4eb0-98f4-1fef57b9f632.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/347b3ece-dd05-4107-9d3b-479ee90d821a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d3066c0-5cab-4eb0-98f4-1fef57b9f632.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d3066c0-5cab-4eb0-98f4-1fef57b9f632", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d3066c0-5cab-4eb0-98f4-1fef57b9f632/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17784949-8014-49ad-892d-54c2c0504cd9" + } + ] + }, + { + "label": { + "@none": [ + "4r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1d35f596-ed13-4d02-afaa-7beec1d539bf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1806ccb-cc66-41de-adc4-3779b037676d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1d35f596-ed13-4d02-afaa-7beec1d539bf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1d35f596-ed13-4d02-afaa-7beec1d539bf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1d35f596-ed13-4d02-afaa-7beec1d539bf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c6ac47d-7e1d-442a-b534-ec6310594ecf" + } + ] + }, + { + "label": { + "@none": [ + "4v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9c51808a-7dd4-44c0-8b0a-ba7a006ed20e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c24c2232-8a61-4311-817e-caed0a728ff0" + } + ] + }, + { + "label": { + "@none": [ + "5r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c8413d3-c0bc-4f02-99d9-78dc5b903b99.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c2a13ec6-ab63-42ec-a84d-c14684fc1df3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c8413d3-c0bc-4f02-99d9-78dc5b903b99.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5c8413d3-c0bc-4f02-99d9-78dc5b903b99", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5c8413d3-c0bc-4f02-99d9-78dc5b903b99/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb2daf91-417c-4530-a676-d145c3c94126" + } + ] + }, + { + "label": { + "@none": [ + "5v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1ba1e06-75d6-4b20-bada-cba1ba659ce4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2ab56b23-8db5-42fb-b46d-b1fa192ac374", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1ba1e06-75d6-4b20-bada-cba1ba659ce4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1ba1e06-75d6-4b20-bada-cba1ba659ce4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1ba1e06-75d6-4b20-bada-cba1ba659ce4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/647b3c7c-a91b-4caf-9c77-94f3917c3500" + } + ] + }, + { + "label": { + "@none": [ + "6r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/186de141-8d8b-4637-9779-065a303c4b12.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/879e9be0-a5b3-4f17-a567-9a00edfcd835", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/186de141-8d8b-4637-9779-065a303c4b12.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/186de141-8d8b-4637-9779-065a303c4b12", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/186de141-8d8b-4637-9779-065a303c4b12/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/514c3683-e13d-46fb-9ba1-32accde32663" + } + ] + }, + { + "label": { + "@none": [ + "6v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/05606664-4645-4abf-ba16-74225b1d8e23.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/24f140c5-098c-403a-b2ca-c3833ab32c2c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/05606664-4645-4abf-ba16-74225b1d8e23.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/05606664-4645-4abf-ba16-74225b1d8e23", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/05606664-4645-4abf-ba16-74225b1d8e23/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/343e24c3-6ca7-4c49-8e0e-6d2010b3d815" + } + ] + }, + { + "label": { + "@none": [ + "7r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/86a14eac-dc28-466b-b2f8-51b85b6da34b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c815475b-d94c-414f-9989-257bf027d007", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/86a14eac-dc28-466b-b2f8-51b85b6da34b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/86a14eac-dc28-466b-b2f8-51b85b6da34b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/86a14eac-dc28-466b-b2f8-51b85b6da34b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eefc8c9b-a31e-4a20-83cf-d25f5cf70882" + } + ] + }, + { + "label": { + "@none": [ + "7v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f450caed-3c81-4d89-8592-3873a94aa24e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/63808ca6-921f-40e4-8305-9a318c9a45c0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f450caed-3c81-4d89-8592-3873a94aa24e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f450caed-3c81-4d89-8592-3873a94aa24e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f450caed-3c81-4d89-8592-3873a94aa24e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95281332-8dd2-4491-8798-ed304bb16b32" + } + ] + }, + { + "label": { + "@none": [ + "8r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fa46cb8-25ee-474b-8c9e-ef3744c941ad.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/23519412-1fe1-4a05-b897-d332e2ff3213", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fa46cb8-25ee-474b-8c9e-ef3744c941ad.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7fa46cb8-25ee-474b-8c9e-ef3744c941ad", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7fa46cb8-25ee-474b-8c9e-ef3744c941ad/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/57ec9a83-8059-4148-8004-b152f449479c" + } + ] + }, + { + "label": { + "@none": [ + "8v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/44ec358c-6f78-427d-90b4-797eff650fc2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/badcb0c3-73be-42ca-a1d7-e9ddaff6df27", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/44ec358c-6f78-427d-90b4-797eff650fc2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/44ec358c-6f78-427d-90b4-797eff650fc2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/44ec358c-6f78-427d-90b4-797eff650fc2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1cb06aa6-6bfb-4079-8476-bdf85fd565db" + } + ] + }, + { + "label": { + "@none": [ + "9r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b262168d-25aa-40b4-b97a-3b2b12ee8559.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/02ddbcb8-a2bd-4327-aa54-447fb16191d2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b262168d-25aa-40b4-b97a-3b2b12ee8559.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b262168d-25aa-40b4-b97a-3b2b12ee8559", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b262168d-25aa-40b4-b97a-3b2b12ee8559/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7c6c6578-4ba2-48e6-9e71-ceedf180c5ac" + } + ] + }, + { + "label": { + "@none": [ + "9v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07b53a5f-8284-4f01-bc10-b07b209de587.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2cebf159-1eac-4697-a24e-5a1be36a2f50", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07b53a5f-8284-4f01-bc10-b07b209de587.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07b53a5f-8284-4f01-bc10-b07b209de587", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07b53a5f-8284-4f01-bc10-b07b209de587/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/57f792f5-890b-4c39-b29c-7eef964ca679" + } + ] + }, + { + "label": { + "@none": [ + "10r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdfee01-b1bb-4058-a7ba-b7d5094531b6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8ff93320-bcf6-4b0c-a7e0-20a9b15ea631", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdfee01-b1bb-4058-a7ba-b7d5094531b6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/acdfee01-b1bb-4058-a7ba-b7d5094531b6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/acdfee01-b1bb-4058-a7ba-b7d5094531b6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9c9ba7e-da06-4a1a-a4f4-13deaa1237be" + } + ] + }, + { + "label": { + "@none": [ + "10v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/82332e64-2b88-44a0-b0db-575f5a69e792.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e47492c-4080-4f0b-86d4-fc8d23585ee3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/82332e64-2b88-44a0-b0db-575f5a69e792.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/82332e64-2b88-44a0-b0db-575f5a69e792", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/82332e64-2b88-44a0-b0db-575f5a69e792/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/904d088f-b7d2-401f-9e7d-a02b8bcc2c50" + } + ] + }, + { + "label": { + "@none": [ + "11r" + ] + }, + "height": 7508, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3fd58f09-a557-474a-8bbe-e4285fa07924.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a655ff2f-419a-40b7-a392-0784aff9c9c3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3fd58f09-a557-474a-8bbe-e4285fa07924.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3fd58f09-a557-474a-8bbe-e4285fa07924", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3fd58f09-a557-474a-8bbe-e4285fa07924/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d51b1fbd-87cb-4882-bd01-0a4dc43de518" + } + ] + }, + { + "label": { + "@none": [ + "11v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4119f000-d428-4ce1-931a-6b9cd536e7ad.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eeffbdde-5024-4b2b-a9d8-0f6687ecb75f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4119f000-d428-4ce1-931a-6b9cd536e7ad.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4119f000-d428-4ce1-931a-6b9cd536e7ad", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4119f000-d428-4ce1-931a-6b9cd536e7ad/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/41894e05-9e9c-474b-90f1-e5b375083c1f" + } + ] + }, + { + "label": { + "@none": [ + "12r" + ] + }, + "height": 7508, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9015af7-3102-48cc-9762-4b89a43be3b4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6c2c08c4-e283-45ea-9550-f92d88186585", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9015af7-3102-48cc-9762-4b89a43be3b4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9015af7-3102-48cc-9762-4b89a43be3b4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9015af7-3102-48cc-9762-4b89a43be3b4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bceb4e6-26f1-40e2-b85e-832ac0d366c7" + } + ] + }, + { + "label": { + "@none": [ + "12v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c93830b-4b65-4409-834f-8fa981199391.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4183b593-6fa6-4f16-a456-898d26a7ecf3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c93830b-4b65-4409-834f-8fa981199391.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4c93830b-4b65-4409-834f-8fa981199391", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4c93830b-4b65-4409-834f-8fa981199391/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c5fdc4f-88cc-4d56-a9cd-df3b6d45a04c" + } + ] + }, + { + "label": { + "@none": [ + "13r" + ] + }, + "height": 7508, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae1e526a-1f25-4769-ba47-85ae64ba5398.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/23468170-992d-4200-973d-2a5b7727b5be", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae1e526a-1f25-4769-ba47-85ae64ba5398.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ae1e526a-1f25-4769-ba47-85ae64ba5398", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ae1e526a-1f25-4769-ba47-85ae64ba5398/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a6c0d300-605a-49a7-80fa-22d9cbbad6d1" + } + ] + }, + { + "label": { + "@none": [ + "13v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b417dae-563e-4979-b7b3-01dbc04c3eb1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ef8b0db1-e911-422b-a3e2-02b0a60f8389", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b417dae-563e-4979-b7b3-01dbc04c3eb1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b417dae-563e-4979-b7b3-01dbc04c3eb1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b417dae-563e-4979-b7b3-01dbc04c3eb1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ecb6768f-9d2a-4d05-bd95-c0ca6ce29436" + } + ] + }, + { + "label": { + "@none": [ + "14r" + ] + }, + "height": 7508, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9eca0d37-4be9-4a84-83be-3632d44da497.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/43b9d386-3efb-4a54-80b7-e33ddbc4e114", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9eca0d37-4be9-4a84-83be-3632d44da497.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9eca0d37-4be9-4a84-83be-3632d44da497", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9eca0d37-4be9-4a84-83be-3632d44da497/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/210151d0-c433-4b9c-8a16-e3d79469b0ab" + } + ] + }, + { + "label": { + "@none": [ + "14v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/31db4047-5e15-4deb-b223-7ba50e4b4768.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c725cb75-3f92-482b-824d-a039b1f125fc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/31db4047-5e15-4deb-b223-7ba50e4b4768.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/31db4047-5e15-4deb-b223-7ba50e4b4768", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/31db4047-5e15-4deb-b223-7ba50e4b4768/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0a152ee3-dad3-4a14-bb67-341c429d8310" + } + ] + }, + { + "label": { + "@none": [ + "15r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff18a11f-8279-40d0-b0f6-5ac927450a5f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/47ac3581-1c75-42b9-8790-f7a6b4755d92", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff18a11f-8279-40d0-b0f6-5ac927450a5f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff18a11f-8279-40d0-b0f6-5ac927450a5f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff18a11f-8279-40d0-b0f6-5ac927450a5f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7bf40b8-4770-4280-9d9b-cfae1ee6176f" + } + ] + }, + { + "label": { + "@none": [ + "15v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13981981-06ab-4a06-b1a1-03f116611651.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/95828ece-23a5-4197-9c51-0db4df1824cc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13981981-06ab-4a06-b1a1-03f116611651.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/13981981-06ab-4a06-b1a1-03f116611651", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/13981981-06ab-4a06-b1a1-03f116611651/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a8cd8c3-6979-4232-8d58-b392de049fb2" + } + ] + }, + { + "label": { + "@none": [ + "16r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f3c83ac-96e0-490f-bb03-230cf9bda636.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4eeb16f6-dcd8-41fc-b261-56cb0b83fbf9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f3c83ac-96e0-490f-bb03-230cf9bda636.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f3c83ac-96e0-490f-bb03-230cf9bda636", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f3c83ac-96e0-490f-bb03-230cf9bda636/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/af29c12a-6daf-4a6e-b97e-336d3fbaa7db" + } + ] + }, + { + "label": { + "@none": [ + "16v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20664711-ce82-4902-8377-c6921c636ed4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e8de6d69-ba40-4206-a642-dd01d00e0ec6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20664711-ce82-4902-8377-c6921c636ed4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/20664711-ce82-4902-8377-c6921c636ed4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/20664711-ce82-4902-8377-c6921c636ed4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ea34362-592e-4eed-b3ab-bcab3e716ed3" + } + ] + }, + { + "label": { + "@none": [ + "17r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b96119d-e918-4422-be90-361c69c073ef.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/235f2f9a-8b0b-4752-a711-b7a320e00163", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b96119d-e918-4422-be90-361c69c073ef.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b96119d-e918-4422-be90-361c69c073ef", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b96119d-e918-4422-be90-361c69c073ef/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92b8c9e3-8f30-4e57-a42c-b470a16bc2fb" + } + ] + }, + { + "label": { + "@none": [ + "17v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b27846a-997a-415a-a247-96d540382297.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b95d87f2-0a99-4c96-9c18-32c5065b79ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b27846a-997a-415a-a247-96d540382297.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b27846a-997a-415a-a247-96d540382297", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b27846a-997a-415a-a247-96d540382297/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/990a2c9d-6de3-4524-a464-b7a307b814eb" + } + ] + }, + { + "label": { + "@none": [ + "18r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/81ca8f4a-ee83-45f5-83ee-a26b2e1ce028", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33349de5-bcc9-4405-8fcd-fb58c0188ddc" + } + ] + }, + { + "label": { + "@none": [ + "18v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/523d1f67-77de-4c03-8197-a1a44d4ae603.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9532e761-4d88-4f64-9511-8625faf8bd02", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/523d1f67-77de-4c03-8197-a1a44d4ae603.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/523d1f67-77de-4c03-8197-a1a44d4ae603", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/523d1f67-77de-4c03-8197-a1a44d4ae603/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b84bf2d-c46b-406e-b5f5-2b7c6863bb65" + } + ] + }, + { + "label": { + "@none": [ + "19r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d5062cd-2fdb-489a-85a1-cb3f25b65580.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d946a7a0-ef12-4027-9be5-94de64e219a2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d5062cd-2fdb-489a-85a1-cb3f25b65580.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6d5062cd-2fdb-489a-85a1-cb3f25b65580", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6d5062cd-2fdb-489a-85a1-cb3f25b65580/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54436ac6-9d4a-4fb9-b687-a80ac698538b" + } + ] + }, + { + "label": { + "@none": [ + "19v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1847e26-5868-4bbd-a2c2-27d8d7e311fe.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f202da73-66f3-4b8a-9331-faeaa5777955", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1847e26-5868-4bbd-a2c2-27d8d7e311fe.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1847e26-5868-4bbd-a2c2-27d8d7e311fe", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1847e26-5868-4bbd-a2c2-27d8d7e311fe/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c349919-de3c-47fb-bd35-705a59ea68cb" + } + ] + }, + { + "label": { + "@none": [ + "20r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c67e4a1-38a4-445f-857a-932b2fb68fbe.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/915b830f-4516-4567-92d4-a28fa5d7e5c2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c67e4a1-38a4-445f-857a-932b2fb68fbe.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c67e4a1-38a4-445f-857a-932b2fb68fbe", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c67e4a1-38a4-445f-857a-932b2fb68fbe/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df8c1360-3dad-4894-8ae3-1a39be2d5385" + } + ] + }, + { + "label": { + "@none": [ + "20v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aaf4db86-69aa-4d4d-8c59-91022bcac7e5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8fad6a94-8534-4149-9c0e-6686fabba01a" + } + ] + }, + { + "label": { + "@none": [ + "21r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25def92b-6d81-465a-8379-0e6e6192a170.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a61c45f-6039-453e-b3b9-53c8f02da912", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25def92b-6d81-465a-8379-0e6e6192a170.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25def92b-6d81-465a-8379-0e6e6192a170", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25def92b-6d81-465a-8379-0e6e6192a170/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95c45760-3866-42e3-83c5-6794020f1005" + } + ] + }, + { + "label": { + "@none": [ + "21v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea481325-9eb4-4d72-a151-336497e75ec9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/17546251-1d12-4039-b5f4-42792c099ea1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea481325-9eb4-4d72-a151-336497e75ec9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea481325-9eb4-4d72-a151-336497e75ec9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea481325-9eb4-4d72-a151-336497e75ec9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e669e829-e41f-4f33-88a7-a276d39178dc" + } + ] + }, + { + "label": { + "@none": [ + "22r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/822c146e-6a8e-4054-8604-002754c6b8d5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2871b93f-1e9c-49d0-97b4-a581a0de29bb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/822c146e-6a8e-4054-8604-002754c6b8d5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/822c146e-6a8e-4054-8604-002754c6b8d5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/822c146e-6a8e-4054-8604-002754c6b8d5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7fc247d1-fcc8-45d4-a2c4-c16e805c33e8" + } + ] + }, + { + "label": { + "@none": [ + "22v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d25b8d8-126a-45fe-9cb9-279474adaa1f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e106705c-cfba-437f-8434-525f5dbc9311", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d25b8d8-126a-45fe-9cb9-279474adaa1f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d25b8d8-126a-45fe-9cb9-279474adaa1f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d25b8d8-126a-45fe-9cb9-279474adaa1f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eba1542d-f4fa-424e-a491-40e3aadee722" + } + ] + }, + { + "label": { + "@none": [ + "23r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e5af115-4046-45bc-8898-005904db75af.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2745d2b3-31e2-41e5-b01d-349b97822a49", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e5af115-4046-45bc-8898-005904db75af.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e5af115-4046-45bc-8898-005904db75af", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e5af115-4046-45bc-8898-005904db75af/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ecc2b10f-92bf-4bc9-b419-bdc3a1c8e8eb" + } + ] + }, + { + "label": { + "@none": [ + "23v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48df43ef-7e0a-47c5-b6d7-0548ab1125e7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ec8474b6-8016-47ac-a61b-36b6272354a8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48df43ef-7e0a-47c5-b6d7-0548ab1125e7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48df43ef-7e0a-47c5-b6d7-0548ab1125e7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48df43ef-7e0a-47c5-b6d7-0548ab1125e7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0345aee2-39bf-480d-9785-2208c75cab80" + } + ] + }, + { + "label": { + "@none": [ + "24r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf1feb36-a333-4f19-9375-8ece6f65fce8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad5e79d3-b313-4444-b3cf-df3f70aa52d2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf1feb36-a333-4f19-9375-8ece6f65fce8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cf1feb36-a333-4f19-9375-8ece6f65fce8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cf1feb36-a333-4f19-9375-8ece6f65fce8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/530f2794-c875-4d5b-8b94-f5a3bf05925c" + } + ] + }, + { + "label": { + "@none": [ + "24v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89e6b355-aaac-48ef-8c6f-bc95f3e91d32.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/726a9caf-45cb-4568-80d7-1a732ca803be", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89e6b355-aaac-48ef-8c6f-bc95f3e91d32.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89e6b355-aaac-48ef-8c6f-bc95f3e91d32", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89e6b355-aaac-48ef-8c6f-bc95f3e91d32/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f89d5d01-d060-4eee-a858-a8532c9730dc" + } + ] + }, + { + "label": { + "@none": [ + "25r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/87c49787-b1f6-4ac5-9625-164838f34f83", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eab9a3d3-1186-4493-92f6-ffc21c600d6c" + } + ] + }, + { + "label": { + "@none": [ + "25v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/802877e2-e416-4d0e-8752-28c3cf454509.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e25c5e9-3a60-42a7-a94b-9d64a99aef37", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/802877e2-e416-4d0e-8752-28c3cf454509.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/802877e2-e416-4d0e-8752-28c3cf454509", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/802877e2-e416-4d0e-8752-28c3cf454509/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3adc91ab-a1fd-4269-bb53-b3de935839b9" + } + ] + }, + { + "label": { + "@none": [ + "26r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/704d58fd-05d8-48ba-9c16-112e590fa189", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3253fbd3-9b81-48b4-8b35-cff27d9a03d6" + } + ] + }, + { + "label": { + "@none": [ + "26v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950375fa-947f-48b5-b89f-7d72ab9127b5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c25b61f7-35f2-4d6b-8364-c7813fc375e9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950375fa-947f-48b5-b89f-7d72ab9127b5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/950375fa-947f-48b5-b89f-7d72ab9127b5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/950375fa-947f-48b5-b89f-7d72ab9127b5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92e8e645-bca2-4277-92eb-578e716d9459" + } + ] + }, + { + "label": { + "@none": [ + "27r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf903a17-23c7-4551-850a-37e29158e45a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7314d2c4-efe4-4846-9c8e-6e0ece1da5a9" + } + ] + }, + { + "label": { + "@none": [ + "27v" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3d72c265-de4e-40ef-9416-261b896fec88.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f84affe6-367b-4a4c-8295-446397fa6e71", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3d72c265-de4e-40ef-9416-261b896fec88.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3d72c265-de4e-40ef-9416-261b896fec88", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3d72c265-de4e-40ef-9416-261b896fec88/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/13d89320-682f-4e81-a1f9-6ffc71a68c23" + } + ] + }, + { + "label": { + "@none": [ + "28r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8113d484-f571-4932-8b97-19481c4ed672.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6bd12f62-d5e8-4fea-8047-cca116093d70", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8113d484-f571-4932-8b97-19481c4ed672.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8113d484-f571-4932-8b97-19481c4ed672", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8113d484-f571-4932-8b97-19481c4ed672/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e3fceaf-fe69-445f-8d09-7d62cc065204" + } + ] + }, + { + "label": { + "@none": [ + "28v" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92cbd746-0be3-4a8f-b171-32002d1a5ccf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2929d820-9003-40ef-8a54-2a55c7a32086", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92cbd746-0be3-4a8f-b171-32002d1a5ccf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92cbd746-0be3-4a8f-b171-32002d1a5ccf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92cbd746-0be3-4a8f-b171-32002d1a5ccf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b82e028-9420-4700-ac7e-f406c4d112f9" + } + ] + }, + { + "label": { + "@none": [ + "29r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e9bbfbba-3ccf-4394-93ca-1ad762a14306.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b00205a2-0532-4dc0-8d8e-7c895a91fba9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e9bbfbba-3ccf-4394-93ca-1ad762a14306.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e9bbfbba-3ccf-4394-93ca-1ad762a14306", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e9bbfbba-3ccf-4394-93ca-1ad762a14306/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11cdb8da-f10e-4df6-8851-f2b2bca68c49" + } + ] + }, + { + "label": { + "@none": [ + "29v" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/220f5b54-b5cc-44b8-b472-0aa1c9027b6b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9497c660-37ee-4ff0-996f-ddb5484131e9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/220f5b54-b5cc-44b8-b472-0aa1c9027b6b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/220f5b54-b5cc-44b8-b472-0aa1c9027b6b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/220f5b54-b5cc-44b8-b472-0aa1c9027b6b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f52e5087-6c59-45f9-bf4c-d36f9e877afd" + } + ] + }, + { + "label": { + "@none": [ + "30r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e1ee61-0d7d-4db3-87d3-e151dec37126.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9dd9eb77-98fb-40ba-9577-81ec36b2012f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e1ee61-0d7d-4db3-87d3-e151dec37126.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b3e1ee61-0d7d-4db3-87d3-e151dec37126", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b3e1ee61-0d7d-4db3-87d3-e151dec37126/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2cdaace-1238-4729-9dcf-f093862b98ce" + } + ] + }, + { + "label": { + "@none": [ + "30v" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89a700b6-b2e1-47c5-bb2b-a242d1448bdb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cd263f7d-d1af-4417-b6fc-4e52ab1b23f5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89a700b6-b2e1-47c5-bb2b-a242d1448bdb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89a700b6-b2e1-47c5-bb2b-a242d1448bdb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89a700b6-b2e1-47c5-bb2b-a242d1448bdb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acbbf1e8-0fea-462a-a34c-62a302e49ebd" + } + ] + }, + { + "label": { + "@none": [ + "31r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8636713f-4abb-43ae-8726-f6d29e25616f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/51196c55-a6a7-4844-930d-8d1bba02e6dd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8636713f-4abb-43ae-8726-f6d29e25616f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8636713f-4abb-43ae-8726-f6d29e25616f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8636713f-4abb-43ae-8726-f6d29e25616f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d90c4c42-dd27-45cc-b54d-6fa58eb9a68a" + } + ] + }, + { + "label": { + "@none": [ + "31v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d45ce-4233-410c-b8ef-c784b40ff2a5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/473fbf26-699b-44ae-8f9c-d98d70be01f8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d45ce-4233-410c-b8ef-c784b40ff2a5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e01d45ce-4233-410c-b8ef-c784b40ff2a5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e01d45ce-4233-410c-b8ef-c784b40ff2a5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c81cdcb-983c-4208-ac48-dc91a5b20932" + } + ] + }, + { + "label": { + "@none": [ + "32r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1c31639-6855-4f67-8c0b-e26f05a78067.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/718cd3af-fa49-4c33-8a67-dfce7d8b9113", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1c31639-6855-4f67-8c0b-e26f05a78067.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1c31639-6855-4f67-8c0b-e26f05a78067", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1c31639-6855-4f67-8c0b-e26f05a78067/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/187a2628-77d0-46a4-a04f-bb5edc525152" + } + ] + }, + { + "label": { + "@none": [ + "32v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3962476b-fe76-48cb-94fb-c092933ffdd0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a04d83a6-f232-483c-a0e9-83edee39ced1" + } + ] + }, + { + "label": { + "@none": [ + "33r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8992a925-c4b0-469b-9c29-9a81d0686991.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/04c63e57-0a1f-47c6-b1cc-11052642d68b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8992a925-c4b0-469b-9c29-9a81d0686991.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8992a925-c4b0-469b-9c29-9a81d0686991", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8992a925-c4b0-469b-9c29-9a81d0686991/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b5d858f-9a86-408b-9196-21e34b07b67a" + } + ] + }, + { + "label": { + "@none": [ + "33v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65590e28-eab8-43d6-8c16-3d46dcce17db.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a0b0c5b7-97f3-4c6a-ab17-9e5fce2f2f1c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65590e28-eab8-43d6-8c16-3d46dcce17db.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/65590e28-eab8-43d6-8c16-3d46dcce17db", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/65590e28-eab8-43d6-8c16-3d46dcce17db/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81f500cb-b048-4181-aab9-0bedb7ff9c92" + } + ] + }, + { + "label": { + "@none": [ + "34r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b8d283f4-66de-4ad4-903d-87f6eb8878c9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/01ce001d-a48b-45cb-9d71-b0a12005386a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b8d283f4-66de-4ad4-903d-87f6eb8878c9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b8d283f4-66de-4ad4-903d-87f6eb8878c9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b8d283f4-66de-4ad4-903d-87f6eb8878c9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91080baa-4f54-48c8-b8cb-07fc6c161fad" + } + ] + }, + { + "label": { + "@none": [ + "34v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1ab1f99e-a754-424a-99bd-892013f7af0e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/84e565f6-4b1c-4604-b35a-50c631785f64", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1ab1f99e-a754-424a-99bd-892013f7af0e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1ab1f99e-a754-424a-99bd-892013f7af0e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1ab1f99e-a754-424a-99bd-892013f7af0e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bcff7f33-2755-430c-8ad0-d8aa6ce9371b" + } + ] + }, + { + "label": { + "@none": [ + "35r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b289ce-4edf-419a-a6f7-fd1be93f6c66.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/90f86141-6d22-45a0-98b0-a1f7af99f0f0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b289ce-4edf-419a-a6f7-fd1be93f6c66.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6b289ce-4edf-419a-a6f7-fd1be93f6c66", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6b289ce-4edf-419a-a6f7-fd1be93f6c66/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08ec1479-c441-433f-8897-5960f680bfce" + } + ] + }, + { + "label": { + "@none": [ + "35v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bbacd88a-bb40-47ae-baca-2ff2e0b6e884.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bb00488-c1e5-4428-8ff1-314c067e4846", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bbacd88a-bb40-47ae-baca-2ff2e0b6e884.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bbacd88a-bb40-47ae-baca-2ff2e0b6e884", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bbacd88a-bb40-47ae-baca-2ff2e0b6e884/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7860f075-d55e-430d-b68c-90ad93eb51a8" + } + ] + }, + { + "label": { + "@none": [ + "36r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29360df0-35dc-4e70-b825-5a693212d18f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ab5b7b87-7d40-45b2-b719-3581d36fe7ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29360df0-35dc-4e70-b825-5a693212d18f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/29360df0-35dc-4e70-b825-5a693212d18f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/29360df0-35dc-4e70-b825-5a693212d18f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38c3068b-2f70-4179-ac85-095b5445854b" + } + ] + }, + { + "label": { + "@none": [ + "36v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/00ecc695-d5c6-4ea1-84ae-114abb587f6f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0cad13c7-bc87-498f-8f2e-a140303ee536", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/00ecc695-d5c6-4ea1-84ae-114abb587f6f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/00ecc695-d5c6-4ea1-84ae-114abb587f6f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/00ecc695-d5c6-4ea1-84ae-114abb587f6f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df5b0539-b93b-4cd0-845c-bf8043f3c4f6" + } + ] + }, + { + "label": { + "@none": [ + "37r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a16d5fa0-01b0-4218-aff0-6990fe8ff5ea", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5572659a-2285-4858-a372-bd653d5ebd18" + } + ] + }, + { + "label": { + "@none": [ + "37v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0767f8f7-b613-4614-a152-6fb51fab8ecf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/43be2a24-d712-442f-9eff-9d805042cd20", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0767f8f7-b613-4614-a152-6fb51fab8ecf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0767f8f7-b613-4614-a152-6fb51fab8ecf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0767f8f7-b613-4614-a152-6fb51fab8ecf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0d373d4-76d3-430a-a4ef-fba84d7a188d" + } + ] + }, + { + "label": { + "@none": [ + "38r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8073ec9b-35bc-4b9c-89ce-6933db9fc323", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b6445c33-8c9f-45ab-99ee-bc7f29b03a61" + } + ] + }, + { + "label": { + "@none": [ + "38v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9c9b500-ad8b-4f7c-833d-acdeaca0af98.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/de208333-3595-48a9-9ebe-368bb1e9dadb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9c9b500-ad8b-4f7c-833d-acdeaca0af98.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9c9b500-ad8b-4f7c-833d-acdeaca0af98", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9c9b500-ad8b-4f7c-833d-acdeaca0af98/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/66f2f0ca-89af-4ce1-8123-e2a9ec399ab1" + } + ] + }, + { + "label": { + "@none": [ + "39r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a6fa90f-b630-47d9-9e00-d0a205dc33fa.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7c41f4cd-ca16-4fd0-8085-0b0eb37d0b4d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a6fa90f-b630-47d9-9e00-d0a205dc33fa.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a6fa90f-b630-47d9-9e00-d0a205dc33fa", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a6fa90f-b630-47d9-9e00-d0a205dc33fa/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc2e85e9-f391-4ce4-be36-aa56132302d0" + } + ] + }, + { + "label": { + "@none": [ + "39v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b0509f89-952a-49e9-ac53-e8690dda763e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/05186d9d-ee00-4cbc-b78c-6facf2ec33ad", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b0509f89-952a-49e9-ac53-e8690dda763e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b0509f89-952a-49e9-ac53-e8690dda763e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b0509f89-952a-49e9-ac53-e8690dda763e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39c95e95-a567-4ea1-9c0b-32dd0c780ee9" + } + ] + }, + { + "label": { + "@none": [ + "40r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/28fc1b91-c722-4954-85a4-9e61baccf5f4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50b818ac-732a-49c5-af60-fe4ea8986546" + } + ] + }, + { + "label": { + "@none": [ + "40v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1dfcd9c-6550-4023-ac69-9a7403e8ec10.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c1471edf-d688-4cdf-8bb4-0d963067e49b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1dfcd9c-6550-4023-ac69-9a7403e8ec10.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1dfcd9c-6550-4023-ac69-9a7403e8ec10", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1dfcd9c-6550-4023-ac69-9a7403e8ec10/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d63b0110-a28d-4ec6-b0f0-61ba4dbdff02" + } + ] + }, + { + "label": { + "@none": [ + "41r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/36d20387-2cb5-45a4-b8fb-a9ec16b19b50", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8c0b74b-2014-42ea-bca6-e60a9341ca76" + } + ] + }, + { + "label": { + "@none": [ + "41v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7cf22052-f342-4d71-af24-5413a106ca2b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3a22e1ab-a94d-4188-bc46-0583a6ec23b6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7cf22052-f342-4d71-af24-5413a106ca2b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7cf22052-f342-4d71-af24-5413a106ca2b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7cf22052-f342-4d71-af24-5413a106ca2b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a3eca48e-99dc-4c1e-93d4-f4fdad4543d1" + } + ] + }, + { + "label": { + "@none": [ + "42r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e875c2ab-534a-498c-a85e-7fe405df620a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df5f89db-5fd8-4971-b0f7-9cb900876c29", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e875c2ab-534a-498c-a85e-7fe405df620a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e875c2ab-534a-498c-a85e-7fe405df620a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e875c2ab-534a-498c-a85e-7fe405df620a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dfa05fb6-86f3-4493-9b68-685acb305b3b" + } + ] + }, + { + "label": { + "@none": [ + "42v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee935938-4b97-4f03-b1c2-6b2596bcc82f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/832c07ad-914d-4c49-88d9-0303eec6b030", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee935938-4b97-4f03-b1c2-6b2596bcc82f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee935938-4b97-4f03-b1c2-6b2596bcc82f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee935938-4b97-4f03-b1c2-6b2596bcc82f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5097fd98-6725-43a8-b59a-46f8660401a6" + } + ] + }, + { + "label": { + "@none": [ + "43r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/826dd0f3-0d2e-4e58-8a6c-807746337d02.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5718069b-2cde-4c64-8081-2076bddb333a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/826dd0f3-0d2e-4e58-8a6c-807746337d02.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/826dd0f3-0d2e-4e58-8a6c-807746337d02", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/826dd0f3-0d2e-4e58-8a6c-807746337d02/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fac98ad6-5f6e-4bf3-af97-6aaa0f064528" + } + ] + }, + { + "label": { + "@none": [ + "43v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4348ef1e-7040-4817-bee7-a431535c69c8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ced50e91-a623-43fb-aea6-db40078baa84" + } + ] + }, + { + "label": { + "@none": [ + "44r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/06cedddd-8253-45f9-ad0b-2605a13d176e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/495a9cb6-61db-4ead-9b93-ed23f9edd147", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/06cedddd-8253-45f9-ad0b-2605a13d176e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/06cedddd-8253-45f9-ad0b-2605a13d176e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/06cedddd-8253-45f9-ad0b-2605a13d176e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f42cbd34-0ed3-4def-bd9a-d33a69525f00" + } + ] + }, + { + "label": { + "@none": [ + "44v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f82dbcb3-90c5-4ebd-960b-fcdcbd7dfd4b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82ef8853-85cb-41a5-b01f-c3b2a6806267" + } + ] + }, + { + "label": { + "@none": [ + "45r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92e67504-dd42-4263-af44-30774c63150b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/209f6311-e47a-4b96-b574-f3b676b0b7ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92e67504-dd42-4263-af44-30774c63150b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92e67504-dd42-4263-af44-30774c63150b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92e67504-dd42-4263-af44-30774c63150b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a636cc4e-5b56-4a1f-bd22-b528a813c563" + } + ] + }, + { + "label": { + "@none": [ + "45v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee144a5f-9c3e-4711-a200-a5358ddac2ea.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2600b9c8-6921-4ab0-9f71-9c11879e11ab", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee144a5f-9c3e-4711-a200-a5358ddac2ea.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee144a5f-9c3e-4711-a200-a5358ddac2ea", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee144a5f-9c3e-4711-a200-a5358ddac2ea/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a6f65a4-2747-4ace-9eb0-c0d003781823" + } + ] + }, + { + "label": { + "@none": [ + "46r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c5106dd-6355-4c66-97cf-cf30a852999e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/73c4b6f4-d368-42d3-97f5-c7d9ce2e9e09", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c5106dd-6355-4c66-97cf-cf30a852999e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4c5106dd-6355-4c66-97cf-cf30a852999e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4c5106dd-6355-4c66-97cf-cf30a852999e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4490992b-d9a9-4890-89cd-7eb14165f7b3" + } + ] + }, + { + "label": { + "@none": [ + "46v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/054f556e-7b00-4b15-a190-e561abd3e4b9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/caf27b26-58ab-4a10-88a5-faa1d4125f8b" + } + ] + }, + { + "label": { + "@none": [ + "47r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a30b97ed-e348-4b70-a55b-252062172178.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6f8396a1-3d16-487a-b207-b04eda9990a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a30b97ed-e348-4b70-a55b-252062172178.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a30b97ed-e348-4b70-a55b-252062172178", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a30b97ed-e348-4b70-a55b-252062172178/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39929aa9-9f2e-4621-9923-767166f69736" + } + ] + }, + { + "label": { + "@none": [ + "47v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7edff7ea-4656-40e9-b472-6cc2273cf905", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f5da7c4-291b-45d3-a881-5121da3cd61b" + } + ] + }, + { + "label": { + "@none": [ + "48r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef117d19-e1e7-4b6b-ab73-93e2f4838d05.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/91d933db-21d0-49bb-9ea9-34177393400e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef117d19-e1e7-4b6b-ab73-93e2f4838d05.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef117d19-e1e7-4b6b-ab73-93e2f4838d05", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef117d19-e1e7-4b6b-ab73-93e2f4838d05/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5b3b925-3259-414c-a172-7e0cb4624d69" + } + ] + }, + { + "label": { + "@none": [ + "48v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453018ba-9857-4cab-9a23-5c5277bb5f65.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/feb8db9d-644c-4680-9b21-546be9ece5ac", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453018ba-9857-4cab-9a23-5c5277bb5f65.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453018ba-9857-4cab-9a23-5c5277bb5f65", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453018ba-9857-4cab-9a23-5c5277bb5f65/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73e5e958-6dac-44ff-a20d-a85c202dbd3d" + } + ] + }, + { + "label": { + "@none": [ + "49r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0cbc733c-a00b-4d64-b027-7f4773707f2c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6c44f856-06ff-4a64-8c64-e88fbdc5ca30", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0cbc733c-a00b-4d64-b027-7f4773707f2c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0cbc733c-a00b-4d64-b027-7f4773707f2c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0cbc733c-a00b-4d64-b027-7f4773707f2c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96f6ef36-2b41-496f-a452-ded41987ebd8" + } + ] + }, + { + "label": { + "@none": [ + "49v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e2716e7-be34-4d43-9647-f8787fb990e6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3550fd9c-6b2e-4bc7-9dab-53fb607dba5d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e2716e7-be34-4d43-9647-f8787fb990e6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e2716e7-be34-4d43-9647-f8787fb990e6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e2716e7-be34-4d43-9647-f8787fb990e6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50ad9cf7-ad45-46c3-8c1a-a0ab588d7062" + } + ] + }, + { + "label": { + "@none": [ + "50r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03818fac-9ba6-4382-b339-e27a0a075f31.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ec74d068-c198-472e-9551-8eebb03bbf2d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03818fac-9ba6-4382-b339-e27a0a075f31.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/03818fac-9ba6-4382-b339-e27a0a075f31", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/03818fac-9ba6-4382-b339-e27a0a075f31/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2a6adde-280f-4161-8094-dc5c7b92e779" + } + ] + }, + { + "label": { + "@none": [ + "50v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/976740dd-7304-4603-ad61-2476cf6a2645.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/10e7c686-7225-4cb3-88d7-ea30da4fc3a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/976740dd-7304-4603-ad61-2476cf6a2645.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/976740dd-7304-4603-ad61-2476cf6a2645", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/976740dd-7304-4603-ad61-2476cf6a2645/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4b45f87-a76b-443f-a671-c7fb36a9782d" + } + ] + }, + { + "label": { + "@none": [ + "51r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d04440d1-b322-49a3-a6db-7d9a1a345628.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/080ebd46-07da-4ce1-b763-d9679730424a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d04440d1-b322-49a3-a6db-7d9a1a345628.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d04440d1-b322-49a3-a6db-7d9a1a345628", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d04440d1-b322-49a3-a6db-7d9a1a345628/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/76b6d615-ea23-413a-b58a-df19f9eb2713" + } + ] + }, + { + "label": { + "@none": [ + "51v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08f87bea-9079-4b80-a898-e31f39e47d3a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/07ceda15-a08d-4c9e-a11c-c60cbce0fd79", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08f87bea-9079-4b80-a898-e31f39e47d3a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/08f87bea-9079-4b80-a898-e31f39e47d3a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/08f87bea-9079-4b80-a898-e31f39e47d3a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11180a3c-76ae-44dd-a8af-75bf9d352950" + } + ] + }, + { + "label": { + "@none": [ + "52r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/367872af-4672-480a-8d35-5e69687cb531.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dfc4310a-3d44-4cbf-9750-53e4a3e3a17b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/367872af-4672-480a-8d35-5e69687cb531.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/367872af-4672-480a-8d35-5e69687cb531", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/367872af-4672-480a-8d35-5e69687cb531/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2bcd97e-0fe0-4847-ba93-0dee2a411347" + } + ] + }, + { + "label": { + "@none": [ + "52v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdfd0e06-a5c2-4509-98cb-845c2a2efd87.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a5fa686-c41a-4890-bba4-4dbc1a16d083", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdfd0e06-a5c2-4509-98cb-845c2a2efd87.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cdfd0e06-a5c2-4509-98cb-845c2a2efd87", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cdfd0e06-a5c2-4509-98cb-845c2a2efd87/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3cce0ec4-89e6-47e0-be74-7ed7526a67c1" + } + ] + }, + { + "label": { + "@none": [ + "53r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a268f689-fab8-452d-99e1-85b2cb333175.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1a65491-aa08-4249-9b30-dcb0e6e5e3f7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a268f689-fab8-452d-99e1-85b2cb333175.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a268f689-fab8-452d-99e1-85b2cb333175", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a268f689-fab8-452d-99e1-85b2cb333175/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/599eff65-b50b-4121-8ce7-62d8e26adc6a" + } + ] + }, + { + "label": { + "@none": [ + "53v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b536060-32eb-40d8-bf58-85e38413a838.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8316873b-5b04-42d2-a1c8-e1d0813d8850", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b536060-32eb-40d8-bf58-85e38413a838.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b536060-32eb-40d8-bf58-85e38413a838", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b536060-32eb-40d8-bf58-85e38413a838/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b00a527-793f-479e-8de9-49c813f9b1b6" + } + ] + }, + { + "label": { + "@none": [ + "54r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e7dea5-64a4-4567-9b29-15ff2182c8bb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f0b37939-d287-42a4-bcaf-24f15f8d33fe", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e7dea5-64a4-4567-9b29-15ff2182c8bb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b3e7dea5-64a4-4567-9b29-15ff2182c8bb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b3e7dea5-64a4-4567-9b29-15ff2182c8bb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72840073-df37-4304-bb31-bd4b79364453" + } + ] + }, + { + "label": { + "@none": [ + "54v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f467df5c-b11b-4a62-888f-b42d11d1e604.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/89d493f9-5cb7-4891-b4cc-a0334b1b2108", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f467df5c-b11b-4a62-888f-b42d11d1e604.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f467df5c-b11b-4a62-888f-b42d11d1e604", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f467df5c-b11b-4a62-888f-b42d11d1e604/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a1fe4f6e-5d79-4764-93d3-3f42a343b1b8" + } + ] + }, + { + "label": { + "@none": [ + "55r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a48d309e-de6c-4e29-b759-5b8f57ed1f00.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9b88d16d-3348-42d9-aaae-57c3a31d971e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a48d309e-de6c-4e29-b759-5b8f57ed1f00.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a48d309e-de6c-4e29-b759-5b8f57ed1f00", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a48d309e-de6c-4e29-b759-5b8f57ed1f00/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8a3973d-0ed8-400d-9e1e-3f16eda131b8" + } + ] + }, + { + "label": { + "@none": [ + "55v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b06c824-c01d-4a0c-8a2b-214f2128bfe7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f5436d94-081a-4d7b-b7b2-7539f9637806", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b06c824-c01d-4a0c-8a2b-214f2128bfe7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b06c824-c01d-4a0c-8a2b-214f2128bfe7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b06c824-c01d-4a0c-8a2b-214f2128bfe7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9247ea6c-b3c3-4193-bc5d-e1b65b12295a" + } + ] + }, + { + "label": { + "@none": [ + "56r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f33b4860-8394-4527-9ccf-81e0233cd363.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b76afa82-423e-4c85-bc1e-e05135cfe58c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f33b4860-8394-4527-9ccf-81e0233cd363.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f33b4860-8394-4527-9ccf-81e0233cd363", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f33b4860-8394-4527-9ccf-81e0233cd363/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23cc2d22-d525-4675-8633-a3eae6034fc5" + } + ] + }, + { + "label": { + "@none": [ + "56v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa0f198-456f-41ab-a767-451d6b4d9264.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/18ee272f-3a27-4d15-8b6a-2437502950a1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa0f198-456f-41ab-a767-451d6b4d9264.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8aa0f198-456f-41ab-a767-451d6b4d9264", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8aa0f198-456f-41ab-a767-451d6b4d9264/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b79a885-fe3e-4513-8c84-a30479213f3e" + } + ] + }, + { + "label": { + "@none": [ + "57r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91907681-e425-4106-9d0b-413910441063.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4da52851-ea89-4c14-93db-a9bf4eee0d66", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91907681-e425-4106-9d0b-413910441063.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91907681-e425-4106-9d0b-413910441063", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91907681-e425-4106-9d0b-413910441063/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96f3bc69-92e4-4be7-95a1-0d86f7b434b6" + } + ] + }, + { + "label": { + "@none": [ + "57v" + ] + }, + "height": 7520, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/851bcd6a-06aa-4742-bdbb-5e0426833c45.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2197f820-1b3a-4bb1-94a3-6a212a662bce", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/851bcd6a-06aa-4742-bdbb-5e0426833c45.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/851bcd6a-06aa-4742-bdbb-5e0426833c45", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/851bcd6a-06aa-4742-bdbb-5e0426833c45/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2933ba50-f307-4a9f-a355-6f8f1f26d3b8" + } + ] + }, + { + "label": { + "@none": [ + "58r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8462d708-1ecf-46f1-bcf5-4e9d64225101.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bf30863e-0ab1-47ee-9857-ce6bfe58898b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8462d708-1ecf-46f1-bcf5-4e9d64225101.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8462d708-1ecf-46f1-bcf5-4e9d64225101", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8462d708-1ecf-46f1-bcf5-4e9d64225101/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8c2f48a-e8d1-4282-8850-4a6bc87009b5" + } + ] + }, + { + "label": { + "@none": [ + "58v" + ] + }, + "height": 7520, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/abce65d9-73d4-43ae-8225-52b43a19505a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/980a07e8-0c05-4c4a-a538-be7adc247dd6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/abce65d9-73d4-43ae-8225-52b43a19505a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/abce65d9-73d4-43ae-8225-52b43a19505a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/abce65d9-73d4-43ae-8225-52b43a19505a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf523d77-8a02-45dd-9191-af527fb5128f" + } + ] + }, + { + "label": { + "@none": [ + "59r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53e8014a-2f29-4883-b01b-bcc258656518.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/82036171-6fec-4940-9917-0dc27f4d2635", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53e8014a-2f29-4883-b01b-bcc258656518.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/53e8014a-2f29-4883-b01b-bcc258656518", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/53e8014a-2f29-4883-b01b-bcc258656518/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4531ac5b-d46c-4815-aed2-46d1323f5396" + } + ] + }, + { + "label": { + "@none": [ + "59v" + ] + }, + "height": 7520, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a77b52d9-e29f-4246-b30f-20e3b0e327f2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0ccebfd3-67b1-4b8e-ae10-c2380473e81d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a77b52d9-e29f-4246-b30f-20e3b0e327f2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a77b52d9-e29f-4246-b30f-20e3b0e327f2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a77b52d9-e29f-4246-b30f-20e3b0e327f2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f840c33-c5f1-495b-b1ad-2434588f1633" + } + ] + }, + { + "label": { + "@none": [ + "60r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58eaefe1-3d82-417d-bf75-4a65a2fef4cc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/27b18c2a-4c7e-4fd6-8b1d-0be29c21fb01", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58eaefe1-3d82-417d-bf75-4a65a2fef4cc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/58eaefe1-3d82-417d-bf75-4a65a2fef4cc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/58eaefe1-3d82-417d-bf75-4a65a2fef4cc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5126fb6-3a89-4260-9ebb-f9d14566e175" + } + ] + }, + { + "label": { + "@none": [ + "60v" + ] + }, + "height": 7520, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92bf74ac-d4e6-4547-9e51-3159afa5f351.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cc1e33c7-4e5f-4d79-a1be-5266672e9eb3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92bf74ac-d4e6-4547-9e51-3159afa5f351.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92bf74ac-d4e6-4547-9e51-3159afa5f351", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92bf74ac-d4e6-4547-9e51-3159afa5f351/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/544652a0-4f96-40ec-ab3e-3c7bd6b8fd4a" + } + ] + }, + { + "label": { + "@none": [ + "61r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cd5f179b-dbff-4bb3-9676-0422e83ae574.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd0b8cdf-ded5-4142-ad18-d5f3d8c663fb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cd5f179b-dbff-4bb3-9676-0422e83ae574.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cd5f179b-dbff-4bb3-9676-0422e83ae574", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cd5f179b-dbff-4bb3-9676-0422e83ae574/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ccb30a0-f370-47a3-98cb-990cee26e3d8" + } + ] + }, + { + "label": { + "@none": [ + "61v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2d2fa7a7-3857-446f-bdae-a71a4063fb13", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3962064-8e8b-430a-b7f1-e30fa77f817a" + } + ] + }, + { + "label": { + "@none": [ + "62r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b82193d2-d8b7-41eb-910f-95ceaa86f6ec.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9918436d-851a-47e5-b494-2e616d1a3eb0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b82193d2-d8b7-41eb-910f-95ceaa86f6ec.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b82193d2-d8b7-41eb-910f-95ceaa86f6ec", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b82193d2-d8b7-41eb-910f-95ceaa86f6ec/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f9faed0-5abf-4868-9db4-15d2d2f117d4" + } + ] + }, + { + "label": { + "@none": [ + "62v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ea5e42a-b298-453e-9b4b-d1d4621db9b5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2a4c75ba-62c9-496b-b917-209222acaddd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ea5e42a-b298-453e-9b4b-d1d4621db9b5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ea5e42a-b298-453e-9b4b-d1d4621db9b5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ea5e42a-b298-453e-9b4b-d1d4621db9b5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a25eb08-24ad-423b-8202-203a8aa64a96" + } + ] + }, + { + "label": { + "@none": [ + "63r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/085671a2-79ba-4107-bb09-834faac8c430.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb17ac9c-f1c1-49f9-90df-25b3a6492f22", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/085671a2-79ba-4107-bb09-834faac8c430.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/085671a2-79ba-4107-bb09-834faac8c430", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/085671a2-79ba-4107-bb09-834faac8c430/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/843cd539-458a-401b-afe6-b8ef36b0c267" + } + ] + }, + { + "label": { + "@none": [ + "63v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fbb07b10-c8f1-40d3-b4e2-fa86212482b1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0af71c12-613e-4b7a-a5dc-a40e76e3937a" + } + ] + }, + { + "label": { + "@none": [ + "64r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/15f7a804-dd81-4f80-9f0d-c72b36559f9f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b0c98109-5d26-4ac1-9617-a1778c5b8694", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/15f7a804-dd81-4f80-9f0d-c72b36559f9f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/15f7a804-dd81-4f80-9f0d-c72b36559f9f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/15f7a804-dd81-4f80-9f0d-c72b36559f9f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53ec964a-2abb-431e-aa78-2e31c7ec7b5f" + } + ] + }, + { + "label": { + "@none": [ + "64v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/85e0444f-887b-4a10-8928-629a83a36efd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5aa813cb-4258-4578-8e86-b842a2610274", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/85e0444f-887b-4a10-8928-629a83a36efd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/85e0444f-887b-4a10-8928-629a83a36efd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/85e0444f-887b-4a10-8928-629a83a36efd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae6c37c3-ac92-4987-965b-dd0fe5d134d4" + } + ] + }, + { + "label": { + "@none": [ + "65r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f31aeade-af54-4354-9ad1-70ed644478ae.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e072cca0-7d26-49f8-b887-faf45921fd81", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f31aeade-af54-4354-9ad1-70ed644478ae.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f31aeade-af54-4354-9ad1-70ed644478ae", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f31aeade-af54-4354-9ad1-70ed644478ae/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48e54a9d-da78-46b5-a8af-65cb40f7fdfd" + } + ] + }, + { + "label": { + "@none": [ + "65v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/94c85481-e2d7-4568-bc6a-395dc297ba89.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8976081b-3edc-4016-ab09-fec4429bbac6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/94c85481-e2d7-4568-bc6a-395dc297ba89.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/94c85481-e2d7-4568-bc6a-395dc297ba89", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/94c85481-e2d7-4568-bc6a-395dc297ba89/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33c200e3-2f82-4899-a1bb-d892342de8ba" + } + ] + }, + { + "label": { + "@none": [ + "66r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/45640175-527d-4315-849d-390ff253a3bc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eeb5a086-e8db-4804-8a65-7e8e6660a5ce", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/45640175-527d-4315-849d-390ff253a3bc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/45640175-527d-4315-849d-390ff253a3bc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/45640175-527d-4315-849d-390ff253a3bc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b917809b-e1ca-4da1-8347-74c80df45275" + } + ] + }, + { + "label": { + "@none": [ + "66v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1246128f-12cf-4639-b89e-92a1dc78cec2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff88b45b-8df1-49dc-858c-b7c5770201d9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1246128f-12cf-4639-b89e-92a1dc78cec2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1246128f-12cf-4639-b89e-92a1dc78cec2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1246128f-12cf-4639-b89e-92a1dc78cec2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3dfb987a-a4d3-400e-852c-1538b8376bd5" + } + ] + }, + { + "label": { + "@none": [ + "67r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0de5ff4e-698a-4a3e-bdf0-bd25925a0c99", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c55ef6a-5871-4c04-9e0b-6b9bdbf2893a" + } + ] + }, + { + "label": { + "@none": [ + "67v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/771b0cba-8e3b-4d19-8aad-f3879096ce68.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/662010a4-1432-40ae-a33f-1157cd752850", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/771b0cba-8e3b-4d19-8aad-f3879096ce68.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/771b0cba-8e3b-4d19-8aad-f3879096ce68", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/771b0cba-8e3b-4d19-8aad-f3879096ce68/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d0da307-0ced-4f75-8580-e43a73d851b6" + } + ] + }, + { + "label": { + "@none": [ + "68r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/254a94e4-4e78-4a9c-99eb-e4df93799f87.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5c3cd31-25bc-4298-a12b-2e6d95f04117", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/254a94e4-4e78-4a9c-99eb-e4df93799f87.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/254a94e4-4e78-4a9c-99eb-e4df93799f87", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/254a94e4-4e78-4a9c-99eb-e4df93799f87/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea8c51af-73ae-401a-82c0-d25e9d1d7728" + } + ] + }, + { + "label": { + "@none": [ + "68v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d4427886-add8-437f-a00d-37bfffb4b543.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/86d951da-4368-4723-9f76-ae68449141e1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d4427886-add8-437f-a00d-37bfffb4b543.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d4427886-add8-437f-a00d-37bfffb4b543", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d4427886-add8-437f-a00d-37bfffb4b543/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8be7696-08b5-45ed-ba68-5d8420dd1252" + } + ] + }, + { + "label": { + "@none": [ + "69r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4105a5e6-0018-40a7-9d97-1eb086addb89.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/13ca6d6d-e860-4386-8b25-f2f650d828d1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4105a5e6-0018-40a7-9d97-1eb086addb89.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4105a5e6-0018-40a7-9d97-1eb086addb89", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4105a5e6-0018-40a7-9d97-1eb086addb89/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be9a6e4b-5410-4ba7-94e8-2ad4188bf4fb" + } + ] + }, + { + "label": { + "@none": [ + "69v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dde5f6c3-1297-44cd-bea1-9e7e12d79a56.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6755583f-d956-4bc9-99dd-ea9d781dae6d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dde5f6c3-1297-44cd-bea1-9e7e12d79a56.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dde5f6c3-1297-44cd-bea1-9e7e12d79a56", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dde5f6c3-1297-44cd-bea1-9e7e12d79a56/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d8bc77e-9844-48ad-85a8-e02d0a16ae11" + } + ] + }, + { + "label": { + "@none": [ + "70r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30258ea7-a5c9-40c8-b91c-e535cbee39f1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/048d89c5-70dd-4bfa-a1d6-41f574e32f53", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30258ea7-a5c9-40c8-b91c-e535cbee39f1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/30258ea7-a5c9-40c8-b91c-e535cbee39f1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/30258ea7-a5c9-40c8-b91c-e535cbee39f1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/848a2a00-5d12-4ef9-a925-1e17cbf459f9" + } + ] + }, + { + "label": { + "@none": [ + "70v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c448d7f-9e9a-4aec-962b-16201f743714", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a79ec4d-98fe-4e8c-a8df-94158c4c4f0b" + } + ] + }, + { + "label": { + "@none": [ + "71r" + ] + }, + "height": 7496, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/74babfe7-e1fa-4287-befc-021f79e9bf33.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6cfa5367-423b-40a4-b692-bdbc91b27a54", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/74babfe7-e1fa-4287-befc-021f79e9bf33.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/74babfe7-e1fa-4287-befc-021f79e9bf33", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/74babfe7-e1fa-4287-befc-021f79e9bf33/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c0d6a5f-0239-43d5-ba9e-d32e23ee9f8d" + } + ] + }, + { + "label": { + "@none": [ + "71v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/117746be-fd53-48ce-9600-e0ef7e848c1e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d86d54c6-50ec-4f65-8a9a-7bfef39ddcee", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/117746be-fd53-48ce-9600-e0ef7e848c1e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/117746be-fd53-48ce-9600-e0ef7e848c1e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/117746be-fd53-48ce-9600-e0ef7e848c1e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fde89e3-9dd2-4732-b4d9-10db4f781937" + } + ] + }, + { + "label": { + "@none": [ + "72r" + ] + }, + "height": 7496, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66237a15-ee4c-464f-8515-5441ed89feab.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/538fb3af-3ae0-46b1-a3b5-e82e3e418a3a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66237a15-ee4c-464f-8515-5441ed89feab.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66237a15-ee4c-464f-8515-5441ed89feab", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66237a15-ee4c-464f-8515-5441ed89feab/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5680da6-0998-4f50-bcb8-8205ec00edef" + } + ] + }, + { + "label": { + "@none": [ + "72v" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b77da291-35b8-4400-b241-0b74dbdb3d75.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c96f6028-a118-4aa7-bbe0-bcb59d3b213d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b77da291-35b8-4400-b241-0b74dbdb3d75.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b77da291-35b8-4400-b241-0b74dbdb3d75", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b77da291-35b8-4400-b241-0b74dbdb3d75/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7545460c-df5c-4358-ab4e-5a494067e889" + } + ] + }, + { + "label": { + "@none": [ + "73r" + ] + }, + "height": 7496, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a8cab02a-e2d8-44fc-9646-3b38e98edcb6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f4c92987-dd3e-43df-a8d8-69e379b9694a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a8cab02a-e2d8-44fc-9646-3b38e98edcb6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a8cab02a-e2d8-44fc-9646-3b38e98edcb6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a8cab02a-e2d8-44fc-9646-3b38e98edcb6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe42e6f9-3174-4b10-b144-9cf56f73e161" + } + ] + }, + { + "label": { + "@none": [ + "73v" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5273966-5b5e-4ac3-be64-b4df4a6cd205.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8eac3d3e-ff5b-4944-8aab-23ba92b3177e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5273966-5b5e-4ac3-be64-b4df4a6cd205.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5273966-5b5e-4ac3-be64-b4df4a6cd205", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5273966-5b5e-4ac3-be64-b4df4a6cd205/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a74678f-7daa-45fb-98f4-6efdc5de2981" + } + ] + }, + { + "label": { + "@none": [ + "74r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/094b84b0-f4e7-4d15-ba0e-b469315332a1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67df46d3-d8c1-4106-8c15-8fc83ad0a0dd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/094b84b0-f4e7-4d15-ba0e-b469315332a1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/094b84b0-f4e7-4d15-ba0e-b469315332a1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/094b84b0-f4e7-4d15-ba0e-b469315332a1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ffe8949-1f8e-4162-92dd-865a9a868372" + } + ] + }, + { + "label": { + "@none": [ + "74v" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ac11a4d3-92fa-4452-8e98-6fdc6375db4c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd13cddd-5ca9-4ee2-9f34-f27b22607b93", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ac11a4d3-92fa-4452-8e98-6fdc6375db4c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ac11a4d3-92fa-4452-8e98-6fdc6375db4c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ac11a4d3-92fa-4452-8e98-6fdc6375db4c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e1464ce5-8920-418a-94df-238c65246cac" + } + ] + }, + { + "label": { + "@none": [ + "75r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c37eceea-fede-458a-8aaf-3494d71bfc50", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/783ac550-48cb-4d78-b06d-ea4352d8fb65" + } + ] + }, + { + "label": { + "@none": [ + "75v" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bc5af2bc-591b-4164-a5ba-bc90a5be7b9e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d8bcf29-bb77-4f3e-93ec-73ab3c8f8f52" + } + ] + }, + { + "label": { + "@none": [ + "76r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee570022-ee63-4628-8e4c-6f5024897e88.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b9b88495-d1c7-4dc9-b67a-add9970b078a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee570022-ee63-4628-8e4c-6f5024897e88.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee570022-ee63-4628-8e4c-6f5024897e88", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee570022-ee63-4628-8e4c-6f5024897e88/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fcc7a39-fc8c-4130-bbe5-646a35e05b0b" + } + ] + }, + { + "label": { + "@none": [ + "76v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b2d36328-51d1-4354-a0be-8ed8d47cfcbf", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2beb237-abc1-435c-843f-9a1325f8b1e0" + } + ] + }, + { + "label": { + "@none": [ + "77r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f87045b1-4d8b-4114-9497-2cdd8c31f3dc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/87a0a755-bfd5-4f59-b639-9444a484122b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f87045b1-4d8b-4114-9497-2cdd8c31f3dc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f87045b1-4d8b-4114-9497-2cdd8c31f3dc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f87045b1-4d8b-4114-9497-2cdd8c31f3dc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/046f0140-6138-475b-bbd7-932cb3587b14" + } + ] + }, + { + "label": { + "@none": [ + "77v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66d688d2-cec6-4291-8ab6-d6669349ab73.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0a97510f-ce06-4691-870d-f2fee234288e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66d688d2-cec6-4291-8ab6-d6669349ab73.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66d688d2-cec6-4291-8ab6-d6669349ab73", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66d688d2-cec6-4291-8ab6-d6669349ab73/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/463de731-0f33-4ca2-b498-02845bf32721" + } + ] + }, + { + "label": { + "@none": [ + "78r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/69e7f100-4717-4b99-931e-d037ebf5d890.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/613b129e-57b0-4f21-b521-c27ffd267861", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/69e7f100-4717-4b99-931e-d037ebf5d890.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/69e7f100-4717-4b99-931e-d037ebf5d890", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/69e7f100-4717-4b99-931e-d037ebf5d890/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/459f6a95-acd5-4ace-9723-5d8b2636ee76" + } + ] + }, + { + "label": { + "@none": [ + "78v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d2a4a641-e693-4743-ad86-caa1bf0bda54.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2ea1bcbe-537c-4212-b25f-a8baf6f67dbd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d2a4a641-e693-4743-ad86-caa1bf0bda54.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d2a4a641-e693-4743-ad86-caa1bf0bda54", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d2a4a641-e693-4743-ad86-caa1bf0bda54/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32e05131-6e2a-4bb7-a156-80577f286016" + } + ] + }, + { + "label": { + "@none": [ + "79r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1fdeed11-7905-41d7-9975-553d49866162.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0afef541-c4fb-46b1-b605-b06e8c3fface", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1fdeed11-7905-41d7-9975-553d49866162.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1fdeed11-7905-41d7-9975-553d49866162", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1fdeed11-7905-41d7-9975-553d49866162/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/617f37be-14bd-42ee-b78d-a86ad435e3e4" + } + ] + }, + { + "label": { + "@none": [ + "79v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/70b3f8c6-c512-47aa-b687-028f57a64046.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ea221379-3291-4cba-86fc-b736e8bf385c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/70b3f8c6-c512-47aa-b687-028f57a64046.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/70b3f8c6-c512-47aa-b687-028f57a64046", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/70b3f8c6-c512-47aa-b687-028f57a64046/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/770f976f-655f-40a8-b9ac-6e688800d2b6" + } + ] + }, + { + "label": { + "@none": [ + "80r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff3348f1-b786-4e82-89bf-6647fd05bb47.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3964856f-675b-4440-a685-bf6e209056c7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff3348f1-b786-4e82-89bf-6647fd05bb47.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff3348f1-b786-4e82-89bf-6647fd05bb47", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff3348f1-b786-4e82-89bf-6647fd05bb47/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c961735-3ac0-4341-9a72-c77f0f752b01" + } + ] + }, + { + "label": { + "@none": [ + "80v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1c5d94dd-cd2f-4ae1-8d91-094b0a9e625c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c6c8d0a7-ca6e-4932-bb4b-633a2588bf6f" + } + ] + }, + { + "label": { + "@none": [ + "81r" + ] + }, + "height": 7484, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d925f250-7c89-44f8-8662-af40406aa47f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/68dcf778-d460-4656-856c-02797e2c02fc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d925f250-7c89-44f8-8662-af40406aa47f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7484, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d925f250-7c89-44f8-8662-af40406aa47f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d925f250-7c89-44f8-8662-af40406aa47f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a2bbbbe-65b1-40e3-84e1-4e26703b2ef6" + } + ] + }, + { + "label": { + "@none": [ + "81v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b73ac0d8-df67-49d2-bd2e-e39fec952206.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/41f6b1ec-3dcd-4765-9b27-5f6a0c99107f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b73ac0d8-df67-49d2-bd2e-e39fec952206.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b73ac0d8-df67-49d2-bd2e-e39fec952206", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b73ac0d8-df67-49d2-bd2e-e39fec952206/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/575eb58a-39c6-4d41-8009-3e469f88bb24" + } + ] + }, + { + "label": { + "@none": [ + "82r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbb46301-41e9-454e-a840-88eb40c6d238.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dc055633-bac3-4061-8858-21fe4c6d0a90", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbb46301-41e9-454e-a840-88eb40c6d238.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dbb46301-41e9-454e-a840-88eb40c6d238", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dbb46301-41e9-454e-a840-88eb40c6d238/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb8b9dfa-ed09-4ed7-8faf-3fea482dd1aa" + } + ] + }, + { + "label": { + "@none": [ + "82v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf6706e1-849d-4d45-98d7-64cbf398ff01", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e218edc1-6ed3-4358-b4f4-5439ae0ba81a" + } + ] + }, + { + "label": { + "@none": [ + "83r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef76ad43-bc72-465b-b321-3b4082ad81bd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3723a6da-1d4f-4a34-b3f8-9bda4753c4f8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef76ad43-bc72-465b-b321-3b4082ad81bd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef76ad43-bc72-465b-b321-3b4082ad81bd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef76ad43-bc72-465b-b321-3b4082ad81bd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8a613b0-904c-467c-8dc4-96ee4a0049b3" + } + ] + }, + { + "label": { + "@none": [ + "83v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83c01a22-b7dc-4215-89f9-b59807babd6d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c44c7127-a24b-424c-9b38-32ff31f285de", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83c01a22-b7dc-4215-89f9-b59807babd6d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/83c01a22-b7dc-4215-89f9-b59807babd6d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/83c01a22-b7dc-4215-89f9-b59807babd6d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc6e44cf-83ee-4c01-a774-857ec21fb01a" + } + ] + }, + { + "label": { + "@none": [ + "84r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dd0bac6b-31af-437c-b9ea-7f481804628b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cc407832-ace7-4bf0-bc10-8d0e1ecd3337", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dd0bac6b-31af-437c-b9ea-7f481804628b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dd0bac6b-31af-437c-b9ea-7f481804628b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dd0bac6b-31af-437c-b9ea-7f481804628b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1add68ac-a52f-44a5-b761-a54e9ed945b8" + } + ] + }, + { + "label": { + "@none": [ + "84v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/203483da-3249-486f-b3e6-7e14fb740485.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e8463fb2-8829-4614-9b3c-d41f77773405", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/203483da-3249-486f-b3e6-7e14fb740485.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/203483da-3249-486f-b3e6-7e14fb740485", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/203483da-3249-486f-b3e6-7e14fb740485/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00aceac0-8f84-42ac-b636-78c1b452e64d" + } + ] + }, + { + "label": { + "@none": [ + "85r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b025cd5-0558-4800-aecd-2c5b87d04648.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8d5b93d5-2084-48ad-a1f9-4188594698ba", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b025cd5-0558-4800-aecd-2c5b87d04648.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b025cd5-0558-4800-aecd-2c5b87d04648", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b025cd5-0558-4800-aecd-2c5b87d04648/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f5c0d93-0d4e-4a33-a374-104ccf5528b2" + } + ] + }, + { + "label": { + "@none": [ + "85v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/879c13a0-4ecc-4bb6-a466-69e4c5e4597e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0f102d29-54fa-40b4-a1db-33b8c744badf", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/879c13a0-4ecc-4bb6-a466-69e4c5e4597e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/879c13a0-4ecc-4bb6-a466-69e4c5e4597e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/879c13a0-4ecc-4bb6-a466-69e4c5e4597e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53c51dac-9018-458a-b8b0-63d49e2d35de" + } + ] + }, + { + "label": { + "@none": [ + "86r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed9f5bcb-1264-4342-81ed-c88227fdfa8c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7e263f69-1e0f-4916-b265-7c4e35e6b832", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed9f5bcb-1264-4342-81ed-c88227fdfa8c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ed9f5bcb-1264-4342-81ed-c88227fdfa8c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ed9f5bcb-1264-4342-81ed-c88227fdfa8c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b72bc35-6228-4d29-bcb4-ef3a2d19f707" + } + ] + }, + { + "label": { + "@none": [ + "86v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113c7197-3de9-4c77-8a90-f616cba6157f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5448016c-56ee-474c-a8ef-51b5467190d3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113c7197-3de9-4c77-8a90-f616cba6157f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/113c7197-3de9-4c77-8a90-f616cba6157f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/113c7197-3de9-4c77-8a90-f616cba6157f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee7847eb-047a-447f-bfb4-18ba97ad508e" + } + ] + }, + { + "label": { + "@none": [ + "87r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/043a94c4-674a-49ae-9b95-4ebde547a032.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dfac202c-89ad-427f-af22-4d7bcc5d1ef2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/043a94c4-674a-49ae-9b95-4ebde547a032.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/043a94c4-674a-49ae-9b95-4ebde547a032", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/043a94c4-674a-49ae-9b95-4ebde547a032/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8bba61de-47c5-4756-8f37-a7a296cf4981" + } + ] + }, + { + "label": { + "@none": [ + "87v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ace2569d-08c0-4dfa-9c72-a5fa66214f54.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d40e000f-77e5-444f-8a64-7b19c59951de", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ace2569d-08c0-4dfa-9c72-a5fa66214f54.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ace2569d-08c0-4dfa-9c72-a5fa66214f54", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ace2569d-08c0-4dfa-9c72-a5fa66214f54/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e62cb52d-9daf-4506-832b-dc979ee87d90" + } + ] + }, + { + "label": { + "@none": [ + "88r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/32cbd67a-230a-45ad-94a0-5a6136827c7e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af3c2734-6aa5-460c-861a-a619338da7eb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/32cbd67a-230a-45ad-94a0-5a6136827c7e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/32cbd67a-230a-45ad-94a0-5a6136827c7e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/32cbd67a-230a-45ad-94a0-5a6136827c7e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c638734a-c526-4f32-a237-ec81e84778e6" + } + ] + }, + { + "label": { + "@none": [ + "88v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453c3280-3449-498d-afb3-525cbd9fcbaa.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/199aa654-b510-40ff-a9ab-1ae9a423cc85", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453c3280-3449-498d-afb3-525cbd9fcbaa.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453c3280-3449-498d-afb3-525cbd9fcbaa", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453c3280-3449-498d-afb3-525cbd9fcbaa/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b24d652c-29ef-4e0c-97d0-5a9ea21d812b" + } + ] + }, + { + "label": { + "@none": [ + "89r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/784aa20a-1650-4df6-83d2-d0018d169d51.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b42afb2-5c03-4827-9602-e6e8533fa932", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/784aa20a-1650-4df6-83d2-d0018d169d51.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/784aa20a-1650-4df6-83d2-d0018d169d51", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/784aa20a-1650-4df6-83d2-d0018d169d51/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6824332-ed16-419f-9451-89ee09bdec5f" + } + ] + }, + { + "label": { + "@none": [ + "89v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/376ad1e4-70e2-4071-a0c5-c23005a67835.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/78890935-28b7-4a51-b8c2-e0f24b6b2042", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/376ad1e4-70e2-4071-a0c5-c23005a67835.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/376ad1e4-70e2-4071-a0c5-c23005a67835", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/376ad1e4-70e2-4071-a0c5-c23005a67835/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/997362d8-38a8-4b69-9e1a-f70574b3edd9" + } + ] + }, + { + "label": { + "@none": [ + "90r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/63270542-6cf5-4f07-b2b0-3366e45ca8d2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/014b7d47-f38e-4bea-b586-8555754df5e9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/63270542-6cf5-4f07-b2b0-3366e45ca8d2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/63270542-6cf5-4f07-b2b0-3366e45ca8d2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/63270542-6cf5-4f07-b2b0-3366e45ca8d2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/320c80c8-8cf8-48aa-a46d-1b83e8792a27" + } + ] + }, + { + "label": { + "@none": [ + "90v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9a37d5e-ba69-4d01-9d01-d042c8d9a5a1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/971b5fbb-7628-490a-8f4c-d289832ab76f" + } + ] + }, + { + "label": { + "@none": [ + "91r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ddd128d5-781b-41fd-9616-65126df52c05.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2d7cd767-b91e-42a0-bcbf-d27706e2d103", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ddd128d5-781b-41fd-9616-65126df52c05.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ddd128d5-781b-41fd-9616-65126df52c05", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ddd128d5-781b-41fd-9616-65126df52c05/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ebf13b5-4ebb-4c48-b282-ef093114640e" + } + ] + }, + { + "label": { + "@none": [ + "91v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8456c7e8-fdfa-440a-b34d-397aae400abf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9d6ea7d1-73c3-4dd9-ad2e-6b664fba4db9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8456c7e8-fdfa-440a-b34d-397aae400abf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8456c7e8-fdfa-440a-b34d-397aae400abf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8456c7e8-fdfa-440a-b34d-397aae400abf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4be7d577-23ca-4d9d-8a54-307d0cba0914" + } + ] + }, + { + "label": { + "@none": [ + "92r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6dc28ac6-3eb3-48ba-b282-bd008d53815c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4c386649-28d5-4566-99ca-7d7ba277fc15", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6dc28ac6-3eb3-48ba-b282-bd008d53815c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6dc28ac6-3eb3-48ba-b282-bd008d53815c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6dc28ac6-3eb3-48ba-b282-bd008d53815c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c990657-a8fa-4af4-9f3b-7e588fc63433" + } + ] + }, + { + "label": { + "@none": [ + "92v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3ff689eb-99b6-4ad7-a4e5-c2265aafb155.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/513a2718-ec5b-4781-8823-f4e3705ea746", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3ff689eb-99b6-4ad7-a4e5-c2265aafb155.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3ff689eb-99b6-4ad7-a4e5-c2265aafb155", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3ff689eb-99b6-4ad7-a4e5-c2265aafb155/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0066dede-e9f4-419d-938d-8c017ce981a2" + } + ] + }, + { + "label": { + "@none": [ + "93r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bce11d66-e900-4caa-aad3-67b21bc197d8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e693058f-4eb9-4f5f-b57d-c6107bce550b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bce11d66-e900-4caa-aad3-67b21bc197d8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bce11d66-e900-4caa-aad3-67b21bc197d8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bce11d66-e900-4caa-aad3-67b21bc197d8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0882ade3-b68b-4ecb-a100-79b3463edaf5" + } + ] + }, + { + "label": { + "@none": [ + "93v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b74055a5-96a7-456b-bc22-c55c1eb04c0a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3bdb9aa4-2b84-45d2-bd3f-8f9247bed9ac", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b74055a5-96a7-456b-bc22-c55c1eb04c0a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b74055a5-96a7-456b-bc22-c55c1eb04c0a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b74055a5-96a7-456b-bc22-c55c1eb04c0a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f018eb9d-d9db-4101-84ef-1224dc7734fd" + } + ] + }, + { + "label": { + "@none": [ + "94r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e26f5b63-20e6-470d-8a36-1613731f9202.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7d08f883-8266-4664-a813-844227c9b3c3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e26f5b63-20e6-470d-8a36-1613731f9202.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e26f5b63-20e6-470d-8a36-1613731f9202", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e26f5b63-20e6-470d-8a36-1613731f9202/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/882b56dd-9e39-4fa0-9631-225787eceec5" + } + ] + }, + { + "label": { + "@none": [ + "94v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66bc1133-fd0b-459e-923d-8f972d0f44e1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4be82785-9833-4cf6-aaf3-26b4941ed473", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66bc1133-fd0b-459e-923d-8f972d0f44e1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66bc1133-fd0b-459e-923d-8f972d0f44e1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66bc1133-fd0b-459e-923d-8f972d0f44e1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33bcd957-84ff-486b-8af1-41eaf1d5e7c3" + } + ] + }, + { + "label": { + "@none": [ + "95r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a328191-9de6-41f7-89bd-3c9bd9e06fda.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a1be29a5-27be-43db-a350-b3df720bb5ac", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a328191-9de6-41f7-89bd-3c9bd9e06fda.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a328191-9de6-41f7-89bd-3c9bd9e06fda", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a328191-9de6-41f7-89bd-3c9bd9e06fda/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23d8d8a0-4de3-400d-a313-da68d3b93598" + } + ] + }, + { + "label": { + "@none": [ + "95v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4bd7efe-afbc-482a-837b-1aef57dfc71f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2042cacb-43c9-4d9a-a1c9-97554ff395db", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4bd7efe-afbc-482a-837b-1aef57dfc71f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b4bd7efe-afbc-482a-837b-1aef57dfc71f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b4bd7efe-afbc-482a-837b-1aef57dfc71f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/abd001fb-3a18-4dea-a614-5b19a8a68e72" + } + ] + }, + { + "label": { + "@none": [ + "96r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6caf822d-61c1-48c3-b0c9-6f00a9d921a4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b2d1607f-ea09-4600-bdcf-90fa90305558", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6caf822d-61c1-48c3-b0c9-6f00a9d921a4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6caf822d-61c1-48c3-b0c9-6f00a9d921a4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6caf822d-61c1-48c3-b0c9-6f00a9d921a4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7ad5081e-b093-4393-be27-7a6bc0205be6" + } + ] + }, + { + "label": { + "@none": [ + "96v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6c68cbbf-e96b-4c67-9cc1-59b84e801e72.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9e19f3c8-71d8-42a4-86c2-bccde73d44ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6c68cbbf-e96b-4c67-9cc1-59b84e801e72.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6c68cbbf-e96b-4c67-9cc1-59b84e801e72", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6c68cbbf-e96b-4c67-9cc1-59b84e801e72/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1847663e-8ccc-48bd-91a1-da6bc562c693" + } + ] + }, + { + "label": { + "@none": [ + "97r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8519f703-f064-465c-9357-07cd81bf0449", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6830bed1-751d-405e-b9e3-5dc8ca2fe093" + } + ] + }, + { + "label": { + "@none": [ + "97v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1d7142c-0f87-4011-a90b-5f4a6674a818.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1a7dbad0-a58e-4d44-ab87-1d6e6ef51151", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1d7142c-0f87-4011-a90b-5f4a6674a818.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c1d7142c-0f87-4011-a90b-5f4a6674a818", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c1d7142c-0f87-4011-a90b-5f4a6674a818/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/697f5baf-4392-4925-8a60-ab7c1937470e" + } + ] + }, + { + "label": { + "@none": [ + "98r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/39df1303-a981-4de4-af5e-7c4a65d16028", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fe18b7d-0771-4874-90ac-96bf00f092c7" + } + ] + }, + { + "label": { + "@none": [ + "98v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fdd8227b-38ac-4f5e-8bcb-14f2003b7444.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df8dc3d9-26ef-4c88-842d-db958be6e04f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fdd8227b-38ac-4f5e-8bcb-14f2003b7444.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fdd8227b-38ac-4f5e-8bcb-14f2003b7444", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fdd8227b-38ac-4f5e-8bcb-14f2003b7444/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b41d059f-04b4-4820-9ab5-609e52952c68" + } + ] + }, + { + "label": { + "@none": [ + "99r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c62d1002-a1ea-45a3-b118-63767f775bf4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/102ea954-5668-46c4-8302-e7887d887f92", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c62d1002-a1ea-45a3-b118-63767f775bf4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c62d1002-a1ea-45a3-b118-63767f775bf4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c62d1002-a1ea-45a3-b118-63767f775bf4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/817aca23-3889-4e3b-bab1-cac4e2105a4d" + } + ] + }, + { + "label": { + "@none": [ + "99v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4324a4d6-e1f7-4679-a4ac-4ef4fa051266", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4605055f-b24a-4012-90a3-6fbcd8f83aa0" + } + ] + }, + { + "label": { + "@none": [ + "100r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9ba222e5-5411-4f89-adbb-427a09c85a94.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0324676b-01f7-4977-904f-030e3bfa83c1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9ba222e5-5411-4f89-adbb-427a09c85a94.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9ba222e5-5411-4f89-adbb-427a09c85a94", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9ba222e5-5411-4f89-adbb-427a09c85a94/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08c6cd88-1c6c-4d27-8f6e-63856d983a98" + } + ] + }, + { + "label": { + "@none": [ + "100v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b85682d-65a5-42bd-9167-1dadb92bbb87.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/15252b15-37ee-497c-9ce7-7d31c805440d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b85682d-65a5-42bd-9167-1dadb92bbb87.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b85682d-65a5-42bd-9167-1dadb92bbb87", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b85682d-65a5-42bd-9167-1dadb92bbb87/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee71692e-1b27-41c9-bde7-8d1446c1fa91" + } + ] + }, + { + "label": { + "@none": [ + "101r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/968417ce-dbef-4699-8506-b834ff8a8f8f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/48d8979e-8980-4dd6-9a44-13559f7d49e3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/968417ce-dbef-4699-8506-b834ff8a8f8f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/968417ce-dbef-4699-8506-b834ff8a8f8f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/968417ce-dbef-4699-8506-b834ff8a8f8f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/818eb5fb-6421-430f-ae3e-e183d5cdbcc1" + } + ] + }, + { + "label": { + "@none": [ + "101v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b32087a-4c41-4f42-807e-c70e0fbfdde3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd6b2ce4-8096-425e-96cd-72d4e7d9fe53", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b32087a-4c41-4f42-807e-c70e0fbfdde3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b32087a-4c41-4f42-807e-c70e0fbfdde3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b32087a-4c41-4f42-807e-c70e0fbfdde3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cb08daf-82c4-4915-a029-bb69e3125dc7" + } + ] + }, + { + "label": { + "@none": [ + "102r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14577d89-7870-4cf2-9e0e-e4da260a1ddf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/115cef7c-7194-4a7d-bbf4-92d2b46013a4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14577d89-7870-4cf2-9e0e-e4da260a1ddf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/14577d89-7870-4cf2-9e0e-e4da260a1ddf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/14577d89-7870-4cf2-9e0e-e4da260a1ddf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a144ce80-c179-4ee3-97ac-d5923f4f8328" + } + ] + }, + { + "label": { + "@none": [ + "102v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cf2c111-509a-4b21-bf60-9a860d318417.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9fe1f78a-54a2-4bed-afb5-b7bae8018ec0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cf2c111-509a-4b21-bf60-9a860d318417.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8cf2c111-509a-4b21-bf60-9a860d318417", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8cf2c111-509a-4b21-bf60-9a860d318417/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53a066e9-c0dc-43b8-8860-888a99c20c19" + } + ] + }, + { + "label": { + "@none": [ + "103r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22e05588-d791-4221-8060-588540e81600.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7bf4e5cc-0b20-4793-9d0b-d6c8ed2cf296", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22e05588-d791-4221-8060-588540e81600.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/22e05588-d791-4221-8060-588540e81600", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/22e05588-d791-4221-8060-588540e81600/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6754901f-9bb0-43cd-83a8-e8f53d2c40e7" + } + ] + }, + { + "label": { + "@none": [ + "103v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e84dff7d-c976-4767-8cca-1f1aa4662d7b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59318208-065b-440d-aff4-2969a412bb74", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e84dff7d-c976-4767-8cca-1f1aa4662d7b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e84dff7d-c976-4767-8cca-1f1aa4662d7b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e84dff7d-c976-4767-8cca-1f1aa4662d7b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b06d8b48-0d83-46ff-be1c-20c2e92e2d18" + } + ] + }, + { + "label": { + "@none": [ + "104r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa7ea78-d36c-454d-bc1a-e4702be9c150.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c02b253d-479e-49ad-8ff0-3e34d3ab7ed6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa7ea78-d36c-454d-bc1a-e4702be9c150.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8aa7ea78-d36c-454d-bc1a-e4702be9c150", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8aa7ea78-d36c-454d-bc1a-e4702be9c150/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f4aa13cd-5a7c-4404-865c-1d0eb255d757" + } + ] + }, + { + "label": { + "@none": [ + "104v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/93ab32ff-33ee-4254-a2e5-fc626ee6a269.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d0703db6-7123-4698-a076-ca41bcdac85a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/93ab32ff-33ee-4254-a2e5-fc626ee6a269.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/93ab32ff-33ee-4254-a2e5-fc626ee6a269", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/93ab32ff-33ee-4254-a2e5-fc626ee6a269/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebc5c493-9006-4f8f-b6b3-9988d3b1a220" + } + ] + }, + { + "label": { + "@none": [ + "105r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869939b0-f33d-48b8-8d05-8ad21f362ac2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6b491f2c-0f6f-4f79-81e2-771e9e464867", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869939b0-f33d-48b8-8d05-8ad21f362ac2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/869939b0-f33d-48b8-8d05-8ad21f362ac2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/869939b0-f33d-48b8-8d05-8ad21f362ac2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f8ba037-b904-4aa0-a1c2-1e2c8ba395eb" + } + ] + }, + { + "label": { + "@none": [ + "105v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff41b966-4b8e-4707-aca5-3c2162096321.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af9a5b22-9a6a-4d52-b50c-62303d330855", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff41b966-4b8e-4707-aca5-3c2162096321.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff41b966-4b8e-4707-aca5-3c2162096321", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff41b966-4b8e-4707-aca5-3c2162096321/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fce8bf61-f248-4b7c-8f40-5615539aa73e" + } + ] + }, + { + "label": { + "@none": [ + "106r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/50c79586-fc14-4a2b-a1d2-3c92f22a7de3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a3eaf560-5aaa-48a8-91a9-cd121211ff32", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/50c79586-fc14-4a2b-a1d2-3c92f22a7de3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/50c79586-fc14-4a2b-a1d2-3c92f22a7de3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/50c79586-fc14-4a2b-a1d2-3c92f22a7de3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bbb798d4-7481-4a49-a529-52689f4ea4ae" + } + ] + }, + { + "label": { + "@none": [ + "106v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/151ad0cc-75d6-4cb9-9496-34c108c96f28.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f836b231-44b0-46b6-a91e-5b5416d168e7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/151ad0cc-75d6-4cb9-9496-34c108c96f28.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/151ad0cc-75d6-4cb9-9496-34c108c96f28", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/151ad0cc-75d6-4cb9-9496-34c108c96f28/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5a0120c-a40b-4168-b1cd-e930d957da74" + } + ] + }, + { + "label": { + "@none": [ + "107r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/799c3b26-7fbd-417b-b4c6-bd1f347ca247.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bcd9454f-bc63-41e7-810a-40f2b3771049", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/799c3b26-7fbd-417b-b4c6-bd1f347ca247.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/799c3b26-7fbd-417b-b4c6-bd1f347ca247", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/799c3b26-7fbd-417b-b4c6-bd1f347ca247/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eadaa156-7de0-46ee-acb0-965ff85abc2b" + } + ] + }, + { + "label": { + "@none": [ + "107v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76f2b721-e64a-415f-9c0e-35f0956e8e85.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/52a67cd2-e634-4ec8-813f-d2982f54b6ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76f2b721-e64a-415f-9c0e-35f0956e8e85.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76f2b721-e64a-415f-9c0e-35f0956e8e85", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76f2b721-e64a-415f-9c0e-35f0956e8e85/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0c35396e-2fc0-41a0-ab7d-f7262d31937b" + } + ] + }, + { + "label": { + "@none": [ + "108r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48780b63-490f-4a6c-b884-2d820d075797.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/71584d04-725c-4925-aefc-8444bcfc81f2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48780b63-490f-4a6c-b884-2d820d075797.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48780b63-490f-4a6c-b884-2d820d075797", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48780b63-490f-4a6c-b884-2d820d075797/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a7b8c56-5b43-4c32-9295-c878c157ff62" + } + ] + }, + { + "label": { + "@none": [ + "108v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bcd27edc-c3f6-4066-8cfc-8bfbecb41305.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a173d7a9-8aeb-422f-b334-a4bad73ecaa7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bcd27edc-c3f6-4066-8cfc-8bfbecb41305.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bcd27edc-c3f6-4066-8cfc-8bfbecb41305", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bcd27edc-c3f6-4066-8cfc-8bfbecb41305/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/727556a7-8fde-4525-8c75-06c0d15111e7" + } + ] + }, + { + "label": { + "@none": [ + "109r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7accb513-3089-4ffe-99d6-c59ad557374d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2db66626-d95c-40a1-b64a-cd1250e5d5ea" + } + ] + }, + { + "label": { + "@none": [ + "109v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e2cc20dd-e129-4523-8cf8-607b839152f5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5cce004c-6707-4520-a4b2-845f3c9d86c1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e2cc20dd-e129-4523-8cf8-607b839152f5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e2cc20dd-e129-4523-8cf8-607b839152f5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e2cc20dd-e129-4523-8cf8-607b839152f5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d869b57-e76f-4a43-b0a3-3a2a18201a41" + } + ] + }, + { + "label": { + "@none": [ + "110r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6020fdf-b2fe-4431-8219-7d28486b1cf3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d37c023b-950a-4b8f-8f43-df39bafcf3b3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6020fdf-b2fe-4431-8219-7d28486b1cf3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6020fdf-b2fe-4431-8219-7d28486b1cf3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6020fdf-b2fe-4431-8219-7d28486b1cf3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c85ad0aa-ba8d-416b-805f-c54ee2987bab" + } + ] + }, + { + "label": { + "@none": [ + "110v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d979acfa-6ee5-43bf-8d1e-eb71c23defa0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff779467-9b72-4f9b-87fb-9e85c8c8f301" + } + ] + }, + { + "label": { + "@none": [ + "111r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b55c06c4-8257-4242-9eac-a8dce32925bf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d088bec6-fcee-44de-809a-34acdc9bf789", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b55c06c4-8257-4242-9eac-a8dce32925bf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b55c06c4-8257-4242-9eac-a8dce32925bf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b55c06c4-8257-4242-9eac-a8dce32925bf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/315e62e4-8968-40bc-aa3e-4b7d0650382c" + } + ] + }, + { + "label": { + "@none": [ + "111v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bc84e4e-278c-4436-a9e6-83505373f58a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/286b7ce0-98f6-48e4-b55c-dd6967ce94a3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bc84e4e-278c-4436-a9e6-83505373f58a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0bc84e4e-278c-4436-a9e6-83505373f58a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0bc84e4e-278c-4436-a9e6-83505373f58a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b132d893-a5ad-4852-87b7-f53b18263599" + } + ] + }, + { + "label": { + "@none": [ + "112r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8975ddf1-8759-443e-94e8-0b1b0a9712a5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6a487b24-55ea-4b4e-8925-f61d073ce0c6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8975ddf1-8759-443e-94e8-0b1b0a9712a5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8975ddf1-8759-443e-94e8-0b1b0a9712a5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8975ddf1-8759-443e-94e8-0b1b0a9712a5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3342b03b-394c-4f70-ae23-932eb5a02e4b" + } + ] + }, + { + "label": { + "@none": [ + "112v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a7171a7-b61a-4205-a185-3fbd542ca6f9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1495de3-f433-4981-ab9f-3b307698ae18", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a7171a7-b61a-4205-a185-3fbd542ca6f9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2a7171a7-b61a-4205-a185-3fbd542ca6f9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2a7171a7-b61a-4205-a185-3fbd542ca6f9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b4ee2e2-85d5-4a89-a299-6b836bf6e297" + } + ] + }, + { + "label": { + "@none": [ + "113r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9246f68e-e343-43a3-8c2d-8bf996ce78f3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/66be6a6c-a385-4203-9f5e-61897f9ff8e4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9246f68e-e343-43a3-8c2d-8bf996ce78f3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9246f68e-e343-43a3-8c2d-8bf996ce78f3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9246f68e-e343-43a3-8c2d-8bf996ce78f3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05f924ab-148f-4697-b8af-1137dd2252fa" + } + ] + }, + { + "label": { + "@none": [ + "113v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b255579-8008-4df1-9331-9e7d447c37f9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/96aa2ff9-6beb-4aa1-b328-bd4ed7d50135", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b255579-8008-4df1-9331-9e7d447c37f9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b255579-8008-4df1-9331-9e7d447c37f9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b255579-8008-4df1-9331-9e7d447c37f9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/263a86a7-5579-409b-a52c-a77d3440f142" + } + ] + }, + { + "label": { + "@none": [ + "114r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7280ac32-c395-41b8-95eb-1a543bb1c37c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f3af69b-3476-4fff-b12c-01a065f9d2a2" + } + ] + }, + { + "label": { + "@none": [ + "114v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bceda3e-6d14-45ac-9a8e-fb7e508db901.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7d977d76-841b-489a-af8b-45a56e316875", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bceda3e-6d14-45ac-9a8e-fb7e508db901.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0bceda3e-6d14-45ac-9a8e-fb7e508db901", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0bceda3e-6d14-45ac-9a8e-fb7e508db901/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/326ca7b9-7424-4b5a-a6dc-a28c10278f65" + } + ] + }, + { + "label": { + "@none": [ + "115r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4486af6a-0bb1-4431-8aed-bb033595c3f2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f3e405d7-a67d-48d8-abdb-bf65b6435abf", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4486af6a-0bb1-4431-8aed-bb033595c3f2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4486af6a-0bb1-4431-8aed-bb033595c3f2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4486af6a-0bb1-4431-8aed-bb033595c3f2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ede49a03-14b3-4718-b430-1661600976c2" + } + ] + }, + { + "label": { + "@none": [ + "115v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6b43d070-4256-45cb-8f3d-abeeb039c812.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d795a4b4-7333-4853-aa3c-2e7c1c81540d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6b43d070-4256-45cb-8f3d-abeeb039c812.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6b43d070-4256-45cb-8f3d-abeeb039c812", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6b43d070-4256-45cb-8f3d-abeeb039c812/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fee25111-c64a-4f06-8660-44c1245f8592" + } + ] + }, + { + "label": { + "@none": [ + "116r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36d1a96e-cb8d-4307-b52b-664f4de05013.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1ca270ba-363f-4ca0-9c0f-a58b9b23a87c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36d1a96e-cb8d-4307-b52b-664f4de05013.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/36d1a96e-cb8d-4307-b52b-664f4de05013", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/36d1a96e-cb8d-4307-b52b-664f4de05013/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a10dc746-d138-4f86-bdb7-9ab6776e16d7" + } + ] + }, + { + "label": { + "@none": [ + "116v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/279ec11d-1a8d-4c03-89a8-23ebb56cecc4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/45464515-53c9-4b99-98c9-8458541dd5c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/279ec11d-1a8d-4c03-89a8-23ebb56cecc4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/279ec11d-1a8d-4c03-89a8-23ebb56cecc4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/279ec11d-1a8d-4c03-89a8-23ebb56cecc4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eda4ebdd-d4a5-4311-92f5-b89934900245" + } + ] + }, + { + "label": { + "@none": [ + "117r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/198a9d85-ebd5-4c54-85ed-5b35ea8ab769.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8ccda889-d647-4f89-aadc-ccda5e93722a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/198a9d85-ebd5-4c54-85ed-5b35ea8ab769.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/198a9d85-ebd5-4c54-85ed-5b35ea8ab769", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/198a9d85-ebd5-4c54-85ed-5b35ea8ab769/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e08fb437-1352-4617-88e5-fc363199e0f9" + } + ] + }, + { + "label": { + "@none": [ + "117v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02d26c72-4aec-45f5-9b06-e261c6eb223a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a34ff455-01c5-464e-b082-49d922b4a926", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02d26c72-4aec-45f5-9b06-e261c6eb223a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/02d26c72-4aec-45f5-9b06-e261c6eb223a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/02d26c72-4aec-45f5-9b06-e261c6eb223a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88f647aa-c664-4dbb-8e41-ee7b139f55f7" + } + ] + }, + { + "label": { + "@none": [ + "118r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3e8bc8-9ce3-464d-896a-bde50efb17cd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b6826c10-6cb9-4c09-8955-1fb30e177482", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3e8bc8-9ce3-464d-896a-bde50efb17cd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea3e8bc8-9ce3-464d-896a-bde50efb17cd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea3e8bc8-9ce3-464d-896a-bde50efb17cd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cda3bd0b-c331-412e-9d65-3f15ef293abb" + } + ] + }, + { + "label": { + "@none": [ + "118v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a4772862-fbc7-49fd-895e-2c1261eecb3e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a6eafb18-5ffc-46dd-ac81-3f6a4e3931cc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a4772862-fbc7-49fd-895e-2c1261eecb3e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a4772862-fbc7-49fd-895e-2c1261eecb3e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a4772862-fbc7-49fd-895e-2c1261eecb3e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68d386cd-dd1b-418d-ac56-efd47b3fd7de" + } + ] + }, + { + "label": { + "@none": [ + "119r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe42a5f-46d9-49f1-8882-7bc52d6465c5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e3bff618-58c6-4fd6-8426-2f4ebabce480", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe42a5f-46d9-49f1-8882-7bc52d6465c5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fe42a5f-46d9-49f1-8882-7bc52d6465c5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fe42a5f-46d9-49f1-8882-7bc52d6465c5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64d0cca4-c56f-4f3a-b604-17f3e0f1fdab" + } + ] + }, + { + "label": { + "@none": [ + "119v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/16019dd7-f485-46d0-889f-09e82612c1b4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/63a12992-1689-428b-a389-993ede11cb00", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/16019dd7-f485-46d0-889f-09e82612c1b4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/16019dd7-f485-46d0-889f-09e82612c1b4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/16019dd7-f485-46d0-889f-09e82612c1b4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10809591-1acc-4fac-838d-2730c99c611b" + } + ] + }, + { + "label": { + "@none": [ + "120r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aca3eb32-1e70-42f1-94a7-f3a15e192ae8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/14392b7b-1f76-4e92-8b56-0747f85ae415", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aca3eb32-1e70-42f1-94a7-f3a15e192ae8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aca3eb32-1e70-42f1-94a7-f3a15e192ae8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aca3eb32-1e70-42f1-94a7-f3a15e192ae8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd9e7312-fdc4-4c62-896f-249f4a413eb9" + } + ] + }, + { + "label": { + "@none": [ + "120v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22082bf2-2aa8-474d-9ea3-056899ba5b24.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59a5cbe5-b252-4406-832a-82dca347e4fe", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22082bf2-2aa8-474d-9ea3-056899ba5b24.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/22082bf2-2aa8-474d-9ea3-056899ba5b24", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/22082bf2-2aa8-474d-9ea3-056899ba5b24/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5224b64b-48d6-494e-a5f9-fc863d498c3a" + } + ] + }, + { + "label": { + "@none": [ + "121r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4e627ac1-d00e-4a05-83b6-073f4845da0d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a35191d0-f0ca-4220-8cd0-714dfa0abd45", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4e627ac1-d00e-4a05-83b6-073f4845da0d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4e627ac1-d00e-4a05-83b6-073f4845da0d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4e627ac1-d00e-4a05-83b6-073f4845da0d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11aa50c4-d781-4945-a24b-0de77a360478" + } + ] + }, + { + "label": { + "@none": [ + "121v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/33e2ba78-c609-4423-8e58-08b0b5438836", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0fa50bc-ba60-4d0e-a62f-4a890001e35e" + } + ] + }, + { + "label": { + "@none": [ + "122r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebeaf616-0117-4b13-9d9a-2922d93887a3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9d6e4b5-0451-4d83-bcfa-9ccea61ea2f1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebeaf616-0117-4b13-9d9a-2922d93887a3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ebeaf616-0117-4b13-9d9a-2922d93887a3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ebeaf616-0117-4b13-9d9a-2922d93887a3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad02599a-9961-42b5-8c89-42eaf79d0964" + } + ] + }, + { + "label": { + "@none": [ + "122v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5951fd7b-f02f-4520-853f-b4d420ecf830.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d591b8f7-d9ff-4b93-8fd4-6a897e0b401c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5951fd7b-f02f-4520-853f-b4d420ecf830.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5951fd7b-f02f-4520-853f-b4d420ecf830", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5951fd7b-f02f-4520-853f-b4d420ecf830/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d19796d2-77e6-4719-b203-326aafd4a052" + } + ] + }, + { + "label": { + "@none": [ + "123r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c11bd76-bac8-4ded-ae17-5710b8cda7a1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7f430991-b131-458f-99e3-6dca5eb02fa0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c11bd76-bac8-4ded-ae17-5710b8cda7a1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c11bd76-bac8-4ded-ae17-5710b8cda7a1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c11bd76-bac8-4ded-ae17-5710b8cda7a1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62655fde-b733-4fa9-a2b4-3421d6770672" + } + ] + }, + { + "label": { + "@none": [ + "123v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/206b95a6-6a3c-4315-80d8-c03cd0a340cd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1aa18923-1ce6-483c-a7f9-e4312d7f08be", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/206b95a6-6a3c-4315-80d8-c03cd0a340cd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/206b95a6-6a3c-4315-80d8-c03cd0a340cd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/206b95a6-6a3c-4315-80d8-c03cd0a340cd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4010c834-bcf2-485f-bad9-a0b1e4647c5c" + } + ] + }, + { + "label": { + "@none": [ + "124r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2856114b-97df-420f-b2dd-a20aca6e847f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/04a669d0-2293-4e55-b7fb-359950fb857c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2856114b-97df-420f-b2dd-a20aca6e847f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2856114b-97df-420f-b2dd-a20aca6e847f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2856114b-97df-420f-b2dd-a20aca6e847f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aea69578-45fb-47f1-8a93-a3388233a116" + } + ] + }, + { + "label": { + "@none": [ + "124v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b4f651a-e60c-48a3-a679-0c235eda9587.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6a3b1470-ac8a-41aa-936d-b8c7147e71a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b4f651a-e60c-48a3-a679-0c235eda9587.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b4f651a-e60c-48a3-a679-0c235eda9587", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b4f651a-e60c-48a3-a679-0c235eda9587/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96128fb5-eb62-411a-9b6c-c2fbf8fb376e" + } + ] + }, + { + "label": { + "@none": [ + "125r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/41fdfdf6-4be7-42bb-b134-804defa9758c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2693dbb4-5923-41db-9613-9fcfc1271a3e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/41fdfdf6-4be7-42bb-b134-804defa9758c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/41fdfdf6-4be7-42bb-b134-804defa9758c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/41fdfdf6-4be7-42bb-b134-804defa9758c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/434a6cc0-9bbb-4250-9f6a-3df8a60d2fe2" + } + ] + }, + { + "label": { + "@none": [ + "125v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cf91903-8ded-4c8a-9cad-9d75d15d823a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1196d59c-93e5-414f-b53f-2fb6092163de", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cf91903-8ded-4c8a-9cad-9d75d15d823a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cf91903-8ded-4c8a-9cad-9d75d15d823a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cf91903-8ded-4c8a-9cad-9d75d15d823a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04ee51d3-a262-4061-8e21-8d5d4a9f7038" + } + ] + }, + { + "label": { + "@none": [ + "126r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/67ad3eb8-c53b-48b1-b21c-c9a871399a9c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/743bbe01-1ffd-4837-a651-54b6169f35b4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/67ad3eb8-c53b-48b1-b21c-c9a871399a9c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/67ad3eb8-c53b-48b1-b21c-c9a871399a9c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/67ad3eb8-c53b-48b1-b21c-c9a871399a9c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/21d5fab7-6e93-4bbd-a254-85671d879c03" + } + ] + }, + { + "label": { + "@none": [ + "126v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a336129a-c137-4216-9c49-a5051bff7abd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fff3370c-6950-4322-a071-d063b2cf734b" + } + ] + }, + { + "label": { + "@none": [ + "127r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cc638fc-8104-4d89-a953-c789d1f8d709.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/717cebcb-2b2f-4f67-ad61-5e5d1bf7ef65", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cc638fc-8104-4d89-a953-c789d1f8d709.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cc638fc-8104-4d89-a953-c789d1f8d709", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cc638fc-8104-4d89-a953-c789d1f8d709/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38742e61-2019-4b54-b975-bcf6b19b158b" + } + ] + }, + { + "label": { + "@none": [ + "127v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a7e5fda3-3b6a-4af5-9254-8dd3afb07670.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e6c341fb-164e-4700-8006-eabdc1e30bf9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a7e5fda3-3b6a-4af5-9254-8dd3afb07670.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a7e5fda3-3b6a-4af5-9254-8dd3afb07670", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a7e5fda3-3b6a-4af5-9254-8dd3afb07670/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4080a345-d056-4c74-a06d-5b7cd19058ca" + } + ] + }, + { + "label": { + "@none": [ + "128r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ca9ee054-cf28-4bee-998d-eaf372526204.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/991ee6bd-5975-4975-936a-21554ab71184", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ca9ee054-cf28-4bee-998d-eaf372526204.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ca9ee054-cf28-4bee-998d-eaf372526204", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ca9ee054-cf28-4bee-998d-eaf372526204/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4fc13cb2-ff5e-49b9-834c-f6fe80c27371" + } + ] + }, + { + "label": { + "@none": [ + "128v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fade45dd-a622-4c78-b53f-cddb598620b5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3627195a-54eb-4819-bceb-dd72b9d1a45a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fade45dd-a622-4c78-b53f-cddb598620b5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fade45dd-a622-4c78-b53f-cddb598620b5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fade45dd-a622-4c78-b53f-cddb598620b5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b3953d7-5a9d-48b6-bd79-58cbb224b195" + } + ] + }, + { + "label": { + "@none": [ + "129r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f4ba98e6-ba36-4488-acf1-4decd3d63a3d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/782c5b0c-0323-4307-ba10-dc0d82ea5be1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f4ba98e6-ba36-4488-acf1-4decd3d63a3d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f4ba98e6-ba36-4488-acf1-4decd3d63a3d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f4ba98e6-ba36-4488-acf1-4decd3d63a3d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91dfe832-26f6-4824-9bea-4d0ab07b3426" + } + ] + }, + { + "label": { + "@none": [ + "129v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea9617f9-2156-44c6-a8ec-2200b1bd7409.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/686f9dec-c03c-4bf4-9878-6d03c8c1933d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea9617f9-2156-44c6-a8ec-2200b1bd7409.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea9617f9-2156-44c6-a8ec-2200b1bd7409", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea9617f9-2156-44c6-a8ec-2200b1bd7409/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e8f5fda4-4ff4-4ced-a27c-e9a30e8ae32e" + } + ] + }, + { + "label": { + "@none": [ + "130r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6bad1574-ed46-461c-96fc-850e964842de.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4d7ae890-6bc9-4507-9479-7e0ce005361e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6bad1574-ed46-461c-96fc-850e964842de.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6bad1574-ed46-461c-96fc-850e964842de", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6bad1574-ed46-461c-96fc-850e964842de/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbc5b1ef-e551-466b-b599-b27615d4d97b" + } + ] + }, + { + "label": { + "@none": [ + "130v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13cdbedb-edde-49e6-8753-fb79763b8ce1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/69f199c3-e1e3-4546-aa2b-973e84480256", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13cdbedb-edde-49e6-8753-fb79763b8ce1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/13cdbedb-edde-49e6-8753-fb79763b8ce1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/13cdbedb-edde-49e6-8753-fb79763b8ce1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0dd9aa82-de3a-4a4e-b9ca-c67106ed7aa6" + } + ] + }, + { + "label": { + "@none": [ + "131r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1e4412e-4a43-4f9b-8698-896ec9f040fc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4117062d-552f-4e21-a5b0-1bf2f3176d10", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1e4412e-4a43-4f9b-8698-896ec9f040fc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1e4412e-4a43-4f9b-8698-896ec9f040fc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1e4412e-4a43-4f9b-8698-896ec9f040fc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e26202f8-9e0b-4492-bca9-278c06e127bd" + } + ] + }, + { + "label": { + "@none": [ + "131v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/965053fc-952c-4b68-afe4-a1703c40bd17.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0727e32c-77bf-4752-8f2d-c887d648c1f4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/965053fc-952c-4b68-afe4-a1703c40bd17.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/965053fc-952c-4b68-afe4-a1703c40bd17", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/965053fc-952c-4b68-afe4-a1703c40bd17/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8316d563-7896-4e59-9952-8ca5672c49af" + } + ] + }, + { + "label": { + "@none": [ + "132r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/39428e8c-780a-4e80-916a-01cab71dd240.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/80907c9f-5214-4c0a-8059-9e6d0f801bd8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/39428e8c-780a-4e80-916a-01cab71dd240.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/39428e8c-780a-4e80-916a-01cab71dd240", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/39428e8c-780a-4e80-916a-01cab71dd240/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc853fbd-1bef-406a-9dc6-0ddc6110f358" + } + ] + }, + { + "label": { + "@none": [ + "132v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b3f95fd-1c07-4941-8144-9d1994c5d20d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8650f42c-d98c-4d3f-a9ec-bb7a1aaea692", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b3f95fd-1c07-4941-8144-9d1994c5d20d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b3f95fd-1c07-4941-8144-9d1994c5d20d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b3f95fd-1c07-4941-8144-9d1994c5d20d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c883a27a-4cda-4272-83e3-01665b44af9e" + } + ] + }, + { + "label": { + "@none": [ + "133r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8885585a-d77f-4d6b-a23a-61f81a84c964.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/91e306da-8883-4263-98bc-d5377db36d9d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8885585a-d77f-4d6b-a23a-61f81a84c964.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8885585a-d77f-4d6b-a23a-61f81a84c964", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8885585a-d77f-4d6b-a23a-61f81a84c964/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/452537ce-4c95-4121-b328-78cbf790615f" + } + ] + }, + { + "label": { + "@none": [ + "133v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b37de8bd-c54f-464d-812a-2d4bfec37cb6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/63db4f97-7a5c-4171-97d4-fbe67bd891e3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b37de8bd-c54f-464d-812a-2d4bfec37cb6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b37de8bd-c54f-464d-812a-2d4bfec37cb6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b37de8bd-c54f-464d-812a-2d4bfec37cb6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4867ea63-cf89-410b-ab35-ec5502ac7958" + } + ] + }, + { + "label": { + "@none": [ + "134r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1d5c67b5-a9f7-4771-8001-66c4b0b43650", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fdd2095-3a11-40f0-ae4c-be6cb0703d19" + } + ] + }, + { + "label": { + "@none": [ + "134v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2a8b7ad5-ec3f-4de7-8a40-2306fa5f4684", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/effba6fb-17f6-4cad-9b0c-d5294e6f9d8a" + } + ] + }, + { + "label": { + "@none": [ + "135r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1aee3d82-0566-4fa6-9432-5536ae94c15f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/41b6d7b4-6c32-4639-9461-720d684828cd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1aee3d82-0566-4fa6-9432-5536ae94c15f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1aee3d82-0566-4fa6-9432-5536ae94c15f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1aee3d82-0566-4fa6-9432-5536ae94c15f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd57b3e5-8421-4d44-ad30-3af7a4306460" + } + ] + }, + { + "label": { + "@none": [ + "135v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5956bc98-d5cd-4fe2-9e37-03461d4694ba.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ae9dc7ca-7705-48b2-af57-82c3abe4fc38", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5956bc98-d5cd-4fe2-9e37-03461d4694ba.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5956bc98-d5cd-4fe2-9e37-03461d4694ba", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5956bc98-d5cd-4fe2-9e37-03461d4694ba/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32556a53-c6d2-4202-92c9-6040f67227f6" + } + ] + }, + { + "label": { + "@none": [ + "136r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49ba497d-9d51-44fe-a09b-1b8e82f9248a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ea22a671-a697-4c4e-a375-6162781338a2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49ba497d-9d51-44fe-a09b-1b8e82f9248a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/49ba497d-9d51-44fe-a09b-1b8e82f9248a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/49ba497d-9d51-44fe-a09b-1b8e82f9248a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d266ced8-c943-481b-9048-849befe0d4c5" + } + ] + }, + { + "label": { + "@none": [ + "136v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/33b8af22-582d-4378-9f5d-90c6f44bda54", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb8eea36-747b-4c59-a85b-07468db8fd97" + } + ] + }, + { + "label": { + "@none": [ + "137r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e190612-6f1f-44f9-b57c-6616c1ed529e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7150f80a-b87c-4442-8d58-e5ac1de61bca", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e190612-6f1f-44f9-b57c-6616c1ed529e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e190612-6f1f-44f9-b57c-6616c1ed529e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e190612-6f1f-44f9-b57c-6616c1ed529e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35b91f58-7a22-4e6f-a9f1-1ae1d292d1f0" + } + ] + }, + { + "label": { + "@none": [ + "137v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b967cdd-f32f-4104-b5db-ad5780e0607a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ead9fb99-6b4a-4444-a019-1ef5e5088b7d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b967cdd-f32f-4104-b5db-ad5780e0607a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b967cdd-f32f-4104-b5db-ad5780e0607a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b967cdd-f32f-4104-b5db-ad5780e0607a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a4e4398-3be9-493f-8eb3-f73444584284" + } + ] + }, + { + "label": { + "@none": [ + "138r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25155359-022b-4a49-a1b9-e68373579eea.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ddc6d5b4-7d17-4332-bd4e-4a590756c3bb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25155359-022b-4a49-a1b9-e68373579eea.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25155359-022b-4a49-a1b9-e68373579eea", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25155359-022b-4a49-a1b9-e68373579eea/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bec1fe85-2e8a-4eed-85ee-65e2cfd451c4" + } + ] + }, + { + "label": { + "@none": [ + "138v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52bb594e-b23b-4e82-80fb-c03ce144c2d0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6534099a-b06c-4d59-bcd2-de702244f88e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52bb594e-b23b-4e82-80fb-c03ce144c2d0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/52bb594e-b23b-4e82-80fb-c03ce144c2d0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/52bb594e-b23b-4e82-80fb-c03ce144c2d0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3fa96bd3-4cbf-4314-881a-7ef4c987a25d" + } + ] + }, + { + "label": { + "@none": [ + "139r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/95be1c13-f77a-4982-918c-e6dd06696d11.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/115b6650-a1df-4df8-8da5-8a6add816a2c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/95be1c13-f77a-4982-918c-e6dd06696d11.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/95be1c13-f77a-4982-918c-e6dd06696d11", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/95be1c13-f77a-4982-918c-e6dd06696d11/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e74e02b-5bee-40e2-98bf-d873c9c2f46d" + } + ] + }, + { + "label": { + "@none": [ + "139v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fd7ff25a-c14c-455b-8de2-bf0843b22155.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7505c957-dfc4-4f0b-9e42-ad0f9169f7c7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fd7ff25a-c14c-455b-8de2-bf0843b22155.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fd7ff25a-c14c-455b-8de2-bf0843b22155", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fd7ff25a-c14c-455b-8de2-bf0843b22155/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18d0b063-5078-4114-9bd4-65b12c08b476" + } + ] + }, + { + "label": { + "@none": [ + "140r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/832c218b-edfc-48cd-9774-b2b74fe74977.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c10106d-37fe-4c98-afa0-6912547b6e7a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/832c218b-edfc-48cd-9774-b2b74fe74977.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/832c218b-edfc-48cd-9774-b2b74fe74977", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/832c218b-edfc-48cd-9774-b2b74fe74977/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eeae467c-fa96-4b43-9393-68d40b7f3e2d" + } + ] + }, + { + "label": { + "@none": [ + "140v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f6d95e9d-86af-449b-8268-0f0beddf539d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9fc5c245-4f59-452f-a20f-c28c9c6d100e" + } + ] + }, + { + "label": { + "@none": [ + "141r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dfd92e5a-e995-4273-9c3e-710c37259d98.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2c44d5e9-d853-45a5-baa3-42056e96a091", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dfd92e5a-e995-4273-9c3e-710c37259d98.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dfd92e5a-e995-4273-9c3e-710c37259d98", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dfd92e5a-e995-4273-9c3e-710c37259d98/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff9828e1-4db6-4207-86c5-3f2f3cc6ae0e" + } + ] + }, + { + "label": { + "@none": [ + "141v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f539557d-23aa-497d-afca-dfd78a6bfbe2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4c722a6c-103e-49ba-aac4-343456bb70b6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f539557d-23aa-497d-afca-dfd78a6bfbe2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f539557d-23aa-497d-afca-dfd78a6bfbe2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f539557d-23aa-497d-afca-dfd78a6bfbe2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17c9be4a-cedb-47c8-ad7a-2ff9e3adcbd0" + } + ] + }, + { + "label": { + "@none": [ + "142r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e70b4a3d-13fe-43f2-a3f5-26fa63028923.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/394ca79b-2c74-453a-a705-4e54a7dd73a2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e70b4a3d-13fe-43f2-a3f5-26fa63028923.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e70b4a3d-13fe-43f2-a3f5-26fa63028923", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e70b4a3d-13fe-43f2-a3f5-26fa63028923/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7effbd7-6544-4fb8-82ab-249b24473cd9" + } + ] + }, + { + "label": { + "@none": [ + "142v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fa3663b9-d6fa-4006-bb1c-612054be67ca.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/53476b98-4fca-4759-b906-03f7288e8aa0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fa3663b9-d6fa-4006-bb1c-612054be67ca.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fa3663b9-d6fa-4006-bb1c-612054be67ca", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fa3663b9-d6fa-4006-bb1c-612054be67ca/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e2637e4e-6d5a-43e1-a63e-fabccccbbc9d" + } + ] + }, + { + "label": { + "@none": [ + "143r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8579d21a-da6a-4214-b889-bc93047db96d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d2183c03-2f28-4ddf-a959-db3ddc5b1311", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8579d21a-da6a-4214-b889-bc93047db96d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8579d21a-da6a-4214-b889-bc93047db96d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8579d21a-da6a-4214-b889-bc93047db96d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3fdff09d-2db2-4a00-bddc-375159bd0bf7" + } + ] + }, + { + "label": { + "@none": [ + "143v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/585b4d74-22b4-423d-8a58-337482d1571b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1a4e53a8-3698-4cd5-9597-7a8da1de303e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/585b4d74-22b4-423d-8a58-337482d1571b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/585b4d74-22b4-423d-8a58-337482d1571b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/585b4d74-22b4-423d-8a58-337482d1571b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96831e54-27f2-422e-875b-8d54ab6e572f" + } + ] + }, + { + "label": { + "@none": [ + "144r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cff5cf70-0c2b-43ff-b473-93f7818f4251.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b9711ab-d901-4011-a73b-b7bb7a5c5f5a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cff5cf70-0c2b-43ff-b473-93f7818f4251.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cff5cf70-0c2b-43ff-b473-93f7818f4251", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cff5cf70-0c2b-43ff-b473-93f7818f4251/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a923458-ca34-4a79-beef-55c8f4d8e340" + } + ] + }, + { + "label": { + "@none": [ + "144v" + ] + }, + "height": 7520, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/875496d5-57ea-48f8-af6f-90846e8c023e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ea9cfa9c-4392-4088-a6f7-f57ec061a0d3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/875496d5-57ea-48f8-af6f-90846e8c023e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/875496d5-57ea-48f8-af6f-90846e8c023e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/875496d5-57ea-48f8-af6f-90846e8c023e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab595a38-fd66-4fb9-a12e-837ee9eed65e" + } + ] + }, + { + "label": { + "@none": [ + "145r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c7889b9c-6172-47e9-a147-5820c56981db.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3ab9aca3-eaf6-40d7-ad79-40e57b0aefe8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c7889b9c-6172-47e9-a147-5820c56981db.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c7889b9c-6172-47e9-a147-5820c56981db", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c7889b9c-6172-47e9-a147-5820c56981db/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a118726f-6fe0-488c-a868-2827812ad655" + } + ] + }, + { + "label": { + "@none": [ + "145v" + ] + }, + "height": 7520, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9fc4371b-fa5a-4095-ad62-b55153fbc6f3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a2f99b3d-0ace-4298-a9c8-8848d6b17458", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9fc4371b-fa5a-4095-ad62-b55153fbc6f3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9fc4371b-fa5a-4095-ad62-b55153fbc6f3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9fc4371b-fa5a-4095-ad62-b55153fbc6f3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e3e2d96-87d3-4387-9ec3-f41be039a838" + } + ] + }, + { + "label": { + "@none": [ + "146r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bf756a1-684d-4ddc-a9da-30eee210399f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5b95539-2782-4bee-b678-3586d4bdfbd4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bf756a1-684d-4ddc-a9da-30eee210399f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5bf756a1-684d-4ddc-a9da-30eee210399f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5bf756a1-684d-4ddc-a9da-30eee210399f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e47038b5-929e-4644-9a9b-31737c1d3097" + } + ] + }, + { + "label": { + "@none": [ + "146v" + ] + }, + "height": 7520, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3054518c-2199-44f9-a268-6e79d1fa8657.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f45fadc9-8f63-4d7b-9ff9-c468378f7cb6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3054518c-2199-44f9-a268-6e79d1fa8657.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3054518c-2199-44f9-a268-6e79d1fa8657", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3054518c-2199-44f9-a268-6e79d1fa8657/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6eacef75-ace2-4d3d-9dff-2c4e7a069df3" + } + ] + }, + { + "label": { + "@none": [ + "147r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/319c5d2f-5ecc-41e6-97eb-6bbe0c879ef8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a1ef1831-23af-418f-a326-8706ed03170e" + } + ] + }, + { + "label": { + "@none": [ + "147v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4affb95b-9f12-43f6-8dc1-6eba18749c23.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a29599e7-ce92-45eb-b938-73706abee1e4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4affb95b-9f12-43f6-8dc1-6eba18749c23.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4affb95b-9f12-43f6-8dc1-6eba18749c23", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4affb95b-9f12-43f6-8dc1-6eba18749c23/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/653fe17e-237a-4d91-bbca-986a28e0a493" + } + ] + }, + { + "label": { + "@none": [ + "148r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/444b2254-b73a-4b69-befe-fd93f45e4fdc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b47a670d-06f6-47c6-998f-7715e4efed2d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/444b2254-b73a-4b69-befe-fd93f45e4fdc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/444b2254-b73a-4b69-befe-fd93f45e4fdc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/444b2254-b73a-4b69-befe-fd93f45e4fdc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b7510a9f-beef-43ec-9b97-ac1dcc50b856" + } + ] + }, + { + "label": { + "@none": [ + "148v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1adbbffe-124b-410b-9c3b-269222df7954", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07b354dc-2547-4d5c-a117-b18b2d2a0e69" + } + ] + }, + { + "label": { + "@none": [ + "149r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/778e0ff2-7758-4862-a7d7-c471540332e7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7488bc4f-003d-4f46-8553-133716bc4b4f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/778e0ff2-7758-4862-a7d7-c471540332e7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/778e0ff2-7758-4862-a7d7-c471540332e7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/778e0ff2-7758-4862-a7d7-c471540332e7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a78d8295-14da-4f6f-ac10-a8d52eebd64f" + } + ] + }, + { + "label": { + "@none": [ + "149v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77dac026-f7f9-41b3-82dc-e76406c407d0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d364dcb8-b258-452c-a5ea-8ec8d2077a2d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77dac026-f7f9-41b3-82dc-e76406c407d0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77dac026-f7f9-41b3-82dc-e76406c407d0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77dac026-f7f9-41b3-82dc-e76406c407d0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73409a26-65b6-4873-8ed1-f15b969850c7" + } + ] + }, + { + "label": { + "@none": [ + "150r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52a46e68-40fc-492e-9adf-33ce4d840217.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eba98b2d-e6f2-4b2f-9350-322c57e9d427", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52a46e68-40fc-492e-9adf-33ce4d840217.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/52a46e68-40fc-492e-9adf-33ce4d840217", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/52a46e68-40fc-492e-9adf-33ce4d840217/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7546cf7-3b51-45b4-a215-af8bd1e111eb" + } + ] + }, + { + "label": { + "@none": [ + "150v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9baf653-e405-4ef2-9ee6-e5e95b633b99.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c7901acd-ad5c-4d50-8c23-2e9cc30fa5a6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9baf653-e405-4ef2-9ee6-e5e95b633b99.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9baf653-e405-4ef2-9ee6-e5e95b633b99", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9baf653-e405-4ef2-9ee6-e5e95b633b99/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/017a0476-871c-4697-a259-06f57c6bb520" + } + ] + }, + { + "label": { + "@none": [ + "151r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76119670-1005-47e0-8967-11720d15de95.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9ac91f1b-7c17-4013-845d-b8f6546f3bdc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76119670-1005-47e0-8967-11720d15de95.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76119670-1005-47e0-8967-11720d15de95", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76119670-1005-47e0-8967-11720d15de95/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/106b5a7b-4b87-41d6-b209-62ad761a8cc9" + } + ] + }, + { + "label": { + "@none": [ + "151v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab32e855-8f56-4cce-992d-a5eaebcb33ff.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/16881adb-47c2-4ceb-886f-27ad1da1bbd6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab32e855-8f56-4cce-992d-a5eaebcb33ff.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ab32e855-8f56-4cce-992d-a5eaebcb33ff", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ab32e855-8f56-4cce-992d-a5eaebcb33ff/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d922256-03f1-4d96-a4af-96324f3ad7ff" + } + ] + }, + { + "label": { + "@none": [ + "152r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/04a8371d-6cc6-4994-ab92-70513827a491.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ceae47cb-4dbb-42a8-a5e6-83f1ae704a49", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/04a8371d-6cc6-4994-ab92-70513827a491.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/04a8371d-6cc6-4994-ab92-70513827a491", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/04a8371d-6cc6-4994-ab92-70513827a491/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c90a7558-b240-4b64-8cb4-d8466bbe26ff" + } + ] + }, + { + "label": { + "@none": [ + "152v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/097cbaa1-0cdc-40ca-964c-7cb1c3af1893.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9502e5b5-6874-4835-9dd3-373fd8273ee5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/097cbaa1-0cdc-40ca-964c-7cb1c3af1893.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/097cbaa1-0cdc-40ca-964c-7cb1c3af1893", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/097cbaa1-0cdc-40ca-964c-7cb1c3af1893/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9b13286-d6c5-4a82-8f08-900b53b4f183" + } + ] + }, + { + "label": { + "@none": [ + "153r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dec21ff8-d64b-44a2-b96e-236a6d9a981f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/62eab29e-4507-4f74-8219-c7bf03e2e5cd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dec21ff8-d64b-44a2-b96e-236a6d9a981f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dec21ff8-d64b-44a2-b96e-236a6d9a981f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dec21ff8-d64b-44a2-b96e-236a6d9a981f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1347d869-24f2-46f9-bb83-7f95d65652b1" + } + ] + }, + { + "label": { + "@none": [ + "153v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5de9f01-1d6f-41e8-b867-004ea887cc15.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b720d678-c072-4ac4-91b5-f34539605af7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5de9f01-1d6f-41e8-b867-004ea887cc15.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5de9f01-1d6f-41e8-b867-004ea887cc15", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5de9f01-1d6f-41e8-b867-004ea887cc15/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3ad49bc-3f49-46a4-ba76-6cb3b7d0f328" + } + ] + }, + { + "label": { + "@none": [ + "154r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff96ac09-c73b-410f-9cda-39ab1f18ecb1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2d2fa3c5-07c8-4268-a88c-623693aa60a7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff96ac09-c73b-410f-9cda-39ab1f18ecb1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff96ac09-c73b-410f-9cda-39ab1f18ecb1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff96ac09-c73b-410f-9cda-39ab1f18ecb1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29e9492f-1a35-4101-af87-c33bfd56508d" + } + ] + }, + { + "label": { + "@none": [ + "154v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cedaa258-3a7a-4d61-9a25-acd63925e44b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8f36152c-bb24-4a83-9087-7f62bb9a5f8a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cedaa258-3a7a-4d61-9a25-acd63925e44b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cedaa258-3a7a-4d61-9a25-acd63925e44b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cedaa258-3a7a-4d61-9a25-acd63925e44b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72c0882d-0c8c-4ac3-8ab9-3cec4f3a8f5c" + } + ] + }, + { + "label": { + "@none": [ + "155r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b298de49-dd25-49e3-9011-8f2591ec92e0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d00a6587-7b9d-4fa8-82bb-888afba1603a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b298de49-dd25-49e3-9011-8f2591ec92e0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b298de49-dd25-49e3-9011-8f2591ec92e0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b298de49-dd25-49e3-9011-8f2591ec92e0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03395a46-aad2-4738-9d79-704bd12b4305" + } + ] + }, + { + "label": { + "@none": [ + "155v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4ed8c63a-948a-494a-9e59-b62dd338dac9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bf3b1776-f1c6-44ac-86ba-75caff4d2432", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4ed8c63a-948a-494a-9e59-b62dd338dac9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4ed8c63a-948a-494a-9e59-b62dd338dac9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4ed8c63a-948a-494a-9e59-b62dd338dac9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0cc6487-818c-48e8-942d-1440b0115e16" + } + ] + }, + { + "label": { + "@none": [ + "156r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03746518-3148-43df-8a4e-cc37fb356290.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e016c285-a767-4535-b5c1-c98ccc45fbf9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03746518-3148-43df-8a4e-cc37fb356290.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/03746518-3148-43df-8a4e-cc37fb356290", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/03746518-3148-43df-8a4e-cc37fb356290/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f4b45bcf-d149-415f-a280-f561b5495f2f" + } + ] + }, + { + "label": { + "@none": [ + "156v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/10d93369-5e10-4ec7-b98f-e5597ef46aa4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bf07db5d-7a65-4fde-85aa-255a0622f177", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/10d93369-5e10-4ec7-b98f-e5597ef46aa4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/10d93369-5e10-4ec7-b98f-e5597ef46aa4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/10d93369-5e10-4ec7-b98f-e5597ef46aa4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/255da521-abac-4f22-86dc-d29a63f1e53e" + } + ] + }, + { + "label": { + "@none": [ + "157r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ae6c1a50-02a4-4c66-bc21-0c0df73f86e8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ae6253f-9072-4dd9-9026-d1c0f4daffc8" + } + ] + }, + { + "label": { + "@none": [ + "157v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fe2248d-ed9e-4c80-864e-4585a04a0cf7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e119b31b-a08f-4fdc-aea9-82dfada0e4c3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fe2248d-ed9e-4c80-864e-4585a04a0cf7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fe2248d-ed9e-4c80-864e-4585a04a0cf7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fe2248d-ed9e-4c80-864e-4585a04a0cf7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d9a0b84-e917-4cd8-9217-23ff6ccad082" + } + ] + }, + { + "label": { + "@none": [ + "158r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/78e2130a-0431-47d3-b322-c680f4fa321e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/77089de8-5516-4a6b-94d2-cc3beb8495c4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/78e2130a-0431-47d3-b322-c680f4fa321e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/78e2130a-0431-47d3-b322-c680f4fa321e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/78e2130a-0431-47d3-b322-c680f4fa321e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5cb4799a-cbfc-4fde-b6a4-ce88b924565f" + } + ] + }, + { + "label": { + "@none": [ + "158v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e9eaf53-d78f-406c-9e4d-05e5caa37678.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59b41174-a02e-4bdf-85f8-8d2a1227455c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e9eaf53-d78f-406c-9e4d-05e5caa37678.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e9eaf53-d78f-406c-9e4d-05e5caa37678", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e9eaf53-d78f-406c-9e4d-05e5caa37678/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0af71b6-9ab5-47cd-9a12-15b618c01b75" + } + ] + }, + { + "label": { + "@none": [ + "159r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/448ca725-b4ed-468e-9b2c-db8c1ed8335e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c24c6680-b573-421f-a8ba-3844141b6c79", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/448ca725-b4ed-468e-9b2c-db8c1ed8335e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/448ca725-b4ed-468e-9b2c-db8c1ed8335e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/448ca725-b4ed-468e-9b2c-db8c1ed8335e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/49b4f4a9-06dc-4b09-ac15-75dc3a9a2bd5" + } + ] + }, + { + "label": { + "@none": [ + "159v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/de1e6901-772c-47ac-afd0-4614a15390ec.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7958ac22-2e29-4b93-b848-a287a4b38bc7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/de1e6901-772c-47ac-afd0-4614a15390ec.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/de1e6901-772c-47ac-afd0-4614a15390ec", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/de1e6901-772c-47ac-afd0-4614a15390ec/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9eb9423c-bd4d-4d65-a993-0b6ea5ddbde0" + } + ] + }, + { + "label": { + "@none": [ + "160r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0afb121-0377-4e61-a90b-e2337ad084d9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8c9bd2e-39e6-42f8-b7c3-bbb04d2647ea" + } + ] + }, + { + "label": { + "@none": [ + "160v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bf46ca62-8e4c-4c56-b2e7-55962807b5ee.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fb00aa33-7fc1-43d8-a8da-53e8dd535b7e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bf46ca62-8e4c-4c56-b2e7-55962807b5ee.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bf46ca62-8e4c-4c56-b2e7-55962807b5ee", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bf46ca62-8e4c-4c56-b2e7-55962807b5ee/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98398304-e093-4fe6-8a18-362722bca59b" + } + ] + }, + { + "label": { + "@none": [ + "161r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2107e134-6e1f-43c5-ad19-8ae9bd955388.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4eb5fd75-2b14-4c87-bd09-859f1ca8ed2f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2107e134-6e1f-43c5-ad19-8ae9bd955388.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2107e134-6e1f-43c5-ad19-8ae9bd955388", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2107e134-6e1f-43c5-ad19-8ae9bd955388/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc2ace21-7402-4a24-b002-74b06f3ed35f" + } + ] + }, + { + "label": { + "@none": [ + "161v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88df527e-4d42-478d-81f4-223b6b741d34.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a4ebeb0c-6ce9-4d0e-b082-c036b710bbb7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88df527e-4d42-478d-81f4-223b6b741d34.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/88df527e-4d42-478d-81f4-223b6b741d34", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/88df527e-4d42-478d-81f4-223b6b741d34/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1099576-37ef-40ca-94c6-30e62e34de09" + } + ] + }, + { + "label": { + "@none": [ + "162r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/33f6373c-42f5-44d5-bc00-fb73341ac4a0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9c5a560-c094-4612-8a68-989adf71b111", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/33f6373c-42f5-44d5-bc00-fb73341ac4a0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/33f6373c-42f5-44d5-bc00-fb73341ac4a0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/33f6373c-42f5-44d5-bc00-fb73341ac4a0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e2b44b6-1e6f-4f59-9996-e4a82c3e3bd3" + } + ] + }, + { + "label": { + "@none": [ + "162v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48e368a1-e825-403d-a0d6-91d7c0c33a13.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e54742f1-5f57-446d-bdba-4d3eb69a8bda", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48e368a1-e825-403d-a0d6-91d7c0c33a13.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48e368a1-e825-403d-a0d6-91d7c0c33a13", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48e368a1-e825-403d-a0d6-91d7c0c33a13/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/248f07db-122c-4075-8867-d89260b7bb4c" + } + ] + }, + { + "label": { + "@none": [ + "163r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f6a0228-de63-4c98-8443-461314967f6b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/93ce6f6e-96b5-4106-93d7-b951e8de9800", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f6a0228-de63-4c98-8443-461314967f6b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0f6a0228-de63-4c98-8443-461314967f6b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0f6a0228-de63-4c98-8443-461314967f6b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e966d8d-bf8b-485a-bb7d-7207b2778035" + } + ] + }, + { + "label": { + "@none": [ + "163v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7ce033bc-cbde-4509-968a-d5f43a1e29bb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5ddaea97-03c6-45eb-98dd-39dcf356c916", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7ce033bc-cbde-4509-968a-d5f43a1e29bb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7ce033bc-cbde-4509-968a-d5f43a1e29bb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7ce033bc-cbde-4509-968a-d5f43a1e29bb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9c67467-86ce-4a8d-8127-94c59e196bf1" + } + ] + }, + { + "label": { + "@none": [ + "164r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/870057dc-dc28-487c-b04b-1aa07edbc7fc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/02a8230e-7cad-463b-b59a-9c9c19d3047d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/870057dc-dc28-487c-b04b-1aa07edbc7fc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/870057dc-dc28-487c-b04b-1aa07edbc7fc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/870057dc-dc28-487c-b04b-1aa07edbc7fc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68b4526d-6d7f-498c-85cd-0335ed53148b" + } + ] + }, + { + "label": { + "@none": [ + "164v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b6d73f-ea20-4993-a6b9-a786caf1f395.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7881df40-4c28-4294-a981-1cdaea7f7b22", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b6d73f-ea20-4993-a6b9-a786caf1f395.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6b6d73f-ea20-4993-a6b9-a786caf1f395", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6b6d73f-ea20-4993-a6b9-a786caf1f395/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5654f456-76a4-48aa-bbd1-f7b3bf2a858b" + } + ] + }, + { + "label": { + "@none": [ + "165r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1f6036fd-96f8-430d-92c4-b5e670b9b16b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0364372-9e07-4f3f-85ea-e1cc97f7f8e4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1f6036fd-96f8-430d-92c4-b5e670b9b16b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1f6036fd-96f8-430d-92c4-b5e670b9b16b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1f6036fd-96f8-430d-92c4-b5e670b9b16b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f091907-7334-4ca7-8964-f5da415dfc42" + } + ] + }, + { + "label": { + "@none": [ + "165v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49244b3f-5ebc-466a-9261-d40b21a7ae90.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/26fee59f-1f55-44db-90ae-45a4e4f75088", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49244b3f-5ebc-466a-9261-d40b21a7ae90.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/49244b3f-5ebc-466a-9261-d40b21a7ae90", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/49244b3f-5ebc-466a-9261-d40b21a7ae90/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01b1bcbe-9f9e-4dd5-939e-ce46bb0be1aa" + } + ] + }, + { + "label": { + "@none": [ + "166r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd73063b-34b8-4c3f-9ae0-75a20b874d2e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f987dfba-5b5c-479d-8c39-a51a0356b6a6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd73063b-34b8-4c3f-9ae0-75a20b874d2e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bd73063b-34b8-4c3f-9ae0-75a20b874d2e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bd73063b-34b8-4c3f-9ae0-75a20b874d2e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ddb91530-4270-4beb-bce6-7ef4431ec136" + } + ] + }, + { + "label": { + "@none": [ + "166v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/193ee4b5-d970-4c61-bc30-4c0d9fe6a390.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b34686d-a636-40d3-a398-cfec00191286", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/193ee4b5-d970-4c61-bc30-4c0d9fe6a390.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/193ee4b5-d970-4c61-bc30-4c0d9fe6a390", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/193ee4b5-d970-4c61-bc30-4c0d9fe6a390/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0fdbabe-bc57-4a8b-8893-d2b59b8d1551" + } + ] + }, + { + "label": { + "@none": [ + "167r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a13e95a-392d-4e33-9640-89f7bec42bbc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/11b7e922-af6a-4a57-ba96-b7b801fcca7d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a13e95a-392d-4e33-9640-89f7bec42bbc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a13e95a-392d-4e33-9640-89f7bec42bbc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a13e95a-392d-4e33-9640-89f7bec42bbc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70549916-6c38-44b6-b356-ae0697cbc36c" + } + ] + }, + { + "label": { + "@none": [ + "167v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c709111-e6ba-4956-a9d7-8166a8fa5789.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1640c14-0153-43d2-a126-9926668c3322", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c709111-e6ba-4956-a9d7-8166a8fa5789.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c709111-e6ba-4956-a9d7-8166a8fa5789", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c709111-e6ba-4956-a9d7-8166a8fa5789/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98b86762-57ea-40cf-b002-e75a7aef669c" + } + ] + }, + { + "label": { + "@none": [ + "168r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/17a11ad6-713e-40cd-9e35-587b6a10644b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c05d2a08-9680-4509-b47d-4a510670f34d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/17a11ad6-713e-40cd-9e35-587b6a10644b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/17a11ad6-713e-40cd-9e35-587b6a10644b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/17a11ad6-713e-40cd-9e35-587b6a10644b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d421e79-4de2-42ce-ad0f-f1e736568108" + } + ] + }, + { + "label": { + "@none": [ + "168v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef780cca-7be2-466d-8d8a-9b2b88003dd8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9653e216-6dc6-4d9a-8643-4351f1491e43", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef780cca-7be2-466d-8d8a-9b2b88003dd8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef780cca-7be2-466d-8d8a-9b2b88003dd8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef780cca-7be2-466d-8d8a-9b2b88003dd8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93a541ee-0ad1-48bc-bb59-54ea4cbef2ef" + } + ] + }, + { + "label": { + "@none": [ + "169r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be4fb4f0-8f2a-4911-bee1-13e1740e11a8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8008438e-6078-4d60-9aaa-a2d349219e71", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be4fb4f0-8f2a-4911-bee1-13e1740e11a8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/be4fb4f0-8f2a-4911-bee1-13e1740e11a8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/be4fb4f0-8f2a-4911-bee1-13e1740e11a8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d9a2c5a-8e5a-4a8c-bf44-c125bfcf5f97" + } + ] + }, + { + "label": { + "@none": [ + "169v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4568fea1-fcc1-42e9-a141-a41636c2116a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/88bb23f7-d4d9-4493-aa73-837c529c3422", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4568fea1-fcc1-42e9-a141-a41636c2116a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4568fea1-fcc1-42e9-a141-a41636c2116a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4568fea1-fcc1-42e9-a141-a41636c2116a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/26398e58-743b-4c5d-822c-49e4239d3011" + } + ] + }, + { + "label": { + "@none": [ + "170r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/da92904c-8e36-43b1-ad23-6b1df79617d0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/26f8f85e-34c7-47c2-bf9c-6b055aa26853", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/da92904c-8e36-43b1-ad23-6b1df79617d0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/da92904c-8e36-43b1-ad23-6b1df79617d0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/da92904c-8e36-43b1-ad23-6b1df79617d0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94f15429-b75a-46fe-95e4-ace3b9ab75d1" + } + ] + }, + { + "label": { + "@none": [ + "170v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d61c8df-92d7-4c3f-a361-b973f15fb143.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eca597e1-8d1e-4c05-be05-bf678c041bd2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d61c8df-92d7-4c3f-a361-b973f15fb143.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5d61c8df-92d7-4c3f-a361-b973f15fb143", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5d61c8df-92d7-4c3f-a361-b973f15fb143/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69dfb36e-250f-42de-bb6f-8749fe2b4da4" + } + ] + }, + { + "label": { + "@none": [ + "171r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/09045e2a-e6a3-4a04-9ae0-2131d34be9ce", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ff131b5-9826-4848-ae64-d072f5460155" + } + ] + }, + { + "label": { + "@none": [ + "171v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36bb6b6d-90be-4069-9ce4-a55254873e8e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce2d4589-17ff-41bd-bf85-e9b782480740", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36bb6b6d-90be-4069-9ce4-a55254873e8e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/36bb6b6d-90be-4069-9ce4-a55254873e8e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/36bb6b6d-90be-4069-9ce4-a55254873e8e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9338956f-2f8f-4c66-b95e-6a02582193a0" + } + ] + }, + { + "label": { + "@none": [ + "172r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e0c03bd-7c48-43dc-a539-5c00705fa30c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/38262f1e-a665-4ed9-8010-ed8367be909b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e0c03bd-7c48-43dc-a539-5c00705fa30c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1e0c03bd-7c48-43dc-a539-5c00705fa30c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1e0c03bd-7c48-43dc-a539-5c00705fa30c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/014f7606-5b44-4da2-9391-44401008054f" + } + ] + }, + { + "label": { + "@none": [ + "172v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bba7b2b-bf90-4099-8d01-38e9998978b4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8cf0f1ad-63e7-4737-816e-4a19d2dde294", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bba7b2b-bf90-4099-8d01-38e9998978b4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7bba7b2b-bf90-4099-8d01-38e9998978b4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7bba7b2b-bf90-4099-8d01-38e9998978b4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34709777-df5f-4c26-8df3-da1e73c325d8" + } + ] + }, + { + "label": { + "@none": [ + "173r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e5480c83-412b-4db7-945e-4a48602c5dc7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fa3c853-f06d-4d71-a6a8-d00d04ca4cec" + } + ] + }, + { + "label": { + "@none": [ + "173v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/377816e8-8bc6-4a00-bc02-70258da7064f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b7a7134-b6dc-4879-aca6-75f2d3814a54", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/377816e8-8bc6-4a00-bc02-70258da7064f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/377816e8-8bc6-4a00-bc02-70258da7064f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/377816e8-8bc6-4a00-bc02-70258da7064f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80d8910c-3248-4db5-b36c-701bb94c6674" + } + ] + }, + { + "label": { + "@none": [ + "174r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/295299a3-2cc8-41cc-8f0c-223bbb09ce31.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/87968184-e600-432e-a8a9-e5fede569262", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/295299a3-2cc8-41cc-8f0c-223bbb09ce31.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/295299a3-2cc8-41cc-8f0c-223bbb09ce31", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/295299a3-2cc8-41cc-8f0c-223bbb09ce31/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0852d6b-defc-4b37-bb43-675111d8ac95" + } + ] + }, + { + "label": { + "@none": [ + "174v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f04f24-e275-4976-9833-b461d97f8054.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2852afec-ef74-4e9d-8646-ee2f745ecd2b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f04f24-e275-4976-9833-b461d97f8054.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f04f24-e275-4976-9833-b461d97f8054", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f04f24-e275-4976-9833-b461d97f8054/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ee6160a-3ae3-4567-a95b-e81c2513bacb" + } + ] + }, + { + "label": { + "@none": [ + "175r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7703e3c2-cdc7-4630-b9ae-58b2546f87a7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/77af903c-0b35-40be-967b-c820423210b5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7703e3c2-cdc7-4630-b9ae-58b2546f87a7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7703e3c2-cdc7-4630-b9ae-58b2546f87a7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7703e3c2-cdc7-4630-b9ae-58b2546f87a7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f4cbab09-f110-435e-b093-e333b0f15ca7" + } + ] + }, + { + "label": { + "@none": [ + "175v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b14ff899-3c15-4ce5-8493-a61de6372eb9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f3919e98-9230-4670-9189-e2128c2e9fc5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b14ff899-3c15-4ce5-8493-a61de6372eb9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b14ff899-3c15-4ce5-8493-a61de6372eb9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b14ff899-3c15-4ce5-8493-a61de6372eb9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/251d0a3b-a435-4ab3-81b4-482b61a07dd0" + } + ] + }, + { + "label": { + "@none": [ + "176r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f653faf-a469-41cc-9e8e-4f239bf6b416.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/211d63ba-c731-4e2d-8e5a-f1d6ad119d42", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f653faf-a469-41cc-9e8e-4f239bf6b416.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f653faf-a469-41cc-9e8e-4f239bf6b416", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f653faf-a469-41cc-9e8e-4f239bf6b416/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d100079-a04d-4be8-b541-167b6afb82dc" + } + ] + }, + { + "label": { + "@none": [ + "176v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cace0a20-d73c-4782-a0db-3ee278bce098.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bf4b4f1-42bc-485f-b467-67569fabbd9b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cace0a20-d73c-4782-a0db-3ee278bce098.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cace0a20-d73c-4782-a0db-3ee278bce098", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cace0a20-d73c-4782-a0db-3ee278bce098/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9e04e93-0a8b-4a4d-a3aa-5d8bfc0e867b" + } + ] + }, + { + "label": { + "@none": [ + "177r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d270d231-d27e-41a3-9741-2ab9f64d74c3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d566066c-3764-4ffd-834a-6b07fcfc7c09", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d270d231-d27e-41a3-9741-2ab9f64d74c3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d270d231-d27e-41a3-9741-2ab9f64d74c3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d270d231-d27e-41a3-9741-2ab9f64d74c3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4315789-1078-48a8-b932-c398dc188886" + } + ] + }, + { + "label": { + "@none": [ + "177v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d587f6d-db5c-4cdb-a553-5c89cd80945b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/878998a2-3c69-49c4-a3f9-b7cc92e59f19", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d587f6d-db5c-4cdb-a553-5c89cd80945b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8d587f6d-db5c-4cdb-a553-5c89cd80945b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8d587f6d-db5c-4cdb-a553-5c89cd80945b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5e8b6c67-66e2-4d08-9093-86b81558c61a" + } + ] + }, + { + "label": { + "@none": [ + "178r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d259beb5-1055-453f-b9e7-b151c85270c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aacb6a67-e184-4a9e-9816-7b2d822275cd" + } + ] + }, + { + "label": { + "@none": [ + "178v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453553bc-6f70-4af4-b5ec-63cffc34afb4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/61463a12-ce03-4452-8c2d-dacc7655ddc1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453553bc-6f70-4af4-b5ec-63cffc34afb4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453553bc-6f70-4af4-b5ec-63cffc34afb4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453553bc-6f70-4af4-b5ec-63cffc34afb4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/010d1e4f-21b8-4a92-9815-a3ad46e7d93e" + } + ] + }, + { + "label": { + "@none": [ + "179r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fc2704ee-7cce-47a9-b61d-30d7b84f24a6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/65004030-c3a0-4a29-bb46-b107dcb161b5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fc2704ee-7cce-47a9-b61d-30d7b84f24a6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fc2704ee-7cce-47a9-b61d-30d7b84f24a6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fc2704ee-7cce-47a9-b61d-30d7b84f24a6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08bec508-af85-41e4-8b18-5c8391795ef4" + } + ] + }, + { + "label": { + "@none": [ + "179v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2c6718c4-37eb-4306-9ede-63262c552560.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d7c1db61-7454-4fa1-8a53-a2dffc85db55", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2c6718c4-37eb-4306-9ede-63262c552560.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2c6718c4-37eb-4306-9ede-63262c552560", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2c6718c4-37eb-4306-9ede-63262c552560/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9147faae-ae13-4664-8f40-a7084f9b6318" + } + ] + }, + { + "label": { + "@none": [ + "180r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fcf48a8-df38-4105-a1ac-a72389a3962c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b9a7225c-f735-4c82-ba14-d8648344b147", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fcf48a8-df38-4105-a1ac-a72389a3962c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5fcf48a8-df38-4105-a1ac-a72389a3962c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5fcf48a8-df38-4105-a1ac-a72389a3962c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f9ce9726-620c-472c-a292-cd41cf898d40" + } + ] + }, + { + "label": { + "@none": [ + "180v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/56f9142f-a7a5-4b4a-bf65-1b0bacf9df35", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c136165-407d-4e01-aba4-cb397ddee8c7" + } + ] + }, + { + "label": { + "@none": [ + "181r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ff0babf-32a8-43b3-85b7-01f6db041514.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/20ca1655-1fc7-4f28-ad8b-c111368c45a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ff0babf-32a8-43b3-85b7-01f6db041514.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ff0babf-32a8-43b3-85b7-01f6db041514", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ff0babf-32a8-43b3-85b7-01f6db041514/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87e6b78e-559d-4d25-8ecc-7d7b3b82b7b4" + } + ] + }, + { + "label": { + "@none": [ + "181v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48f4fd33-d2dc-4a8e-83de-557059be254c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/defec588-c138-462f-b0a0-54cf54ef838f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48f4fd33-d2dc-4a8e-83de-557059be254c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48f4fd33-d2dc-4a8e-83de-557059be254c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48f4fd33-d2dc-4a8e-83de-557059be254c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/358dd5fb-619d-4b52-8433-24b2381d9816" + } + ] + }, + { + "label": { + "@none": [ + "182r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7833953e-8bc1-45c3-b6f3-144e1fa4633e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9b93ab4-3592-433e-9c95-2485529ee096" + } + ] + }, + { + "label": { + "@none": [ + "182v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/277a81e7-601e-4db2-9bca-b1713c252a9f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad682a8b-d146-4121-b56a-837a6f670db7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/277a81e7-601e-4db2-9bca-b1713c252a9f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/277a81e7-601e-4db2-9bca-b1713c252a9f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/277a81e7-601e-4db2-9bca-b1713c252a9f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42e5a887-dfd5-459f-b51e-3786c5cb2658" + } + ] + }, + { + "label": { + "@none": [ + "183r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bff4cf4-4517-489f-aef9-e5d1cf96bca9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3ff0cad2-d294-4c9d-a5a4-e76a76211872", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bff4cf4-4517-489f-aef9-e5d1cf96bca9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5bff4cf4-4517-489f-aef9-e5d1cf96bca9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5bff4cf4-4517-489f-aef9-e5d1cf96bca9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d18b0b94-ae30-45c3-95b8-d1511141bc67" + } + ] + }, + { + "label": { + "@none": [ + "183v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113d21b5-b695-4a8d-b545-1cc88c5982da.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bda27fef-aa33-4e31-a3cd-a453a3cf6c69", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113d21b5-b695-4a8d-b545-1cc88c5982da.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/113d21b5-b695-4a8d-b545-1cc88c5982da", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/113d21b5-b695-4a8d-b545-1cc88c5982da/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09a3eec6-62a2-456c-9b07-26ee2f170378" + } + ] + }, + { + "label": { + "@none": [ + "184r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/37a6b1ce-48d8-4833-8c20-51f02f9031a2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/064abec0-6716-469f-b5ba-9a34b13ed83a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/37a6b1ce-48d8-4833-8c20-51f02f9031a2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/37a6b1ce-48d8-4833-8c20-51f02f9031a2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/37a6b1ce-48d8-4833-8c20-51f02f9031a2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a077681a-066f-4521-bc2f-0b548bcbdaa4" + } + ] + }, + { + "label": { + "@none": [ + "184v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c7ff866d-3aa8-4b47-b911-1d19f88ec8ba", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f46e0186-cafd-47e2-bb89-cc85812c2c39" + } + ] + }, + { + "label": { + "@none": [ + "185r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bf038e7-59a4-44fb-9945-fc0e5b5497ca.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/479c9e2e-45f3-4e8c-876c-4e704647a176", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bf038e7-59a4-44fb-9945-fc0e5b5497ca.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7bf038e7-59a4-44fb-9945-fc0e5b5497ca", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7bf038e7-59a4-44fb-9945-fc0e5b5497ca/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51979e1a-ef98-4171-9ffb-d7857dc813fe" + } + ] + }, + { + "label": { + "@none": [ + "185v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f903e1-749f-4008-a0d0-bbfc8dcae28a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a1bfde1-666c-463f-bb34-3f711d319db4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f903e1-749f-4008-a0d0-bbfc8dcae28a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f903e1-749f-4008-a0d0-bbfc8dcae28a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f903e1-749f-4008-a0d0-bbfc8dcae28a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09ec63aa-aeb9-4c8b-a58b-ececa2944760" + } + ] + }, + { + "label": { + "@none": [ + "186r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f89c1cc-af59-4e75-8195-161a526a7995.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da2506bd-d003-482b-8535-9b1ab0c216d3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f89c1cc-af59-4e75-8195-161a526a7995.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f89c1cc-af59-4e75-8195-161a526a7995", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f89c1cc-af59-4e75-8195-161a526a7995/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f68fd23-af4d-477e-a468-b8d83ef0ab06" + } + ] + }, + { + "label": { + "@none": [ + "186v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a87038c7-0051-4bc3-bb08-30235894e466.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b5d3e71b-c7ea-4809-afc4-29ced405912f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a87038c7-0051-4bc3-bb08-30235894e466.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a87038c7-0051-4bc3-bb08-30235894e466", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a87038c7-0051-4bc3-bb08-30235894e466/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d592da9-fda8-4327-b6b8-a60c53f79027" + } + ] + }, + { + "label": { + "@none": [ + "187r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e0db442c-c1be-4879-8186-3f67ac604746.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2f609d4e-0611-41e7-a5d6-89aa248ba77a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e0db442c-c1be-4879-8186-3f67ac604746.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e0db442c-c1be-4879-8186-3f67ac604746", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e0db442c-c1be-4879-8186-3f67ac604746/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1b3d775-92a9-45ef-b222-efd10cbcf5ae" + } + ] + }, + { + "label": { + "@none": [ + "187v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3189fa7f-94c4-4507-8f74-4cb482a783f6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67fdf671-af83-4f8d-8888-22ea213b4de4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3189fa7f-94c4-4507-8f74-4cb482a783f6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3189fa7f-94c4-4507-8f74-4cb482a783f6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3189fa7f-94c4-4507-8f74-4cb482a783f6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/748613c2-07a9-423f-a7d8-73eed2db76dd" + } + ] + }, + { + "label": { + "@none": [ + "188r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20109674-6efd-422c-85c1-2ecaaf9bb403.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df6b9c4c-ea86-4988-8e5d-a5be6abf4f90", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20109674-6efd-422c-85c1-2ecaaf9bb403.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/20109674-6efd-422c-85c1-2ecaaf9bb403", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/20109674-6efd-422c-85c1-2ecaaf9bb403/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90b20ca2-e96f-4691-8df6-b183b9b35f11" + } + ] + }, + { + "label": { + "@none": [ + "188v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe7e4e0-b71e-41c3-9afc-f39fcd894379.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af1137db-c852-40d5-87eb-06a0358b420b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe7e4e0-b71e-41c3-9afc-f39fcd894379.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fe7e4e0-b71e-41c3-9afc-f39fcd894379", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fe7e4e0-b71e-41c3-9afc-f39fcd894379/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/27dc1573-168d-465d-a2f8-357c5e18fb6b" + } + ] + }, + { + "label": { + "@none": [ + "189r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e8f2c426-cbfc-4e4a-9b45-25c5920905bd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1f318d02-3700-4590-8638-25906307beb5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e8f2c426-cbfc-4e4a-9b45-25c5920905bd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e8f2c426-cbfc-4e4a-9b45-25c5920905bd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e8f2c426-cbfc-4e4a-9b45-25c5920905bd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bfcf8500-d90f-44da-89dd-bf7fbb0e7279" + } + ] + }, + { + "label": { + "@none": [ + "189v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43b4e9d1-554b-4fb4-83ec-7b5770f1f289.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a50ef5a-30bc-4946-932d-061de8db6e4d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43b4e9d1-554b-4fb4-83ec-7b5770f1f289.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/43b4e9d1-554b-4fb4-83ec-7b5770f1f289", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/43b4e9d1-554b-4fb4-83ec-7b5770f1f289/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e46ece8-ccfe-4841-864b-0a68654d0e4f" + } + ] + }, + { + "label": { + "@none": [ + "190r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b1a4ea95-d428-43ef-a439-908428de8db9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d34ef338-2de6-4390-a49a-c219a2a76c85", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b1a4ea95-d428-43ef-a439-908428de8db9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b1a4ea95-d428-43ef-a439-908428de8db9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b1a4ea95-d428-43ef-a439-908428de8db9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7533ca29-6230-44a0-b454-41e59f1db314" + } + ] + }, + { + "label": { + "@none": [ + "190v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28e8b37-5b6f-4198-b9ca-c119a800cff6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67270340-85b5-483d-9f79-1b5e125ff70d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28e8b37-5b6f-4198-b9ca-c119a800cff6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a28e8b37-5b6f-4198-b9ca-c119a800cff6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a28e8b37-5b6f-4198-b9ca-c119a800cff6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a56ae704-c25c-4059-8010-77a45866053e" + } + ] + }, + { + "label": { + "@none": [ + "191r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90dcd298-ac5b-4963-9cfa-1b250e86e0ff.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/29f7c0cb-2bee-442a-a91f-705290be4a21", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90dcd298-ac5b-4963-9cfa-1b250e86e0ff.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90dcd298-ac5b-4963-9cfa-1b250e86e0ff", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90dcd298-ac5b-4963-9cfa-1b250e86e0ff/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42b8545d-91b6-498e-97f6-c7b68dc1e1d7" + } + ] + }, + { + "label": { + "@none": [ + "191v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28c296b-154d-4f78-80e5-89f1c2735098.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/76247516-e2cd-4eb3-b4f5-25b5136d2154", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28c296b-154d-4f78-80e5-89f1c2735098.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a28c296b-154d-4f78-80e5-89f1c2735098", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a28c296b-154d-4f78-80e5-89f1c2735098/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b39b829-32b2-437c-88a1-7e5e309cb146" + } + ] + }, + { + "label": { + "@none": [ + "192r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4daeb8ad-e8e4-4f62-ac11-511d42b275bf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5713a4d1-afd3-446e-aba1-fa6b1cebb05d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4daeb8ad-e8e4-4f62-ac11-511d42b275bf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4daeb8ad-e8e4-4f62-ac11-511d42b275bf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4daeb8ad-e8e4-4f62-ac11-511d42b275bf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dab94dd1-536e-43ec-b17f-f2952078a2fd" + } + ] + }, + { + "label": { + "@none": [ + "192v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5f731c1a-b1fb-4f91-b9c1-711c0473ea77.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd613468-dbd3-445b-8d12-d384e3d37467", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5f731c1a-b1fb-4f91-b9c1-711c0473ea77.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5f731c1a-b1fb-4f91-b9c1-711c0473ea77", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5f731c1a-b1fb-4f91-b9c1-711c0473ea77/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84cb0552-364e-4e0c-8db4-db3c31d6a1c8" + } + ] + }, + { + "label": { + "@none": [ + "193r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8fb52868-c2b4-4191-bc07-bb14afbd631e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a037930d-b527-4fba-8a50-da4ff3520290", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8fb52868-c2b4-4191-bc07-bb14afbd631e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8fb52868-c2b4-4191-bc07-bb14afbd631e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8fb52868-c2b4-4191-bc07-bb14afbd631e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae92b7bf-3482-463e-ba30-2df9bd8b48c1" + } + ] + }, + { + "label": { + "@none": [ + "193v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8379aff4-2cc4-4476-9118-46473d9da261.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bb8e84c0-0f44-41b7-b07f-504d3833472b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8379aff4-2cc4-4476-9118-46473d9da261.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8379aff4-2cc4-4476-9118-46473d9da261", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8379aff4-2cc4-4476-9118-46473d9da261/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9dda7be4-f7e3-4863-8d12-5c917b23bf49" + } + ] + }, + { + "label": { + "@none": [ + "194r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ba501afe-ea8c-433e-a4f0-261e8c6899f9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/41494d4b-cec0-45e8-916b-18ad66f0284c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ba501afe-ea8c-433e-a4f0-261e8c6899f9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ba501afe-ea8c-433e-a4f0-261e8c6899f9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ba501afe-ea8c-433e-a4f0-261e8c6899f9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/834a91b9-c75a-42bb-b606-a4834d6be0ce" + } + ] + }, + { + "label": { + "@none": [ + "194v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aa954489-b8f6-4239-bd29-2f27b0cd18ca.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8729f4e3-1f71-435b-bfea-c0af931b51f7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aa954489-b8f6-4239-bd29-2f27b0cd18ca.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aa954489-b8f6-4239-bd29-2f27b0cd18ca", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aa954489-b8f6-4239-bd29-2f27b0cd18ca/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/662f09ca-2d0d-49c8-9b46-25328779f7d4" + } + ] + }, + { + "label": { + "@none": [ + "195r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46a7f026-cf8e-462b-81b0-d5e6385d2c00.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff404595-73fe-49c6-8a89-52c401733088", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46a7f026-cf8e-462b-81b0-d5e6385d2c00.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/46a7f026-cf8e-462b-81b0-d5e6385d2c00", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/46a7f026-cf8e-462b-81b0-d5e6385d2c00/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7690298f-df35-404c-ac23-96bb55f7dfa9" + } + ] + }, + { + "label": { + "@none": [ + "195v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e531f57a-eb3e-4faa-954a-10b50437c5c9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c2ac4a7-5304-41ae-a3da-b1ce2e82b998", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e531f57a-eb3e-4faa-954a-10b50437c5c9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e531f57a-eb3e-4faa-954a-10b50437c5c9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e531f57a-eb3e-4faa-954a-10b50437c5c9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5b01708-a817-4fdb-a286-4d0fc0cbde0e" + } + ] + }, + { + "label": { + "@none": [ + "196r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2303b00b-3588-4d11-955b-5ef6b84bc403.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/463b15e6-6ce3-4bc0-9c14-def0b92c1501", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2303b00b-3588-4d11-955b-5ef6b84bc403.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2303b00b-3588-4d11-955b-5ef6b84bc403", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2303b00b-3588-4d11-955b-5ef6b84bc403/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10f18589-5225-4cdb-aeba-bddb48e8027d" + } + ] + }, + { + "label": { + "@none": [ + "196v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1a827be-9987-47e7-a855-f6c8765f5b42.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3f757833-358f-4d69-985c-7960daa88b11", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1a827be-9987-47e7-a855-f6c8765f5b42.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a1a827be-9987-47e7-a855-f6c8765f5b42", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a1a827be-9987-47e7-a855-f6c8765f5b42/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be8b8ba9-e5a9-49c3-b80c-3844dda46ce3" + } + ] + }, + { + "label": { + "@none": [ + "197r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/01954b32-44c1-4443-a8c3-67b8a2282e9d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2ff0444f-3995-4f55-913d-856b5f4f079f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/01954b32-44c1-4443-a8c3-67b8a2282e9d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/01954b32-44c1-4443-a8c3-67b8a2282e9d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/01954b32-44c1-4443-a8c3-67b8a2282e9d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf26a3d6-5cb5-4258-ac2e-35719c226b5c" + } + ] + }, + { + "label": { + "@none": [ + "197v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bf3ab07-c307-4357-9796-9a00066c28b7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d75bc92-2bcf-4293-b8ad-4bac3e36f351" + } + ] + }, + { + "label": { + "@none": [ + "198r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671742d4-099a-4012-a96e-36bbdcbb0ae1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/17c617f9-d614-4c67-a814-2ac9120487dc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671742d4-099a-4012-a96e-36bbdcbb0ae1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/671742d4-099a-4012-a96e-36bbdcbb0ae1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/671742d4-099a-4012-a96e-36bbdcbb0ae1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/74c50462-a1fb-4138-8177-fd1e1c049179" + } + ] + }, + { + "label": { + "@none": [ + "198v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fb8b863-a5f9-42a7-b340-d34f4fbde10a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e5cc051e-c7be-4756-bbfa-c8280ea4c69c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fb8b863-a5f9-42a7-b340-d34f4fbde10a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5fb8b863-a5f9-42a7-b340-d34f4fbde10a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5fb8b863-a5f9-42a7-b340-d34f4fbde10a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b320dcab-c1b1-4489-873e-4a4a07eafdcb" + } + ] + }, + { + "label": { + "@none": [ + "199r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df4022bf-5297-4ee8-b5ea-b89285364893", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/615f87aa-2aab-4cc7-b169-7a272dcf7f8d" + } + ] + }, + { + "label": { + "@none": [ + "199v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4a9a8a9-e976-4017-a100-8ba99858b520.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da489da6-866b-4a4e-aa6c-63c81faba53b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4a9a8a9-e976-4017-a100-8ba99858b520.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b4a9a8a9-e976-4017-a100-8ba99858b520", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b4a9a8a9-e976-4017-a100-8ba99858b520/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f5cbb8a-0819-44a2-945f-9d4acd57530a" + } + ] + }, + { + "label": { + "@none": [ + "200r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65073074-f7cf-4e8b-aef0-a9c2558d9cb6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/65efc197-3435-4855-b0e4-ef94f30ee725", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65073074-f7cf-4e8b-aef0-a9c2558d9cb6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/65073074-f7cf-4e8b-aef0-a9c2558d9cb6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/65073074-f7cf-4e8b-aef0-a9c2558d9cb6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/642f2b60-dc73-4353-aa65-af35a884100f" + } + ] + }, + { + "label": { + "@none": [ + "200v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58496061-8a46-4319-926a-d52e0d35eadc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9e0566d0-226e-4417-bc6d-4186942a56aa", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58496061-8a46-4319-926a-d52e0d35eadc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/58496061-8a46-4319-926a-d52e0d35eadc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/58496061-8a46-4319-926a-d52e0d35eadc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81d399c1-0f36-4777-88d1-23c14d31e5fa" + } + ] + }, + { + "label": { + "@none": [ + "201r" + ] + }, + "height": 7496, + "width": 5376, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/492f6aac-46ff-48dc-af9b-2418a9907d4b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/11fdf842-7d10-4003-843b-f84890f93f0b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/492f6aac-46ff-48dc-af9b-2418a9907d4b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/492f6aac-46ff-48dc-af9b-2418a9907d4b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/492f6aac-46ff-48dc-af9b-2418a9907d4b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ce089b8-8c6c-4e62-af66-ca9ea5993fe1" + } + ] + }, + { + "label": { + "@none": [ + "201v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91aaa075-1c4e-4e0e-a255-d78cae041f65.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e76a804a-a0e5-479a-b236-48b286573826", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91aaa075-1c4e-4e0e-a255-d78cae041f65.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91aaa075-1c4e-4e0e-a255-d78cae041f65", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91aaa075-1c4e-4e0e-a255-d78cae041f65/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ccfd7d5a-550c-4d6d-86b7-c318a6b8c3ed" + } + ] + }, + { + "label": { + "@none": [ + "202r" + ] + }, + "height": 7496, + "width": 5376, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a801f766-44ec-45b7-8c6a-070ac61a97cc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/328789f0-c3a7-4109-9148-34a61353946c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a801f766-44ec-45b7-8c6a-070ac61a97cc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a801f766-44ec-45b7-8c6a-070ac61a97cc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a801f766-44ec-45b7-8c6a-070ac61a97cc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ce582d3-abca-4d0a-ab42-036297eaa507" + } + ] + }, + { + "label": { + "@none": [ + "202v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4b4e1e3-db94-42d0-b767-0b26fd2806b0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/284a7505-9c94-43a7-9527-40b9b1c89416", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4b4e1e3-db94-42d0-b767-0b26fd2806b0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e4b4e1e3-db94-42d0-b767-0b26fd2806b0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e4b4e1e3-db94-42d0-b767-0b26fd2806b0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f79a731c-e902-4609-9e96-32b712529197" + } + ] + }, + { + "label": { + "@none": [ + "203r" + ] + }, + "height": 7496, + "width": 5376, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950da988-0d97-4852-9cd3-bf7053a61283.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0c7c70b2-9600-43c4-94c8-ae0d0e3d69a4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950da988-0d97-4852-9cd3-bf7053a61283.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/950da988-0d97-4852-9cd3-bf7053a61283", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/950da988-0d97-4852-9cd3-bf7053a61283/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ada4b8c6-16c4-4470-8bd7-6cf4e55bbf4a" + } + ] + }, + { + "label": { + "@none": [ + "203v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e881d1c-c508-4aa8-b554-14c6f22cbff3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a899e628-2f09-43ce-a45b-a340bcdb5359", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e881d1c-c508-4aa8-b554-14c6f22cbff3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e881d1c-c508-4aa8-b554-14c6f22cbff3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e881d1c-c508-4aa8-b554-14c6f22cbff3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85344953-0328-4b4b-9e13-49540c8f40bb" + } + ] + }, + { + "label": { + "@none": [ + "204r" + ] + }, + "height": 7496, + "width": 5376, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aad2980d-2871-43df-aaeb-88bb4cfb099a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca85837d-ca3f-487a-844b-97a2dadd194f" + } + ] + }, + { + "label": { + "@none": [ + "204v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83335519-6006-4050-b21c-9c37fb699535.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6aa33192-55cc-4c63-ab48-58e978383386", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83335519-6006-4050-b21c-9c37fb699535.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/83335519-6006-4050-b21c-9c37fb699535", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/83335519-6006-4050-b21c-9c37fb699535/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83e92f1c-5a71-4580-8e52-2147cb913f33" + } + ] + }, + { + "label": { + "@none": [ + "205r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fddb4ff-c322-450f-92bd-80a5af2a87aa.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e89022be-71da-4cb3-93fd-b994bd9703ed", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fddb4ff-c322-450f-92bd-80a5af2a87aa.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fddb4ff-c322-450f-92bd-80a5af2a87aa", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fddb4ff-c322-450f-92bd-80a5af2a87aa/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/722bb776-46af-4f61-8b77-aa5a52ab4c2a" + } + ] + }, + { + "label": { + "@none": [ + "205v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ba9a6a3-9e97-49ec-867f-26df66c2dd61.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/38c3b68b-2a81-4fdd-9928-3031c1ffe1b5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ba9a6a3-9e97-49ec-867f-26df66c2dd61.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ba9a6a3-9e97-49ec-867f-26df66c2dd61", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ba9a6a3-9e97-49ec-867f-26df66c2dd61/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/28359153-eea0-4f78-872e-6b9206765270" + } + ] + }, + { + "label": { + "@none": [ + "206r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/633d7599-0af4-4753-86cc-c8a0065772dd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/735b575d-b642-4509-a4c2-0d31d8671c58", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/633d7599-0af4-4753-86cc-c8a0065772dd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/633d7599-0af4-4753-86cc-c8a0065772dd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/633d7599-0af4-4753-86cc-c8a0065772dd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e473326e-c98a-44f4-8807-a0f781eaa48f" + } + ] + }, + { + "label": { + "@none": [ + "206v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be21b29f-3eb8-4a40-b2bb-2e167d574802.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1d720b0e-059b-43c0-8706-217b3df64c49", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be21b29f-3eb8-4a40-b2bb-2e167d574802.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/be21b29f-3eb8-4a40-b2bb-2e167d574802", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/be21b29f-3eb8-4a40-b2bb-2e167d574802/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6280b34d-8f0d-4c4b-a491-7d3fd01eab38" + } + ] + }, + { + "label": { + "@none": [ + "207r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0822b70a-024b-4bfb-90c7-e3a67bea345a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f4fbb51c-c67c-4d77-bd71-bfe2de12e465", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0822b70a-024b-4bfb-90c7-e3a67bea345a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0822b70a-024b-4bfb-90c7-e3a67bea345a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0822b70a-024b-4bfb-90c7-e3a67bea345a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11582578-1792-40c6-bd8d-9d827fd8c325" + } + ] + }, + { + "label": { + "@none": [ + "207v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0da74f-42e8-4d68-8a98-26fe0ae064b2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/930efbae-64fb-4621-ae87-7d0ff909fd8c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0da74f-42e8-4d68-8a98-26fe0ae064b2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b0da74f-42e8-4d68-8a98-26fe0ae064b2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b0da74f-42e8-4d68-8a98-26fe0ae064b2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e44197a1-9f1e-4e36-9b9a-17157d58b4d8" + } + ] + }, + { + "label": { + "@none": [ + "208r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/856ca501-43af-426b-b676-45c050b88479.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3219fd1c-04f9-404d-b4d5-39dc65091002", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/856ca501-43af-426b-b676-45c050b88479.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/856ca501-43af-426b-b676-45c050b88479", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/856ca501-43af-426b-b676-45c050b88479/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/488a5ab7-8ee4-4ee7-8020-9adcc698ed8e" + } + ] + }, + { + "label": { + "@none": [ + "208v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2d8a2465-8bc7-4de9-9a1d-b5ca3783eda3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68d38ec2-bfd6-4b50-ae90-f03b56b1a108" + } + ] + }, + { + "label": { + "@none": [ + "209r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7321541a-9fcb-4504-acb4-5cbe791a223c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6125803d-4ba4-4f27-983e-558cbd03d9c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7321541a-9fcb-4504-acb4-5cbe791a223c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7321541a-9fcb-4504-acb4-5cbe791a223c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7321541a-9fcb-4504-acb4-5cbe791a223c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73181fbe-5dfc-4f29-9212-43aad55c981b" + } + ] + }, + { + "label": { + "@none": [ + "209v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b62f3ce9-6dbc-4474-87b0-205106f07116", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bee4b8e-e8f8-4063-8edc-5dad52fb338f" + } + ] + }, + { + "label": { + "@none": [ + "210r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5811e126-2d82-4a14-ba43-42e9d2436ab0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8855c6e9-611a-415f-bba2-3b27a20ccf2f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5811e126-2d82-4a14-ba43-42e9d2436ab0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5811e126-2d82-4a14-ba43-42e9d2436ab0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5811e126-2d82-4a14-ba43-42e9d2436ab0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ef9db97-c678-4e3b-be69-b6992b0eb08b" + } + ] + }, + { + "label": { + "@none": [ + "210v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/80bacb57-0b6b-4099-afae-84c87babe6a6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/be48471b-52ec-417a-bc34-72dc76752aa5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/80bacb57-0b6b-4099-afae-84c87babe6a6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/80bacb57-0b6b-4099-afae-84c87babe6a6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/80bacb57-0b6b-4099-afae-84c87babe6a6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1684bb8f-14c2-48e0-8d1f-3840781ec852" + } + ] + }, + { + "label": { + "@none": [ + "211r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aabd80b7-f357-4167-8912-82a574750734.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cd50c4eb-bdd9-44ad-ad16-e3c044ea0d2a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aabd80b7-f357-4167-8912-82a574750734.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aabd80b7-f357-4167-8912-82a574750734", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aabd80b7-f357-4167-8912-82a574750734/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb8920b6-01a7-4678-a73a-1485e2904127" + } + ] + }, + { + "label": { + "@none": [ + "211v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/31049add-a7b7-4c68-ab14-f798bd2d2a47", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e1bc084-12b7-4b87-a1ab-de51334f1d65" + } + ] + }, + { + "label": { + "@none": [ + "212r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/614febd4-71d3-49ab-9fd7-4306ecfe38f0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/146bb37a-044d-4223-9aca-5d04ab71ab02", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/614febd4-71d3-49ab-9fd7-4306ecfe38f0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/614febd4-71d3-49ab-9fd7-4306ecfe38f0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/614febd4-71d3-49ab-9fd7-4306ecfe38f0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e47269bb-e948-476e-a02a-97f2f51658b7" + } + ] + }, + { + "label": { + "@none": [ + "212v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d7c3470-ee46-4c48-abbe-93c5e0f085a3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/abbe4175-ce25-4dc7-8e8f-b9a44c1fda95", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d7c3470-ee46-4c48-abbe-93c5e0f085a3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8d7c3470-ee46-4c48-abbe-93c5e0f085a3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8d7c3470-ee46-4c48-abbe-93c5e0f085a3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dc502c92-b342-47ba-bb69-e58f47e956f6" + } + ] + }, + { + "label": { + "@none": [ + "213r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/029fe17b-9026-4c23-b85f-b7a8465396f7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf1f88f1-8c47-4f91-a7fd-8149f38ca8ba", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/029fe17b-9026-4c23-b85f-b7a8465396f7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/029fe17b-9026-4c23-b85f-b7a8465396f7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/029fe17b-9026-4c23-b85f-b7a8465396f7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c2b82d92-b854-4483-998e-7e45a7111181" + } + ] + }, + { + "label": { + "@none": [ + "213v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6a23cd9b-0f30-4146-9207-adceac5312e0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/111c30a1-14ca-475d-bb04-0012a4cebcdf", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6a23cd9b-0f30-4146-9207-adceac5312e0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6a23cd9b-0f30-4146-9207-adceac5312e0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6a23cd9b-0f30-4146-9207-adceac5312e0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1be64e2-8420-4604-8bff-c38d1d9f7c40" + } + ] + }, + { + "label": { + "@none": [ + "214r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12f8c777-0542-4152-8067-b07f801fe87d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf74db71-6635-48ca-a0be-28cc6fa96596", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12f8c777-0542-4152-8067-b07f801fe87d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/12f8c777-0542-4152-8067-b07f801fe87d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/12f8c777-0542-4152-8067-b07f801fe87d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/77e6c414-0f64-4a58-8cb5-8ee7bdb299ed" + } + ] + }, + { + "label": { + "@none": [ + "214v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/994d2cee-0892-4921-a20b-704ee84e8aa3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/283ef905-e3e1-4ff1-a221-7ebee651fc24", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/994d2cee-0892-4921-a20b-704ee84e8aa3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/994d2cee-0892-4921-a20b-704ee84e8aa3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/994d2cee-0892-4921-a20b-704ee84e8aa3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/350da18a-0b1c-4592-a0ff-8fa019470132" + } + ] + }, + { + "label": { + "@none": [ + "215r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8e1c2a51-a90b-4322-a4f5-38f86f91c880", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09fe41ba-11aa-4d59-b34f-8abb88dd1760" + } + ] + }, + { + "label": { + "@none": [ + "215v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38510524-62e2-4de0-95da-607aa2d4522e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0554a452-d525-41e8-9a0d-969afbd1319f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38510524-62e2-4de0-95da-607aa2d4522e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/38510524-62e2-4de0-95da-607aa2d4522e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/38510524-62e2-4de0-95da-607aa2d4522e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10e000e8-33e6-4241-b740-76ddc254be79" + } + ] + }, + { + "label": { + "@none": [ + "216r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b3c9f33-1a79-46d1-9be4-68949bc94ae6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c202d837-b040-4c6c-b8a8-f00c78810269", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b3c9f33-1a79-46d1-9be4-68949bc94ae6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b3c9f33-1a79-46d1-9be4-68949bc94ae6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b3c9f33-1a79-46d1-9be4-68949bc94ae6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d3e6799-19fc-45bf-9aee-47ae241fb65b" + } + ] + }, + { + "label": { + "@none": [ + "216v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1dcc22d4-09b4-415f-a7bc-7b4ddee52b9d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1c7a849-8330-4ada-8681-6dc59f915594" + } + ] + }, + { + "label": { + "@none": [ + "217r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/541d9f74-856a-4f73-8f3b-9dbb2cfe0083.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e35ee11f-37fa-4ddd-a0c9-2672c6ee5d37", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/541d9f74-856a-4f73-8f3b-9dbb2cfe0083.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/541d9f74-856a-4f73-8f3b-9dbb2cfe0083", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/541d9f74-856a-4f73-8f3b-9dbb2cfe0083/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c7a0ab7-352c-424f-8781-2a9949d8ab7c" + } + ] + }, + { + "label": { + "@none": [ + "217v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a8871b3-10cd-42cf-a7ee-14ce216c3234.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2eccf9bd-2010-4764-becb-58595acb35d2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a8871b3-10cd-42cf-a7ee-14ce216c3234.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a8871b3-10cd-42cf-a7ee-14ce216c3234", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a8871b3-10cd-42cf-a7ee-14ce216c3234/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e69700b-c048-4286-9012-0d6d4c585d78" + } + ] + }, + { + "label": { + "@none": [ + "218r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/947b462e-8bfe-43f7-95fa-cfa00ba44250.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/08fd1f3b-bef9-4cde-b95c-cc95e224db72", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/947b462e-8bfe-43f7-95fa-cfa00ba44250.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/947b462e-8bfe-43f7-95fa-cfa00ba44250", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/947b462e-8bfe-43f7-95fa-cfa00ba44250/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c18fa179-2f1a-4c1e-aff3-7aebed400b27" + } + ] + }, + { + "label": { + "@none": [ + "218v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/afae2f7d-4d83-4961-b979-f8521cd884cb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3502dc27-e81f-4386-bf0f-f8e39c1854a1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/afae2f7d-4d83-4961-b979-f8521cd884cb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/afae2f7d-4d83-4961-b979-f8521cd884cb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/afae2f7d-4d83-4961-b979-f8521cd884cb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83405540-246b-4d1e-9728-4d3a80044f60" + } + ] + }, + { + "label": { + "@none": [ + "219r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e6f3da28-1621-4529-a67d-22998a8e2675", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/02f6df65-222b-4fe7-8c34-ce73f137caf6" + } + ] + }, + { + "label": { + "@none": [ + "219v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fdf5e83-ab4a-4e13-b921-8a664ee994bd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4895dc72-5258-4b48-979a-cfc4e5f12a15", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fdf5e83-ab4a-4e13-b921-8a664ee994bd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6fdf5e83-ab4a-4e13-b921-8a664ee994bd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6fdf5e83-ab4a-4e13-b921-8a664ee994bd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4536e644-58f8-444d-a973-cd6e6a66357f" + } + ] + }, + { + "label": { + "@none": [ + "220r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29667798-095b-4b04-9022-1b23f35d9b3d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d4e3b6b9-d8c7-4a73-a702-ed47b89f7ed5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29667798-095b-4b04-9022-1b23f35d9b3d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/29667798-095b-4b04-9022-1b23f35d9b3d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/29667798-095b-4b04-9022-1b23f35d9b3d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f519f41b-0e00-4e43-8bfc-38d5e9ac4c80" + } + ] + }, + { + "label": { + "@none": [ + "220v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9f012d79-d177-48bf-86cf-87bc8e376c17.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/228ed849-7660-42bd-8c65-fe84120798c4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9f012d79-d177-48bf-86cf-87bc8e376c17.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9f012d79-d177-48bf-86cf-87bc8e376c17", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9f012d79-d177-48bf-86cf-87bc8e376c17/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03e872db-e277-4835-87aa-4196b7691b9f" + } + ] + }, + { + "label": { + "@none": [ + "221r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a11ee5a-b965-4591-9cec-c67ce94f65c1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f3e04a3f-8f9c-468b-92e2-c86dc67fd590", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a11ee5a-b965-4591-9cec-c67ce94f65c1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1a11ee5a-b965-4591-9cec-c67ce94f65c1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1a11ee5a-b965-4591-9cec-c67ce94f65c1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3e3517f-e0ee-42c3-8e9c-063f79dbb93b" + } + ] + }, + { + "label": { + "@none": [ + "221v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08be2da0-b456-4f58-83dd-d26636312512.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/13c66547-d79a-48ef-8698-72028e5397de", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08be2da0-b456-4f58-83dd-d26636312512.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/08be2da0-b456-4f58-83dd-d26636312512", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/08be2da0-b456-4f58-83dd-d26636312512/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9552c1d-80dc-42f2-8ed5-7c52ec264ea7" + } + ] + }, + { + "label": { + "@none": [ + "222r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9f32fc9-3f62-4352-acb3-f41918f78811.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b3e74f9b-05da-4abd-867a-31b2cf650f0e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9f32fc9-3f62-4352-acb3-f41918f78811.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9f32fc9-3f62-4352-acb3-f41918f78811", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9f32fc9-3f62-4352-acb3-f41918f78811/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cd427eef-6dd0-43ea-8127-56b07ad0d840" + } + ] + }, + { + "label": { + "@none": [ + "222v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46637303-db5c-4f5c-a62e-776f7a96cf4b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b5daa8a-6274-488c-a69f-271f4b3f85da", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46637303-db5c-4f5c-a62e-776f7a96cf4b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/46637303-db5c-4f5c-a62e-776f7a96cf4b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/46637303-db5c-4f5c-a62e-776f7a96cf4b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51de3ba8-8134-4cd4-90ca-871488c30124" + } + ] + }, + { + "label": { + "@none": [ + "223r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d7161165-f474-4ae2-b2eb-1f76ce1c3481.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/79672906-6a26-41a6-b37b-bdc441c52790", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d7161165-f474-4ae2-b2eb-1f76ce1c3481.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d7161165-f474-4ae2-b2eb-1f76ce1c3481", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d7161165-f474-4ae2-b2eb-1f76ce1c3481/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07ec40c4-04cd-4f35-ae7c-58bcf688069e" + } + ] + }, + { + "label": { + "@none": [ + "223v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/181530f3-678f-4e4e-9344-5c41e9a17b3b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/76608b46-9a6e-4046-bd01-5d607560f863", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/181530f3-678f-4e4e-9344-5c41e9a17b3b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/181530f3-678f-4e4e-9344-5c41e9a17b3b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/181530f3-678f-4e4e-9344-5c41e9a17b3b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9779e3ea-41ae-48a6-b3f1-4b962bbcfea8" + } + ] + }, + { + "label": { + "@none": [ + "224r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/159961f2-68f3-4072-8553-521fe57091f3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/12cd07a4-9277-4393-8e0f-9503bf23cd53", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/159961f2-68f3-4072-8553-521fe57091f3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/159961f2-68f3-4072-8553-521fe57091f3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/159961f2-68f3-4072-8553-521fe57091f3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a22b385f-bc34-4f21-8d3f-c5ba3e457fd6" + } + ] + }, + { + "label": { + "@none": [ + "224v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/57fb9a56-5702-492f-9a6c-9b84b1bc23a1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1c7f0b23-4504-49a7-a62b-d7ccde1b0d69", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/57fb9a56-5702-492f-9a6c-9b84b1bc23a1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/57fb9a56-5702-492f-9a6c-9b84b1bc23a1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/57fb9a56-5702-492f-9a6c-9b84b1bc23a1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/af007a69-ec4f-4528-814c-26d2a9a99734" + } + ] + }, + { + "label": { + "@none": [ + "225r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d5611036-f13c-4dd2-859c-702ec16721b2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c2ddaeb9-6d76-458f-a592-822bc1a4ae40" + } + ] + }, + { + "label": { + "@none": [ + "225v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c22b962-3f90-4c3b-9b84-4f53444cad18.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd256f4a-e98c-41af-9598-0ea1d2c43f9c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c22b962-3f90-4c3b-9b84-4f53444cad18.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c22b962-3f90-4c3b-9b84-4f53444cad18", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c22b962-3f90-4c3b-9b84-4f53444cad18/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00199edd-d78e-452f-b0df-85821a7305b3" + } + ] + }, + { + "label": { + "@none": [ + "226r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/252a097b-2e29-432a-91db-b984346a2d5d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e97683e8-85aa-4b30-8cd0-49280fa63040", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/252a097b-2e29-432a-91db-b984346a2d5d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/252a097b-2e29-432a-91db-b984346a2d5d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/252a097b-2e29-432a-91db-b984346a2d5d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1075d94e-136c-4ecb-a7cf-399ad499abac" + } + ] + }, + { + "label": { + "@none": [ + "226v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d08de2e9-67c2-426c-ab67-2cfb19315f6a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/73c1073b-4b54-4581-85d4-263e67e3237f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d08de2e9-67c2-426c-ab67-2cfb19315f6a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d08de2e9-67c2-426c-ab67-2cfb19315f6a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d08de2e9-67c2-426c-ab67-2cfb19315f6a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e56ac02-76af-46d5-b396-2d8f129906d6" + } + ] + }, + { + "label": { + "@none": [ + "227r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/03ab8381-8ead-4127-9703-025258a6a5c5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/de9f9254-d948-407f-8478-7cebfa1c4077" + } + ] + }, + { + "label": { + "@none": [ + "227v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9b8b251-07ee-4514-95ad-222cc07f1395.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/db8dc845-d586-40e8-b4ff-3aecae6e690f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9b8b251-07ee-4514-95ad-222cc07f1395.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d9b8b251-07ee-4514-95ad-222cc07f1395", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d9b8b251-07ee-4514-95ad-222cc07f1395/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19a36448-4d58-4b77-8ff5-0916cf2c7139" + } + ] + }, + { + "label": { + "@none": [ + "228r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bee06a76-44c6-41a6-b9ac-575aac2f3f42", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5f8d4d86-c696-4974-a1d5-9257ec28e3ed" + } + ] + }, + { + "label": { + "@none": [ + "228v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ae40103-7423-4720-87f6-f004a3c1003c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0bfe3b51-c6d4-4590-b2bd-b4cf8a9fe15b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ae40103-7423-4720-87f6-f004a3c1003c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ae40103-7423-4720-87f6-f004a3c1003c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ae40103-7423-4720-87f6-f004a3c1003c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2cdccb30-77e2-483c-bf4e-0db707c710a2" + } + ] + }, + { + "label": { + "@none": [ + "229r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebe237d0-726d-4f40-af59-a22b0aa33162.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0642d6d6-3595-48cc-9f04-3c287060ebe7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebe237d0-726d-4f40-af59-a22b0aa33162.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ebe237d0-726d-4f40-af59-a22b0aa33162", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ebe237d0-726d-4f40-af59-a22b0aa33162/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12526d86-2169-4560-8cd0-12e79d70f46d" + } + ] + }, + { + "label": { + "@none": [ + "229v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdc7366-7dc6-48c8-a9f5-9f443fc82344.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/24a2564b-3cf6-4970-9bd7-d88b15ec2c7c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdc7366-7dc6-48c8-a9f5-9f443fc82344.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/acdc7366-7dc6-48c8-a9f5-9f443fc82344", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/acdc7366-7dc6-48c8-a9f5-9f443fc82344/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35a9ea22-0311-43eb-a625-b7991be352e1" + } + ] + }, + { + "label": { + "@none": [ + "230r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1290d5c-d329-4ac6-9207-e727828aad02.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9add05d-bc5b-4389-8143-94a106048ee3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1290d5c-d329-4ac6-9207-e727828aad02.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1290d5c-d329-4ac6-9207-e727828aad02", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1290d5c-d329-4ac6-9207-e727828aad02/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/26927fb2-6cab-4137-8277-877f79ac7e2d" + } + ] + }, + { + "label": { + "@none": [ + "230v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88e9c3c8-dc28-41b2-aacc-84501a0ba950.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/309a9f82-5ac7-4064-bcdd-9b8edc031fd8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88e9c3c8-dc28-41b2-aacc-84501a0ba950.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/88e9c3c8-dc28-41b2-aacc-84501a0ba950", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/88e9c3c8-dc28-41b2-aacc-84501a0ba950/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7908e93e-f047-454a-8186-03ea7be6b453" + } + ] + }, + { + "label": { + "@none": [ + "231r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1e05c89-3146-4707-a113-2177cd2d7721.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0425f93f-240e-42ce-9e72-1f820b5a5b6f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1e05c89-3146-4707-a113-2177cd2d7721.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a1e05c89-3146-4707-a113-2177cd2d7721", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a1e05c89-3146-4707-a113-2177cd2d7721/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e786600c-15e2-4760-bfc6-668e3dc2cc4e" + } + ] + }, + { + "label": { + "@none": [ + "231v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30765071-bfad-403f-82e9-6054e29cd0f6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b3a6bebf-a739-4e64-b4a4-ac69721f7438", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30765071-bfad-403f-82e9-6054e29cd0f6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/30765071-bfad-403f-82e9-6054e29cd0f6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/30765071-bfad-403f-82e9-6054e29cd0f6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1e95bbc-1b79-4898-aea4-d7e2f6d3ab51" + } + ] + }, + { + "label": { + "@none": [ + "232r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4292fcef-5b16-4db7-965e-ec1000981e36.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bbba8af7-5ed1-419b-a52d-2e5d63ed6c4c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4292fcef-5b16-4db7-965e-ec1000981e36.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4292fcef-5b16-4db7-965e-ec1000981e36", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4292fcef-5b16-4db7-965e-ec1000981e36/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50fc7eec-8fc6-432a-b881-aac4d7a5d68e" + } + ] + }, + { + "label": { + "@none": [ + "232v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fb308b92-4133-4537-a7ae-6a29932e7e7e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5999c548-3f90-40dd-b9bb-67466d932e31", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fb308b92-4133-4537-a7ae-6a29932e7e7e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fb308b92-4133-4537-a7ae-6a29932e7e7e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fb308b92-4133-4537-a7ae-6a29932e7e7e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2be79486-7684-4eb0-bfb7-f1d29d4767b3" + } + ] + }, + { + "label": { + "@none": [ + "233r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fed2cb4-6388-488a-bae4-2cc79d50b999.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e2789dba-5045-42d9-be4c-07cff34b277c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fed2cb4-6388-488a-bae4-2cc79d50b999.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7fed2cb4-6388-488a-bae4-2cc79d50b999", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7fed2cb4-6388-488a-bae4-2cc79d50b999/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fcec37ec-de72-4aee-896b-b9c56e51c75a" + } + ] + }, + { + "label": { + "@none": [ + "233v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/116da7b6-2529-4213-a6bc-957324894cc7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/99633cfa-6ff7-4809-8868-df189a32bd27", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/116da7b6-2529-4213-a6bc-957324894cc7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/116da7b6-2529-4213-a6bc-957324894cc7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/116da7b6-2529-4213-a6bc-957324894cc7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bafb0955-9742-434f-8c98-272b7d6ae1a5" + } + ] + }, + { + "label": { + "@none": [ + "234r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e566db5-2055-4b47-bed1-8cc702dce658.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6529dd6e-2f76-4340-a099-0183a022f958", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e566db5-2055-4b47-bed1-8cc702dce658.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e566db5-2055-4b47-bed1-8cc702dce658", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e566db5-2055-4b47-bed1-8cc702dce658/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1bade997-a076-4cba-baee-62559207fecf" + } + ] + }, + { + "label": { + "@none": [ + "234v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c3d4877b-f955-4245-8638-1ffb57e2b538.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/19c3ceec-97be-44ab-b691-269698efdd8c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c3d4877b-f955-4245-8638-1ffb57e2b538.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c3d4877b-f955-4245-8638-1ffb57e2b538", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c3d4877b-f955-4245-8638-1ffb57e2b538/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92c76c0b-7692-4cb5-9741-7d351e955053" + } + ] + }, + { + "label": { + "@none": [ + "235r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7af47469-7596-4686-9690-eefedd61b71b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88ed6255-1f91-4da5-93df-e38ee653654e" + } + ] + }, + { + "label": { + "@none": [ + "235v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbecf64d-e37b-4601-9797-d631a04335b6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a7dab62d-1b0b-4428-a8ce-2e58c19754c6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbecf64d-e37b-4601-9797-d631a04335b6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dbecf64d-e37b-4601-9797-d631a04335b6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dbecf64d-e37b-4601-9797-d631a04335b6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b7282e2-937d-45dd-86c8-59120d893ae8" + } + ] + }, + { + "label": { + "@none": [ + "236r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77073d61-71a4-47c6-b322-8a29db67cb44.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a4e83a11-d310-4366-ab0e-dd6a531a99ad", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77073d61-71a4-47c6-b322-8a29db67cb44.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77073d61-71a4-47c6-b322-8a29db67cb44", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77073d61-71a4-47c6-b322-8a29db67cb44/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/260b1d79-b58b-4a95-83bc-9b42757e57a5" + } + ] + }, + { + "label": { + "@none": [ + "236v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/503f6921-6b38-46f2-bc5a-30a2001da52a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/778722eb-1256-4d59-872b-b78600cef57c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/503f6921-6b38-46f2-bc5a-30a2001da52a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/503f6921-6b38-46f2-bc5a-30a2001da52a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/503f6921-6b38-46f2-bc5a-30a2001da52a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1bf76ce5-0d9f-44c0-8cb4-34e92a3afe65" + } + ] + }, + { + "label": { + "@none": [ + "237r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bc1a0fce-2804-4700-b367-e2ae2a6bafac.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aae1ba90-4390-4444-9ab5-c14a46f01e58", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bc1a0fce-2804-4700-b367-e2ae2a6bafac.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bc1a0fce-2804-4700-b367-e2ae2a6bafac", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bc1a0fce-2804-4700-b367-e2ae2a6bafac/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c128c1d-d966-472a-b296-5d55a16649a1" + } + ] + }, + { + "label": { + "@none": [ + "237v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9a7ae841-f0b0-4ed6-b618-a564bd043086.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad1b74e4-0020-4b5e-9e4f-87f983a4808d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9a7ae841-f0b0-4ed6-b618-a564bd043086.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9a7ae841-f0b0-4ed6-b618-a564bd043086", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9a7ae841-f0b0-4ed6-b618-a564bd043086/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85b24d0b-5022-452a-bec4-8028936877aa" + } + ] + }, + { + "label": { + "@none": [ + "238r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/97899448-2c9d-4b93-b3e7-d90d09d22539", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3affc9af-5251-4805-b77f-20dbd651ed2c" + } + ] + }, + { + "label": { + "@none": [ + "238v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c03701e6-722e-4f4a-b779-8860fb0185bc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d45afbd8-9b55-467b-b445-ef5d77716ea7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c03701e6-722e-4f4a-b779-8860fb0185bc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c03701e6-722e-4f4a-b779-8860fb0185bc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c03701e6-722e-4f4a-b779-8860fb0185bc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53cbc525-d8e6-4d06-826f-f7e0ac642558" + } + ] + }, + { + "label": { + "@none": [ + "239r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bda32605-ed71-45b9-b3df-8816dd6d2665.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/586964bb-bf4d-4317-bbe0-4800bbc6b4c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bda32605-ed71-45b9-b3df-8816dd6d2665.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bda32605-ed71-45b9-b3df-8816dd6d2665", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bda32605-ed71-45b9-b3df-8816dd6d2665/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63c90f89-eaa1-4d2c-bd70-e99c096c8a68" + } + ] + }, + { + "label": { + "@none": [ + "239v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a16f7b6d-3d86-452e-bb33-9e660259b39b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/60373125-36ef-47b1-9d48-2b9a05361501", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a16f7b6d-3d86-452e-bb33-9e660259b39b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a16f7b6d-3d86-452e-bb33-9e660259b39b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a16f7b6d-3d86-452e-bb33-9e660259b39b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e6721c67-3620-4b18-8623-55ec3a74f950" + } + ] + }, + { + "label": { + "@none": [ + "240r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c8773604-9b45-4b67-adbd-827b68292616.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3b8d9a08-7733-4694-839d-62e741afe30c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c8773604-9b45-4b67-adbd-827b68292616.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c8773604-9b45-4b67-adbd-827b68292616", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c8773604-9b45-4b67-adbd-827b68292616/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ffa7dd29-f60d-4af3-b97a-2c1653968139" + } + ] + }, + { + "label": { + "@none": [ + "240v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f0d2fc41-40a9-4b00-b95c-54f044e95e49.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ef463bdf-3550-485e-a626-398a743375c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f0d2fc41-40a9-4b00-b95c-54f044e95e49.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f0d2fc41-40a9-4b00-b95c-54f044e95e49", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f0d2fc41-40a9-4b00-b95c-54f044e95e49/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8dcbb626-3490-44e5-8a1f-60a58f451ef4" + } + ] + }, + { + "label": { + "@none": [ + "241r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cc69ec01-fe98-4775-ac0c-e7472208fa62.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8e06fa2e-15e1-4184-acfa-336993c85e5a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cc69ec01-fe98-4775-ac0c-e7472208fa62.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cc69ec01-fe98-4775-ac0c-e7472208fa62", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cc69ec01-fe98-4775-ac0c-e7472208fa62/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2296c85-dda3-4d85-99ef-560d994c45d3" + } + ] + }, + { + "label": { + "@none": [ + "241v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bcb2f8-1b00-4f4c-967a-fd940bac809f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7b203313-0076-427e-be71-82d0de252039", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bcb2f8-1b00-4f4c-967a-fd940bac809f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5bcb2f8-1b00-4f4c-967a-fd940bac809f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5bcb2f8-1b00-4f4c-967a-fd940bac809f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a10c265-21e5-46c6-8f71-a90ac8ef9646" + } + ] + }, + { + "label": { + "@none": [ + "242r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d10b5245-bb78-4eb6-9810-315608be3953.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/78e7bfa0-fae3-4751-a58e-79c4a0d68b6b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d10b5245-bb78-4eb6-9810-315608be3953.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d10b5245-bb78-4eb6-9810-315608be3953", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d10b5245-bb78-4eb6-9810-315608be3953/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f399d818-4800-4e54-bafd-5b2c3bada578" + } + ] + }, + { + "label": { + "@none": [ + "242v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/70fd247a-bf34-40bc-bfd1-58e5fdf6afbc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d4bdf190-91e6-48ca-917e-1f0038dc1471" + } + ] + }, + { + "label": { + "@none": [ + "243r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/39d39514-1e31-4774-9a5a-3919fa03eede", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3930268b-b2b5-4b24-b619-e58842f8a849" + } + ] + }, + { + "label": { + "@none": [ + "243v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f28c09fa-0ae5-4712-86f9-0daf58b63014.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/07372991-e472-40ea-9819-f4a1b660e959", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f28c09fa-0ae5-4712-86f9-0daf58b63014.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f28c09fa-0ae5-4712-86f9-0daf58b63014", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f28c09fa-0ae5-4712-86f9-0daf58b63014/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42feb079-4a7d-439b-8f19-4a0eba529ac0" + } + ] + }, + { + "label": { + "@none": [ + "244r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c181e317-a69b-471e-ba21-35bfa4e2d428.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/73716210-7ae1-4761-8ea5-e49deb277d9f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c181e317-a69b-471e-ba21-35bfa4e2d428.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c181e317-a69b-471e-ba21-35bfa4e2d428", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c181e317-a69b-471e-ba21-35bfa4e2d428/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3957b8b-3318-4aee-9299-732f852549af" + } + ] + }, + { + "label": { + "@none": [ + "244v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a36e35a-eeaf-4838-9fcd-7d52971380b2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1c7879d-6f36-47f0-b629-e780935fd111", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a36e35a-eeaf-4838-9fcd-7d52971380b2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2a36e35a-eeaf-4838-9fcd-7d52971380b2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2a36e35a-eeaf-4838-9fcd-7d52971380b2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c63da07-3af4-430e-a219-d14cde992423" + } + ] + }, + { + "label": { + "@none": [ + "245r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f6f9900-d545-45ec-8de4-edaefe02d4a5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1c68eac-0a3c-426c-9ad6-e311a0094cc3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f6f9900-d545-45ec-8de4-edaefe02d4a5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f6f9900-d545-45ec-8de4-edaefe02d4a5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f6f9900-d545-45ec-8de4-edaefe02d4a5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0c829f25-029c-4c8f-b43e-99f679669cb0" + } + ] + }, + { + "label": { + "@none": [ + "245v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b9d8c875-6781-47fe-8b19-0970a5952042.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b0961b62-0be3-4b3e-b38e-7f473336350d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b9d8c875-6781-47fe-8b19-0970a5952042.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b9d8c875-6781-47fe-8b19-0970a5952042", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b9d8c875-6781-47fe-8b19-0970a5952042/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b572ea17-3c83-4688-92a7-027c88263983" + } + ] + }, + { + "label": { + "@none": [ + "246r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869c2862-ef20-47c4-bdce-e405112d5252.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/56d1e964-febe-40a5-a1a1-596b10a67248", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869c2862-ef20-47c4-bdce-e405112d5252.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/869c2862-ef20-47c4-bdce-e405112d5252", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/869c2862-ef20-47c4-bdce-e405112d5252/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d86643d7-374b-4ce9-bc8a-cdbf4b97249d" + } + ] + }, + { + "label": { + "@none": [ + "246v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e629071-081c-4471-9b72-29528a28f540.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b8786a3-9a6a-4ef4-90fe-9a1fa942e01d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e629071-081c-4471-9b72-29528a28f540.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e629071-081c-4471-9b72-29528a28f540", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e629071-081c-4471-9b72-29528a28f540/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3f39faa-fbf3-4986-8bfd-de179738aca6" + } + ] + }, + { + "label": { + "@none": [ + "247r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/097fa97b-f7a5-47de-81ff-0a01d6a9528d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f228a1c-c049-4db4-9473-c99cfb9b078e" + } + ] + }, + { + "label": { + "@none": [ + "247v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3495c593-7ef2-4dba-b3cd-77387a9c4c90.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1323234b-81c8-4bb0-9e14-3c82d1ee31bd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3495c593-7ef2-4dba-b3cd-77387a9c4c90.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3495c593-7ef2-4dba-b3cd-77387a9c4c90", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3495c593-7ef2-4dba-b3cd-77387a9c4c90/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90e40277-7586-46a6-b53a-ba17d1cbd120" + } + ] + }, + { + "label": { + "@none": [ + "248r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d25edbc-81fb-4b9d-9753-1afb13f78792.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/97b71577-b815-4fa4-8fec-0326fe2cecff", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d25edbc-81fb-4b9d-9753-1afb13f78792.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6d25edbc-81fb-4b9d-9753-1afb13f78792", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6d25edbc-81fb-4b9d-9753-1afb13f78792/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/009de28e-aa48-4cdd-868a-d99eb3d9417b" + } + ] + }, + { + "label": { + "@none": [ + "248v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/51dd98f9-0119-4d27-84f3-c5a3af58a351.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0730c490-06d5-4a36-8283-3f429dbe7311", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/51dd98f9-0119-4d27-84f3-c5a3af58a351.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/51dd98f9-0119-4d27-84f3-c5a3af58a351", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/51dd98f9-0119-4d27-84f3-c5a3af58a351/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a35eb6da-9f06-439d-b324-aaf700609b70" + } + ] + }, + { + "label": { + "@none": [ + "249r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25618087-9133-4458-96ff-2e9f0061be04.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3abab422-4ad9-4918-86ca-cb1510b2be0c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25618087-9133-4458-96ff-2e9f0061be04.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25618087-9133-4458-96ff-2e9f0061be04", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25618087-9133-4458-96ff-2e9f0061be04/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60f92516-a514-41eb-a899-75a142b535e5" + } + ] + }, + { + "label": { + "@none": [ + "249v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ccbe16a6-b3c0-4833-aecd-099ab8f2374d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8aa9002f-f07f-4de6-a8cf-9bd2cdca1ed9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ccbe16a6-b3c0-4833-aecd-099ab8f2374d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ccbe16a6-b3c0-4833-aecd-099ab8f2374d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ccbe16a6-b3c0-4833-aecd-099ab8f2374d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ac0bb07-a2d0-4097-8ba3-f7fe0683e00e" + } + ] + }, + { + "label": { + "@none": [ + "250r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c34addf3-27bd-4020-bdbd-0a2fa86caab1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e9853685-ac0a-4050-801e-e88a3768aa9b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c34addf3-27bd-4020-bdbd-0a2fa86caab1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c34addf3-27bd-4020-bdbd-0a2fa86caab1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c34addf3-27bd-4020-bdbd-0a2fa86caab1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d7d5644c-3176-46f2-8a70-555787164467" + } + ] + }, + { + "label": { + "@none": [ + "250v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9921e86-e105-487a-a653-f36984b65d3c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/06e3229f-0023-4b18-886e-61c61d705b36", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9921e86-e105-487a-a653-f36984b65d3c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c9921e86-e105-487a-a653-f36984b65d3c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c9921e86-e105-487a-a653-f36984b65d3c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35b753ab-4ec9-4ca5-9f01-73d37eb1e5a6" + } + ] + }, + { + "label": { + "@none": [ + "251r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fef3b68-0865-453e-a990-80fb1f705f85.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9306fde5-2af2-4205-8a90-088939e1ebe5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fef3b68-0865-453e-a990-80fb1f705f85.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fef3b68-0865-453e-a990-80fb1f705f85", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fef3b68-0865-453e-a990-80fb1f705f85/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f213229c-fb77-4cbe-912f-3580c5f8de42" + } + ] + }, + { + "label": { + "@none": [ + "251v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671db830-87cc-4d55-af40-cffeea4d888b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5f418a0f-344a-437e-bbf2-14a203972118", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671db830-87cc-4d55-af40-cffeea4d888b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/671db830-87cc-4d55-af40-cffeea4d888b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/671db830-87cc-4d55-af40-cffeea4d888b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cbf02d5f-d15f-489c-a21a-33a8ba093e70" + } + ] + }, + { + "label": { + "@none": [ + "252r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8becdf13-471c-4378-b78a-4a4603d7d3ea.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9f16d388-25e1-4222-939d-9eeebbd19904", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8becdf13-471c-4378-b78a-4a4603d7d3ea.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8becdf13-471c-4378-b78a-4a4603d7d3ea", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8becdf13-471c-4378-b78a-4a4603d7d3ea/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/af1408ba-5683-4b03-8b72-87c4439990a7" + } + ] + }, + { + "label": { + "@none": [ + "252v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e61cdb8-9060-4330-85bb-1292e19c1495.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e52a56b2-8666-4495-8ee2-ffaca58418b9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e61cdb8-9060-4330-85bb-1292e19c1495.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e61cdb8-9060-4330-85bb-1292e19c1495", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e61cdb8-9060-4330-85bb-1292e19c1495/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53ddc289-7745-404a-8966-9d91621bc8fb" + } + ] + }, + { + "label": { + "@none": [ + "253r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/625bdf36-92db-4693-bb68-62146b6dc16c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb24282c-9b88-429c-90ed-98e40844e31e" + } + ] + }, + { + "label": { + "@none": [ + "253v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a0093055-cff0-40b7-96d7-237402d1597e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2eb2a1b1-9d2d-42c5-b7de-2601dd28f827", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a0093055-cff0-40b7-96d7-237402d1597e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a0093055-cff0-40b7-96d7-237402d1597e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a0093055-cff0-40b7-96d7-237402d1597e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e379ae0-5001-4687-83cb-ce07b7104a6d" + } + ] + }, + { + "label": { + "@none": [ + "254r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4930ff2c-a826-475d-81c5-bfe978620f81.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c7ff6f25-f66d-41b0-af14-1f35859ec38f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4930ff2c-a826-475d-81c5-bfe978620f81.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4930ff2c-a826-475d-81c5-bfe978620f81", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4930ff2c-a826-475d-81c5-bfe978620f81/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5dd5848-d81f-49e3-8154-3c8756ff705d" + } + ] + }, + { + "label": { + "@none": [ + "254v" + ] + }, + "height": 7048, + "width": 5072, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/71881d1b-a237-48bc-912b-dce43fedbaa0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/edb0cce9-524d-48fa-8548-406406feb5c4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/71881d1b-a237-48bc-912b-dce43fedbaa0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7048, + "width": 5072, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/71881d1b-a237-48bc-912b-dce43fedbaa0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/71881d1b-a237-48bc-912b-dce43fedbaa0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e49c9db-ea46-42ab-97a3-fbfbc336f653" + } + ] + }, + { + "label": { + "@none": [ + "255r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91c4c10f-f472-4d95-a565-71c8b99d93be.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d0c22121-2072-426b-8493-24ddc1f8d34e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91c4c10f-f472-4d95-a565-71c8b99d93be.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91c4c10f-f472-4d95-a565-71c8b99d93be", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91c4c10f-f472-4d95-a565-71c8b99d93be/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34088498-7787-42c0-beb1-fb75851017dc" + } + ] + }, + { + "label": { + "@none": [ + "255v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96b70e87-c3ce-4548-9b49-be5e62acb87e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b2ad8cec-bd60-4a60-acf9-e0b76c5a2e44", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96b70e87-c3ce-4548-9b49-be5e62acb87e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96b70e87-c3ce-4548-9b49-be5e62acb87e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96b70e87-c3ce-4548-9b49-be5e62acb87e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3968b3e8-8fb6-42b1-aa76-74b622faaf47" + } + ] + }, + { + "label": { + "@none": [ + "256r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/def50125-781c-40f0-b1e8-746df4304f27.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/248e41fd-ed5e-42c1-99e5-7cfba41d57f6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/def50125-781c-40f0-b1e8-746df4304f27.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/def50125-781c-40f0-b1e8-746df4304f27", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/def50125-781c-40f0-b1e8-746df4304f27/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8393c830-4556-4bda-931d-06275b792381" + } + ] + }, + { + "label": { + "@none": [ + "256v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf6176cf-0e99-410c-8346-23769b40253f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/70e2fb83-60cd-4655-a855-7a7fc09f2c6c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf6176cf-0e99-410c-8346-23769b40253f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cf6176cf-0e99-410c-8346-23769b40253f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cf6176cf-0e99-410c-8346-23769b40253f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23ef2152-8b9d-472f-a696-36b70bcdb15f" + } + ] + }, + { + "label": { + "@none": [ + "257r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89819d69-bfea-4407-adb5-e1b026b2b950.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/23fbfd28-36f8-4dea-8740-42bdc83cc933", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89819d69-bfea-4407-adb5-e1b026b2b950.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89819d69-bfea-4407-adb5-e1b026b2b950", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89819d69-bfea-4407-adb5-e1b026b2b950/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bda9aa5e-0964-4117-9bbe-79da5e7f7e64" + } + ] + }, + { + "label": { + "@none": [ + "257v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d2f88-8df0-498d-9796-8eb2b23f3366.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9b1b7fa-08f3-412f-8bc5-a2665bf9bcee", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d2f88-8df0-498d-9796-8eb2b23f3366.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e01d2f88-8df0-498d-9796-8eb2b23f3366", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e01d2f88-8df0-498d-9796-8eb2b23f3366/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1639ee3-f2a3-43b4-95fc-e8285fe11114" + } + ] + }, + { + "label": { + "@none": [ + "258r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4f8e3a98-1984-4a85-a777-849b20834d1d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c9449e97-5a85-426b-be2d-bb1c4963ad65", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4f8e3a98-1984-4a85-a777-849b20834d1d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4f8e3a98-1984-4a85-a777-849b20834d1d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4f8e3a98-1984-4a85-a777-849b20834d1d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/470832c9-a953-4f90-b21f-a35862525cf7" + } + ] + }, + { + "label": { + "@none": [ + "258v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/078955ff-cd88-40ce-bfb5-721b3ea11eab.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/445428f0-4fe9-4178-afcf-451921ea7a26", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/078955ff-cd88-40ce-bfb5-721b3ea11eab.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/078955ff-cd88-40ce-bfb5-721b3ea11eab", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/078955ff-cd88-40ce-bfb5-721b3ea11eab/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6749ccd0-37fb-4b54-a3db-848d3c8a9c90" + } + ] + }, + { + "label": { + "@none": [ + "259r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f2b54aac-549d-4488-a777-06814ac9a05a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b17507b9-c0f1-49f4-961a-a2ec872eea30", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f2b54aac-549d-4488-a777-06814ac9a05a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f2b54aac-549d-4488-a777-06814ac9a05a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f2b54aac-549d-4488-a777-06814ac9a05a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2d3ad20-e485-4c6d-9aae-7ad9e01b039d" + } + ] + }, + { + "label": { + "@none": [ + "259v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12a4ff98-e887-4278-8f96-d40418dbc1d0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/79bf6d24-53d9-49ae-b467-e78ac92da3b6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12a4ff98-e887-4278-8f96-d40418dbc1d0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/12a4ff98-e887-4278-8f96-d40418dbc1d0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/12a4ff98-e887-4278-8f96-d40418dbc1d0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39077d2a-e989-4352-b90b-0f8bbbec691a" + } + ] + }, + { + "label": { + "@none": [ + "260r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6ff8721f-9517-463d-a191-66ddc3199b79.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b392278e-8bd3-49c1-8a9d-cb6a7cafb0f4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6ff8721f-9517-463d-a191-66ddc3199b79.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6ff8721f-9517-463d-a191-66ddc3199b79", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6ff8721f-9517-463d-a191-66ddc3199b79/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7805a396-5ac4-4e16-9c84-43f9d55584c5" + } + ] + }, + { + "label": { + "@none": [ + "260v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e5a98636-d568-440e-8da1-2dbac46fe7c8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/84221d59-3576-4284-9b38-6f261225f458", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e5a98636-d568-440e-8da1-2dbac46fe7c8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e5a98636-d568-440e-8da1-2dbac46fe7c8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e5a98636-d568-440e-8da1-2dbac46fe7c8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b6443860-2542-4632-88f8-ad4319358f5e" + } + ] + }, + { + "label": { + "@none": [ + "261r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/81f408b0-b34b-43cd-9da8-33a08957e08a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59ed6960-ec40-4867-a90b-33f4ab94e370", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/81f408b0-b34b-43cd-9da8-33a08957e08a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/81f408b0-b34b-43cd-9da8-33a08957e08a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/81f408b0-b34b-43cd-9da8-33a08957e08a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/044af487-b90c-4439-b31d-a7c1e0a76e10" + } + ] + }, + { + "label": { + "@none": [ + "261v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0b54715c-33a8-4799-8814-8868084863c1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/552d556a-ffb0-444a-8678-4ffd3dae9480", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0b54715c-33a8-4799-8814-8868084863c1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0b54715c-33a8-4799-8814-8868084863c1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0b54715c-33a8-4799-8814-8868084863c1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2933ce7-0789-4245-a84d-f05cb11801ea" + } + ] + }, + { + "label": { + "@none": [ + "262r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ad9f3ece-0ca4-41b2-b54c-b163005bc376.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2b64b395-bdb1-4526-8482-0125b1cf4cb9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ad9f3ece-0ca4-41b2-b54c-b163005bc376.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ad9f3ece-0ca4-41b2-b54c-b163005bc376", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ad9f3ece-0ca4-41b2-b54c-b163005bc376/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb6bc7d3-5e91-4289-acd5-05f4bb6672aa" + } + ] + }, + { + "label": { + "@none": [ + "262v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7edd2c6d-dd23-43ef-8fb1-836b5a784c23.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1af0de61-2966-47a6-ad2b-e5755eef6626", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7edd2c6d-dd23-43ef-8fb1-836b5a784c23.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7edd2c6d-dd23-43ef-8fb1-836b5a784c23", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7edd2c6d-dd23-43ef-8fb1-836b5a784c23/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/508d326a-278b-48e4-921c-e1e942041c81" + } + ] + }, + { + "label": { + "@none": [ + "263r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c01fb38-abc6-491b-b42b-3fd26b656d46.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9b287dd5-48ab-40fc-b0d1-b707882149c6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c01fb38-abc6-491b-b42b-3fd26b656d46.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c01fb38-abc6-491b-b42b-3fd26b656d46", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c01fb38-abc6-491b-b42b-3fd26b656d46/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ec5226f9-50ae-4a58-b722-416d52fffb19" + } + ] + }, + { + "label": { + "@none": [ + "263v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c774e77-2d95-4e32-80cd-810750e41221.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6b3b2d84-d73c-452d-b0e9-ced94573ce3d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c774e77-2d95-4e32-80cd-810750e41221.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7c774e77-2d95-4e32-80cd-810750e41221", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7c774e77-2d95-4e32-80cd-810750e41221/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43d13f9f-17cd-4279-b4cd-59e2ba88d9a6" + } + ] + }, + { + "label": { + "@none": [ + "264r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5b51996-fffb-44b1-ac4c-168bb4ecc94c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb83adbc-7486-4763-9a32-54bd8f6e231b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5b51996-fffb-44b1-ac4c-168bb4ecc94c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5b51996-fffb-44b1-ac4c-168bb4ecc94c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5b51996-fffb-44b1-ac4c-168bb4ecc94c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9376b3da-c5b5-472f-ad89-6057f7d9bea7" + } + ] + }, + { + "label": { + "@none": [ + "264v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f76bc3bf-9608-4015-98f3-69bf3af6edf4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f2771b86-2ef8-441e-ab40-98275e9bc095", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f76bc3bf-9608-4015-98f3-69bf3af6edf4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f76bc3bf-9608-4015-98f3-69bf3af6edf4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f76bc3bf-9608-4015-98f3-69bf3af6edf4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/27dde14a-d86b-4ca1-9466-69583f15c8db" + } + ] + }, + { + "label": { + "@none": [ + "265r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a76a4cd9-5857-4b80-9ef5-cf20f474ea46.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/022e4c1c-a6b9-4253-8813-23f5653a06a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a76a4cd9-5857-4b80-9ef5-cf20f474ea46.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a76a4cd9-5857-4b80-9ef5-cf20f474ea46", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a76a4cd9-5857-4b80-9ef5-cf20f474ea46/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fa5f731-622f-4e66-a830-b9db7403f196" + } + ] + }, + { + "label": { + "@none": [ + "265v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/543fd15c-d644-41e3-b735-d611e33b899a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6421345b-3177-40db-b48a-67fb65858ee8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/543fd15c-d644-41e3-b735-d611e33b899a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/543fd15c-d644-41e3-b735-d611e33b899a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/543fd15c-d644-41e3-b735-d611e33b899a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1e34e88-25c9-4d7f-8b94-43c40e92a6bc" + } + ] + }, + { + "label": { + "@none": [ + "266r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4020b107-ab09-4959-b911-e150d33cd042.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1b92e957-464d-4f04-95ce-520bbcac8f10", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4020b107-ab09-4959-b911-e150d33cd042.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4020b107-ab09-4959-b911-e150d33cd042", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4020b107-ab09-4959-b911-e150d33cd042/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04667ab2-4f73-4e11-985b-ef71aa401b19" + } + ] + }, + { + "label": { + "@none": [ + "266v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff2e43bd-b9c1-4d32-b736-bf7ec8057471.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b8e33b89-bde8-429e-8546-84e11de00741", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff2e43bd-b9c1-4d32-b736-bf7ec8057471.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff2e43bd-b9c1-4d32-b736-bf7ec8057471", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff2e43bd-b9c1-4d32-b736-bf7ec8057471/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0d770b3-648e-4be2-b881-f033db28b697" + } + ] + }, + { + "label": { + "@none": [ + "267r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e731b9d3-3f31-4a2b-8b89-2192d75b2466.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/046ae14d-8665-444f-a1cb-57aedb0936da", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e731b9d3-3f31-4a2b-8b89-2192d75b2466.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e731b9d3-3f31-4a2b-8b89-2192d75b2466", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e731b9d3-3f31-4a2b-8b89-2192d75b2466/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7f28f30f-c2ee-4f59-a88d-014913cb62c2" + } + ] + }, + { + "label": { + "@none": [ + "267v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a299b3dc-032b-42fd-8597-440a6180e2d7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/76c792bf-0bb0-4cb3-aedb-3ad7bf9615f4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a299b3dc-032b-42fd-8597-440a6180e2d7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a299b3dc-032b-42fd-8597-440a6180e2d7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a299b3dc-032b-42fd-8597-440a6180e2d7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8529a754-8fd8-4fbc-8f27-36534d021a14" + } + ] + }, + { + "label": { + "@none": [ + "268r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/164a74ea-a50f-4db1-a114-2b0d90f010c4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c27471b-24e5-4f9b-8b22-c7a36b5c05b5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/164a74ea-a50f-4db1-a114-2b0d90f010c4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/164a74ea-a50f-4db1-a114-2b0d90f010c4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/164a74ea-a50f-4db1-a114-2b0d90f010c4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b76394d3-2caa-4598-8036-67d9c92d8b98" + } + ] + }, + { + "label": { + "@none": [ + "268v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1348a6ff-1324-4813-bf5e-292d3ae19c5c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7860675c-f541-42df-aae0-9eab9022d90b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1348a6ff-1324-4813-bf5e-292d3ae19c5c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1348a6ff-1324-4813-bf5e-292d3ae19c5c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1348a6ff-1324-4813-bf5e-292d3ae19c5c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce73f5a0-1548-4603-8012-e9513af8fab3" + } + ] + }, + { + "label": { + "@none": [ + "269r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ffe79fbc-1229-415e-a461-7cf6c0bb42f5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/60696b0a-de36-4b0b-904f-2be50402f810", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ffe79fbc-1229-415e-a461-7cf6c0bb42f5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ffe79fbc-1229-415e-a461-7cf6c0bb42f5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ffe79fbc-1229-415e-a461-7cf6c0bb42f5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9d807d8-4871-44cb-aa03-9c15d1309706" + } + ] + }, + { + "label": { + "@none": [ + "269v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07263c2d-5742-485d-a5e2-e442f9a28bf3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/76b79d74-820a-484e-8276-08170472b763", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07263c2d-5742-485d-a5e2-e442f9a28bf3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07263c2d-5742-485d-a5e2-e442f9a28bf3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07263c2d-5742-485d-a5e2-e442f9a28bf3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb627355-c303-4dae-be9f-191c827de960" + } + ] + }, + { + "label": { + "@none": [ + "270r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb2a300e-554c-4e47-be28-0768cfb7cae2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69c0e0b1-6cb2-4841-9bd2-d180ed320121" + } + ] + }, + { + "label": { + "@none": [ + "270v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d28069d9-d72a-4a26-8a4b-3bca3e636845.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/be147daa-22f1-4a6c-a8c1-2434530bb1a7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d28069d9-d72a-4a26-8a4b-3bca3e636845.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d28069d9-d72a-4a26-8a4b-3bca3e636845", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d28069d9-d72a-4a26-8a4b-3bca3e636845/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbcc5395-a475-4ffd-8e4a-0da960a1897c" + } + ] + }, + { + "label": { + "@none": [ + "271r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bc1255-721b-4072-a442-595e603e71e7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/61c1df3b-4457-4a13-b086-d025bd603f16", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bc1255-721b-4072-a442-595e603e71e7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5bc1255-721b-4072-a442-595e603e71e7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5bc1255-721b-4072-a442-595e603e71e7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81d9488a-bef7-459c-869c-895f1436c460" + } + ] + }, + { + "label": { + "@none": [ + "271v" + ] + }, + "height": 7520, + "width": 5496, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bf8b8a31-57d1-4230-ac2d-7b9972eecc81", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c0b0b4f-eabf-4a91-aaaa-cbf24afbf973" + } + ] + }, + { + "label": { + "@none": [ + "272r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2618f8e6-99cd-4113-80d9-ecfbef0a293d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9e8a164-07c3-43cb-9a57-92e422b12d08", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2618f8e6-99cd-4113-80d9-ecfbef0a293d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2618f8e6-99cd-4113-80d9-ecfbef0a293d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2618f8e6-99cd-4113-80d9-ecfbef0a293d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d578746-c946-4fe9-a4c2-b8dc510262be" + } + ] + }, + { + "label": { + "@none": [ + "272v" + ] + }, + "height": 7520, + "width": 5496, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d01bc1d-f89b-44a9-9a04-901ad2d62f68.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1cf6ace1-90dd-4db0-89b7-951f2caea911", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d01bc1d-f89b-44a9-9a04-901ad2d62f68.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7d01bc1d-f89b-44a9-9a04-901ad2d62f68", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7d01bc1d-f89b-44a9-9a04-901ad2d62f68/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5d4cb5d-233a-4ded-a9cd-3ad9460490fa" + } + ] + }, + { + "label": { + "@none": [ + "273r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e774645-6049-4539-87ac-f6e91fca6514.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b438c6eb-c8e0-403d-87d3-738f6c00437b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e774645-6049-4539-87ac-f6e91fca6514.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e774645-6049-4539-87ac-f6e91fca6514", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e774645-6049-4539-87ac-f6e91fca6514/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b1644c5-cb4a-4b89-b65e-0bf92e095525" + } + ] + }, + { + "label": { + "@none": [ + "273v" + ] + }, + "height": 7520, + "width": 5496, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4f131c6-7148-4f5a-a8d7-9df13e56d494.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e5e3f692-d491-4f3b-9813-3e5e3003ad36", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4f131c6-7148-4f5a-a8d7-9df13e56d494.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e4f131c6-7148-4f5a-a8d7-9df13e56d494", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e4f131c6-7148-4f5a-a8d7-9df13e56d494/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e169f3bf-7635-4ad9-b18f-754725ff2a93" + } + ] + }, + { + "label": { + "@none": [ + "274r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48dc2f6e-f4c4-4fb2-b44d-41277dbed078.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0d8c2f9-0fdd-4b04-91a7-c4d58a93609d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48dc2f6e-f4c4-4fb2-b44d-41277dbed078.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48dc2f6e-f4c4-4fb2-b44d-41277dbed078", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48dc2f6e-f4c4-4fb2-b44d-41277dbed078/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a0c56a2-7650-46de-a030-7b2a40f6bc95" + } + ] + }, + { + "label": { + "@none": [ + "274v" + ] + }, + "height": 7520, + "width": 5496, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e17b0ea5-bafd-4aff-8f43-49fec921ba73.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8341250b-f967-490b-a62f-bd289259bde3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e17b0ea5-bafd-4aff-8f43-49fec921ba73.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e17b0ea5-bafd-4aff-8f43-49fec921ba73", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e17b0ea5-bafd-4aff-8f43-49fec921ba73/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7c63b22-4ac7-421f-aaef-2d60656646ce" + } + ] + }, + { + "label": { + "@none": [ + "Inside lower cover" + ] + }, + "height": 7520, + "width": 5664, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ee99bc22-b582-4544-9a23-f43e87006f65", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5664, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa99ff2f-5274-4abb-8909-63e925027db1" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_iiif_harvardartmuseums_org_manifests_object_299843": { + "label": { + "@none": [ + "Self-Portrait Dedicated to Paul Gauguin" + ] + }, + "logo": [ + { + "id": "https://www.harvardartmuseums.org/assets/images/logo.png", + "type": "Image" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1888" + ] + } + }, + { + "label": { + "@none": [ + "Classification" + ] + }, + "value": { + "@none": [ + "Paintings" + ] + } + }, + { + "label": { + "@none": [ + "Credit Line" + ] + }, + "value": { + "@none": [ + "Harvard Art Museums/Fogg Museum, Bequest from the Collection of Maurice Wertheim, Class of 1906" + ] + } + }, + { + "label": { + "@none": [ + "Object Number" + ] + }, + "value": { + "@none": [ + "1951.65" + ] + } + }, + { + "label": { + "@none": [ + "People" + ] + }, + "value": { + "@none": [ + "Artist: Vincent van Gogh, Dutch, 1853 - 1890" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Oil on canvas" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "61.5 x 50.3 cm (24 3/16 x 19 13/16 in.)\r\nframed: 90.4 x 79.7 x 8.3 cm (35 9/16 x 31 3/8 x 3 1/4 in.)" + ] + } + }, + { + "label": { + "@none": [ + "Provenance" + ] + }, + "value": { + "@none": [ + "Vincent van Gogh, Arles, (1888,) gift; to Paul Gauguin, (1888-1897) sold. [Ambroise Vollard, Paris.] [Paul Cassirer Gallery, Berlin.] Dr. Hugo von Tschudi, Berlin, (1906-1911), by descent; to his widow, Angela von Tschudi, Munich (1911-1919), to Neue Staatsgalerie, Munich (1919-1938); removed from the collection by the National Socialist (Nazi) authorities in 1938, consigned; to [Theodor Fischer Gallery, Lucerne, Switzerland, for sale June 30, 1939, lot 45]; to Maurice Wertheim (1939-1951) bequest; to Fogg Art Museum, 1951.\r\n\r\n \r\n\r\nNotes:\r\nGauguin sold the painting for Fr 300\r\nHugo von Tschudi bought the painting for the Nationalgalerie, Berlin, with funds from sponsors, but did not submit it to the Kaiser for pre-approval. He took the painting to Munich when he assumed a post there.\r\nAccording to Stephanie Barron, the van Gogh was removed from the Neue Staatsgalerie on March 27, 1938 and stored at Schloss Niederschönhausen in August of that year. (Barron, 1990,pp. 135-146)\r\n" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "" + ] + } + } + ], + "rendering": [ + { + "format": "text/html", + "label": { + "@none": [ + "Full record view" + ] + }, + "type": "Text", + "id": "https://www.harvardartmuseums.org/collections/object/299843" + } + ], + "type": "Manifest", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Harvard Art Museums" + ] + } + }, + "partOf": [ + { + "id": "https://www.harvardartmuseums.org/collections", + "type": "Collection" + } + ], + "items": [ + { + "height": 2550, + "label": { + "@none": [ + "1" + ] + }, + "width": 2087, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174896" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174896", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896", + "type": "ImageService1" + } + ], + "width": 2087, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9064845-7e07-41f0-bb32-6b7348d79301" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "2" + ] + }, + "width": 2088, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-18737483", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/18737483" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-18737483", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-18737483", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/18737483", + "type": "ImageService1" + } + ], + "width": 2088, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/18737483/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2d02b70-5c3b-4b96-91e9-0e091f49a971" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "3" + ] + }, + "width": 2259, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174892", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174892" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174892", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174892", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174892", + "type": "ImageService1" + } + ], + "width": 2259, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174892/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1482eefd-13db-4120-a171-215132add606" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "4" + ] + }, + "width": 2100, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43182083", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/43182083" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-43182083", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43182083", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/43182083", + "type": "ImageService1" + } + ], + "width": 2100, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/43182083/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f74688bc-7900-45f9-aaac-a83a214fce00" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "5" + ] + }, + "width": 2082, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183405", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/43183405" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-43183405", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183405", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/43183405", + "type": "ImageService1" + } + ], + "width": 2082, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/43183405/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e70d236-f549-4115-950c-da04b0d2eb4e" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "6" + ] + }, + "width": 2093, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183422", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/43183422" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-43183422", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183422", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/43183422", + "type": "ImageService1" + } + ], + "width": 2093, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/43183422/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90467f9d-9ebc-4dc1-8728-dabb8ea8c953" + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/sequence/normal", + "type": "Range", + "behavior": [ + "sequence", + "individuals" + ], + "items": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-18737483", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174892", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43182083", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183405", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183422", + "type": "Canvas" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_iiif_io_api_presentation_2_1_example_fixtures_1_manifest": { + "label": { + "@none": [ + "Test 1 Manifest: Minimum Required Fields" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json", + "partOf": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/collection.json", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "Test 1 Canvas: 1" + ] + }, + "height": 1800, + "width": 1200, + "type": "Canvas", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3644c005-bf7a-48d0-9fa9-1e1757bf8df1", + "target": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "type": "Canvas" + } + ], + "body": [ + { + "height": 1800, + "width": 1200, + "type": "Image", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png" + } + ] + } + ], + "id": "https://example.org/uuid/1dad04b3-79c6-4a97-a831-634f2ee50a26" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_iiif_lib_harvard_edu_manifests_drs_48309543": { + "structures": [ + { + "label": { + "@none": [ + "Table of Contents" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json", + "items": [ + { + "label": { + "@none": [ + "Bibliographic information (seq. 1-20)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "items": [ + { + "label": { + "@none": [ + "(seq. 1)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-1.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 2)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-2.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 3)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-3.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 4)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-4.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 5)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-5.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 6)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-6.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 7)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-7.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 8)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-8.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 9)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-9.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 10)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-10.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 11)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-11.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 12)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-12.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 13)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-13.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 14)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-14.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 15)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-15.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 16)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-16.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 17)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-17.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 18)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-18.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 19)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-19.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 20)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-20.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "type": "Canvas" + } + ] + } + ] + }, + { + "label": { + "@none": [ + "Recto (seq. 21-40)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "items": [ + { + "label": { + "@none": [ + "(seq. 21)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-1.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 22)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-2.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 23)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-3.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 24)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-4.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 25)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-5.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 26)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-6.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 27)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-7.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 28)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-8.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 29)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-9.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 30)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-10.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 31)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-11.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 32)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-12.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 33)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-13.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 34)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-14.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 35)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-15.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 36)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-16.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 37)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-17.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 38)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-18.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 39)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-19.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 40)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-20.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "type": "Canvas" + } + ] + } + ] + }, + { + "label": { + "@none": [ + "Scroll view (stitched digital image) (seq. 41)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-3.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "type": "Canvas" + } + ] + } + ] + } + ], + "label": { + "@none": [ + "Chronique du monde depuis la création, et des rois de France et d'Angleterre, jusqu'à l'an 1461: manuscript, [ca. 1461]. MS Typ 41. Houghton Library, Harvard University, Cambridge, Mass." + ] + }, + "logo": [ + { + "id": "https://iiif.lib.harvard.edu/static/manifests/harvard_logo.jpg", + "type": "Image" + } + ], + "type": "Manifest", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543", + "metadata": [ + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://nrs.harvard.edu/urn-3:hul.ois:hlviewerterms" + ] + } + } + ], + "items": [ + { + "label": { + "@none": [ + "(seq. 1)" + ] + }, + "width": 1694, + "height": 2317, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309544.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 2317, + "width": 1694, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63d7a009-3671-4518-9b6d-70dd1d4334f7" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 2)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309545/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309545.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309545", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309545/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5187b3e-4c20-4e3c-8f26-6ba34fe859dc" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 3)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309546/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309546.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309546", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309546/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0a233b56-8d4e-4062-a812-61ea18a58f5a" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 4)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309547/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309547.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309547", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309547/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7bdaf80a-e9e0-48e1-a8bd-3e223ab9c156" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 5)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309548/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309548.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309548", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309548/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51e6a500-8ec0-4cb4-863b-bb8416325a9e" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 6)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309549/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309549.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309549", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309549/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fd19b72-4602-4b7a-84ab-bbb00e97bebf" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 7)" + ] + }, + "width": 8000, + "height": 5616, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309550/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309550.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309550", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 5616, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309550/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/af7cd84d-d061-4155-80e8-4516fe6e484f" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 8)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309551/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309551.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309551", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309551/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b209e63d-90ee-4d8e-a3e2-881b47046ed4" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 9)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309552/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309552.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309552", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309552/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44b6c480-15e2-41a0-bd71-200e34794d56" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 10)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309553/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309553.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309553", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309553/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/368b9d6f-27e8-4f42-9ccf-33df96898dc8" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 11)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309554/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309554.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309554", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309554/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80553e76-a514-4808-93f4-cda265813506" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 12)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309555/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309555.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309555", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309555/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92c92677-e5e7-41bc-833c-8b36d469c663" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 13)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309556/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309556.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309556", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309556/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac90c2b8-b93e-4046-8517-1180c4210274" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 14)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309557/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309557.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309557", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309557/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d3b3d56-0bac-4f48-b714-406c4a10495d" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 15)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309558/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309558.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309558", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309558/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f43402fb-4231-4b3a-9008-790b11b6b8a4" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 16)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309559/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309559.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309559", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309559/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9e08aff-3f01-4eef-9718-0135be0c22f3" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 17)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309560/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309560.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309560", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309560/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8332a055-35dd-40fe-a019-89c6fb1eff27" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 18)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309561/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309561.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309561", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309561/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8c2b69c-51f0-4e80-b3ab-c732163b31fd" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 19)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309562/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309562.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309562", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309562/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/384e8b43-37b7-4cee-8664-b1881202aacf" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 20)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309563/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309563.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309563", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309563/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8b4cc90-93ea-46df-9bd8-061937b52556" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 21)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309564/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309564.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309564", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309564/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9aab6e3d-45ac-4c08-96f0-a154980960db" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 22)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309565/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309565.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309565", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309565/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80c4fd77-de67-4894-ae2e-c4814292db72" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 23)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309566/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309566.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309566", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309566/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3cb55258-8b6c-4f1b-bdb9-255b72468c44" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 24)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309567/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309567.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309567", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309567/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b058f82b-43be-4a5b-bdb0-1a1d50cf5833" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 25)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309568/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309568.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309568", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309568/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab9de61e-1b7a-4923-b953-69a6c8977944" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 26)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309569/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309569.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309569", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309569/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99a193f5-ad24-4a3f-b124-bc7f65f3fc3b" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 27)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309570/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309570.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309570", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309570/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/091ad20a-14d0-40eb-b733-876bb226fdb2" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 28)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309571/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309571.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309571", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309571/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7379a562-ac2c-4363-af23-4907ee3da6cf" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 29)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309572/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309572.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309572", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309572/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86077528-a172-449e-81be-67769721269f" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 30)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309573/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309573.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309573", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309573/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/79daa74b-fcc5-4529-9d5b-050ebe490c96" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 31)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309574/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309574.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309574", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309574/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac9102d2-7ecf-414c-a7a6-ffe4f26c8bcf" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 32)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309575/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309575.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309575", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309575/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c2a43b5-74b5-4e00-9726-e8135fb0465e" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 33)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309576/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309576.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309576", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309576/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e654d0f-2b4c-4cde-8610-e53c2322c175" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 34)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309577/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309577.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309577", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309577/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/28ddb974-fbae-4703-acec-80c85fa51796" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 35)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309578/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309578.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309578", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309578/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d34b18d3-079b-4523-808e-0084319e8ae8" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 36)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309579/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309579.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309579", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309579/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d569bac7-0312-48d2-9e67-6e119d47a215" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 37)" + ] + }, + "width": 8000, + "height": 5052, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309580/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309580.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309580", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 5052, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309580/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c5cdf41-71d3-4f0a-9c09-5a2d298bcbae" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 38)" + ] + }, + "width": 8000, + "height": 5412, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309581/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309581.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309581", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 5412, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309581/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6bb6ae62-b25f-4e3e-8f10-97f23572ad08" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 39)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309582/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309582.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309582", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309582/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/78277260-2fc9-4473-a124-66463498b351" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 40)" + ] + }, + "width": 8000, + "height": 5340, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309583/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309583.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309583", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 5340, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309583/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d349ac2-cf30-450b-be3d-79c0e5761faa" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 41)" + ] + }, + "width": 8154, + "height": 142849, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48530377/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48530377.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48530377", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 142849, + "width": 8154, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48530377/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e56a1d91-e995-4b45-9ea2-81a669fc3bce" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_lbiiif_riksarkivet_se_arkis_r0000004_manifest": { + "label": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ], + "en": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Arkiv" + ], + "en-GB": [ + "Archive" + ] + }, + "value": { + "@none": [ + "Originaltraktater med främmande makter (traktater)" + ] + } + }, + { + "label": { + "sv": [ + "Serie" + ], + "en-GB": [ + "Serie" + ] + }, + "value": { + "@none": [ + "Danmark" + ] + } + }, + { + "label": { + "sv": [ + "Referenskod" + ], + "en-GB": [ + "Reference code" + ] + }, + "value": { + "@none": [ + "SE/RA/25.3/1/1" + ] + } + }, + { + "label": { + "sv": [ + "Titel" + ], + "en-GB": [ + "Title" + ] + }, + "value": { + "@none": [ + "18 november 1568" + ] + } + }, + { + "label": { + "sv": [ + "Datering" + ], + "en-GB": [ + "Date" + ] + }, + "value": { + "@none": [ + "1568" + ] + } + }, + { + "label": { + "sv": [ + "Anmärkning" + ], + "en-GB": [ + "Remark" + ] + }, + "value": { + "@none": [ + "Fredsfördrag. Dat. Roskilde" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "@none": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ] + } + } + ], + "type": "Manifest", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/manifest", + "items": [ + { + "label": { + "sv": [ + "Bild 1" + ], + "en-GB": [ + "Image 1" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00001" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00001" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00001" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00001" + ] + } + } + ], + "height": 5001, + "width": 7022, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p1", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5001, + "width": 7022, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6bf1c22-dd03-4f63-9a95-54da248c4b7c" + } + ] + }, + { + "label": { + "sv": [ + "Bild 2" + ], + "en-GB": [ + "Image 2" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00002" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00002" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00002" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00002" + ] + } + } + ], + "height": 8926, + "width": 6453, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p2", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8926, + "width": 6453, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00002", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00002/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2a8bd6f-a322-42eb-b7b1-07a25199fad3" + } + ] + }, + { + "label": { + "sv": [ + "Bild 3" + ], + "en-GB": [ + "Image 3" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00003" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00003" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00003" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00003" + ] + } + } + ], + "height": 8874, + "width": 6504, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p3", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8874, + "width": 6504, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00003", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00003/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7765cdb6-4746-4113-9fbb-7e4d21295618" + } + ] + }, + { + "label": { + "sv": [ + "Bild 4" + ], + "en-GB": [ + "Image 4" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00004" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00004" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00004" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00004" + ] + } + } + ], + "height": 8866, + "width": 12873, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p4", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8866, + "width": 12873, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00004", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00004/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cea35819-4951-414d-924c-11d84b56ca09" + } + ] + }, + { + "label": { + "sv": [ + "Bild 5" + ], + "en-GB": [ + "Image 5" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00005" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00005" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00005" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00005" + ] + } + } + ], + "height": 8911, + "width": 12538, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p5", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8911, + "width": 12538, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00005", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00005/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7eb81ad-539a-4910-b6e8-8b34eac824dd" + } + ] + }, + { + "label": { + "sv": [ + "Bild 6" + ], + "en-GB": [ + "Image 6" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00006" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00006" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00006" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00006" + ] + } + } + ], + "height": 8968, + "width": 12921, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p6", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8968, + "width": 12921, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00006", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00006/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/470432fd-61ff-46e5-bd38-cab8c6779b5d" + } + ] + }, + { + "label": { + "sv": [ + "Bild 7" + ], + "en-GB": [ + "Image 7" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00007" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00007" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00007" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00007" + ] + } + } + ], + "height": 8936, + "width": 12909, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p7", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8936, + "width": 12909, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00007", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00007/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17d9571c-3c4b-4b7d-8362-72259d758cb4" + } + ] + }, + { + "label": { + "sv": [ + "Bild 8" + ], + "en-GB": [ + "Image 8" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00008" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00008" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00008" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00008" + ] + } + } + ], + "height": 8914, + "width": 12546, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p8", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8914, + "width": 12546, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00008", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00008/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4faab575-2aa0-402e-a43a-64a20a0934cc" + } + ] + }, + { + "label": { + "sv": [ + "Bild 9" + ], + "en-GB": [ + "Image 9" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00009" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00009" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00009" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00009" + ] + } + } + ], + "height": 8903, + "width": 12541, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p9", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8903, + "width": 12541, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00009", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00009/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/919bd1ff-ef06-412d-b4e3-ecf4fe2e97b9" + } + ] + }, + { + "label": { + "sv": [ + "Bild 10" + ], + "en-GB": [ + "Image 10" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00010" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00010" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00010" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00010" + ] + } + } + ], + "height": 8864, + "width": 12908, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p10", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p10", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8864, + "width": 12908, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00010", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00010/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9c2312a-c869-47a5-bae5-9f90877e9c73" + } + ] + }, + { + "label": { + "sv": [ + "Bild 11" + ], + "en-GB": [ + "Image 11" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00011" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00011" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00011" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00011" + ] + } + } + ], + "height": 8865, + "width": 6539, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p11", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8865, + "width": 6539, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00011", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00011/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94ed0dd3-44f8-40bf-82ae-503f2455c42e" + } + ] + }, + { + "label": { + "sv": [ + "Bild 12" + ], + "en-GB": [ + "Image 12" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00012" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00012" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00012" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00012" + ] + } + } + ], + "height": 5053, + "width": 7105, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p12", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p12", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5053, + "width": 7105, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00012", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00012/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95851219-c1ca-468a-bf3f-dea1003fcdfb" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_manifests_britishart_yale_edu_manifest_1474": { + "label": { + "@none": [ + "Peter Gaspar Scheemakers, 1691–1781, Flemish, active in Britain (from ca. 1720), Alexander Pope, ca. 1740, Marble, Yale Center for British Art, B1977.14.29, Paintings and Sculpture" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Creator(s)" + ] + }, + "value": { + "@none": [ + "Peter Gaspar Scheemakers, 1691–1781, Flemish, active in Britain (from ca. 1720)" + ] + } + }, + { + "label": { + "@none": [ + "Titles" + ] + }, + "value": { + "@none": [ + "Alexander Pope" + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "ca. 1740" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Marble" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "Overall: 27 x 18 x 9 inches (68.6 x 45.7 x 22.9 cm)" + ] + } + }, + { + "label": { + "@none": [ + "Inscriptions" + ] + }, + "value": { + "@none": [ + "Chiseled on front of socle: \"POPE.\"" + ] + } + }, + { + "label": { + "@none": [ + "Credit line" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art, Paul Mellon Collection" + ] + } + }, + { + "label": { + "@none": [ + "Institution" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "Paintings and Sculpture" + ] + } + }, + { + "label": { + "@none": [ + "Accession number" + ] + }, + "value": { + "@none": [ + "B1977.14.29" + ] + } + }, + { + "label": { + "@none": [ + "Bibliography" + ] + }, + "value": { + "@none": [ + "Prof. Maynard Mack, The World of Alexander Pope, Yale University Press, New Haven, no. 20, Z8704 M37", + "Malcolm Baker, Literary Figures, Apollo, 179, June 2014, p. 76, N1 A54+ 179:2" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Overall: 27 x 18 x 9 inches (68.6 x 45.7 x 22.9 cm), Chiseled on front of socle: \"POPE.\"" + ] + } + } + ], + "logo": [ + { + "id": "https://static.britishart.yale.edu/images/ycba_logo.jpg", + "type": "Image" + } + ], + "seeAlso": [ + { + "format": "text/xml", + "profile": "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd", + "type": "Dataset", + "id": "https://manifests.britishart.yale.edu/xml/1474.xml" + }, + { + "format": "text/rdf+n3", + "type": "Dataset", + "id": "http://collection.britishart.yale.edu/id/data/object/1474" + } + ], + "type": "Manifest", + "id": "https://manifests.britishart.yale.edu/manifest/1474", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art, Paul Mellon Collection,
Public Domain
" + ] + } + }, + "homepage": { + "label": { + "@none": [ + "catalog entry at the Yale Center for British Art" + ] + }, + "format": "text/html", + "type": "Text", + "id": "http://collections.britishart.yale.edu/vufind/Record/1666375" + }, + "items": [ + { + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8173, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-pub", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8173, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad8fecde-2b8a-4760-aaf9-e7a700c6ac41" + } + ] + }, + { + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8955, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-bar", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-bar", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-bar", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/915ba5d3-e38a-4d3c-a81a-ca858dc5cdb6", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8955, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/915ba5d3-e38a-4d3c-a81a-ca858dc5cdb6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4548bc75-6b36-41b7-b72c-df2bdaa6a397" + } + ] + }, + { + "width": 6127, + "label": { + "@none": [ + "proper left" + ] + }, + "height": 8173, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0002-pub", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0002-pub", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0002-pub", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/2057e87a-de16-4e59-ba15-3bcdaae7d8b0", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "proper left" + ] + }, + "height": 8173, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/2057e87a-de16-4e59-ba15-3bcdaae7d8b0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dad6c14f-17b7-4503-9a44-d384a6ce0937" + } + ] + }, + { + "width": 6127, + "label": { + "@none": [ + "back" + ] + }, + "height": 8173, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0003-pub", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0003-pub", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0003-pub", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/4c630d19-d059-40ca-ba8c-0646bec2ab13", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "back" + ] + }, + "height": 8173, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/4c630d19-d059-40ca-ba8c-0646bec2ab13/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/452f5a8a-56c0-4992-b4a7-11ea06c53129" + } + ] + }, + { + "width": 6127, + "label": { + "@none": [ + "proper right" + ] + }, + "height": 8173, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0004-pub", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0004-pub", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0004-pub", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/0d02621e-57b7-46c8-9674-2c1e419b8b91", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "proper right" + ] + }, + "height": 8173, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/0d02621e-57b7-46c8-9674-2c1e419b8b91/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9949ee68-442c-44d6-9510-426b94bfedc4" + } + ] + } + ], + "structures": [ + { + "id": "https://manifests.britishart.yale.edu/sequence/1474", + "type": "Range", + "behavior": [ + "sequence", + "individuals" + ], + "items": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas" + }, + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-bar", + "type": "Canvas" + }, + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0002-pub", + "type": "Canvas" + }, + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0003-pub", + "type": "Canvas" + }, + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0004-pub", + "type": "Canvas" + } + ], + "label": { + "@none": [ + "default sequence" + ] + } + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_manifests_ydc2_yale_edu_manifest_admont43": { + "label": { + "@none": [ + "Aa, Admont, Benediktinerstift Admont Bibliothek & Museum, Admont MS 43" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1160-1180" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Admont MS 43 - Aa 43 (Gratian Decretum)" + ] + } + }, + { + "label": { + "@none": [ + "Number of leaves" + ] + }, + "value": { + "@none": [ + "342" + ] + } + }, + { + "label": { + "@none": [ + "Origin" + ] + }, + "value": { + "@none": [ + "Austria" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "parchment" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Aa, Admont, Benediktinerstift Admont Bibliothek & Museum, Admont 43 IIIF Manifest created for the Digitally Enabled Scholarship with Medieval Manuscripts project at Yale University." + ] + } + } + ], + "type": "Manifest", + "id": "http://manifests.ydc2.yale.edu/manifest/Admont43", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Admont, Stiftsbibliothek" + ] + } + }, + "items": [ + { + "height": 4525, + "label": { + "@none": [ + "1r" + ] + }, + "width": 3115, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5fd274ff-0b1c-47f5-af2a-c0f26a468016", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4525, + "label": { + "@none": [ + "1r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/", + "type": "ImageService1" + } + ], + "width": 3115, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0c1378f-5b20-461a-9b9c-de56579781a2" + } + ] + }, + { + "height": 4072, + "label": { + "@none": [ + "1v" + ] + }, + "width": 2736, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/adc8a547-d3c2-4caa-96b3-e42bc7b539e5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/46d1c4a8-adbb-4fba-85aa-e9a82c0a4f47", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/adc8a547-d3c2-4caa-96b3-e42bc7b539e5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4072, + "label": { + "@none": [ + "1v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/46d1c4a8-adbb-4fba-85aa-e9a82c0a4f47/", + "type": "ImageService1" + } + ], + "width": 2736, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/46d1c4a8-adbb-4fba-85aa-e9a82c0a4f47/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ef42de3-7a4b-4efe-8e3a-37b120c86cd8" + } + ] + }, + { + "height": 4652, + "label": { + "@none": [ + "2r" + ] + }, + "width": 3131, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b0118c8f-ac6d-4ddf-b2dd-5c6123ff8c27", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b9849e35-6d34-492d-835a-1cf924271ab3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b0118c8f-ac6d-4ddf-b2dd-5c6123ff8c27", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4652, + "label": { + "@none": [ + "2r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b9849e35-6d34-492d-835a-1cf924271ab3/", + "type": "ImageService1" + } + ], + "width": 3131, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b9849e35-6d34-492d-835a-1cf924271ab3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5cd93faa-b08c-4924-92c9-98831f32eb54" + } + ] + }, + { + "height": 4030, + "label": { + "@none": [ + "2v" + ] + }, + "width": 2738, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/239207e1-925f-42bb-b75d-f0b1e5bed79a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a2f7569a-6319-4367-8f7e-75921bde2b69", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/239207e1-925f-42bb-b75d-f0b1e5bed79a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4030, + "label": { + "@none": [ + "2v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a2f7569a-6319-4367-8f7e-75921bde2b69/", + "type": "ImageService1" + } + ], + "width": 2738, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a2f7569a-6319-4367-8f7e-75921bde2b69/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1222299f-6f64-4aae-a0ba-898e7e6ee165" + } + ] + }, + { + "height": 4676, + "label": { + "@none": [ + "3r" + ] + }, + "width": 3007, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/28f8e99f-b80d-4eea-8506-7d2716fee953", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d60e09ca-0dcb-407b-bcb8-f5f2cfd1ed65", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/28f8e99f-b80d-4eea-8506-7d2716fee953", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4676, + "label": { + "@none": [ + "3r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d60e09ca-0dcb-407b-bcb8-f5f2cfd1ed65/", + "type": "ImageService1" + } + ], + "width": 3007, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d60e09ca-0dcb-407b-bcb8-f5f2cfd1ed65/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5f95a766-16ac-471f-9cfa-b150239ca65b" + } + ] + }, + { + "height": 4064, + "label": { + "@none": [ + "3v" + ] + }, + "width": 2750, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bab74636-b2ca-4a63-abcf-f8bae1490d0c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/207b6a68-1e4c-440b-ab91-e868f2afa393", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bab74636-b2ca-4a63-abcf-f8bae1490d0c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4064, + "label": { + "@none": [ + "3v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/207b6a68-1e4c-440b-ab91-e868f2afa393/", + "type": "ImageService1" + } + ], + "width": 2750, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/207b6a68-1e4c-440b-ab91-e868f2afa393/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85004993-a942-43a6-8365-61b546c5db6c" + } + ] + }, + { + "height": 4666, + "label": { + "@none": [ + "4r" + ] + }, + "width": 3081, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/de3cf018-1db8-4b5e-bb67-1b093eec85d7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5f213689-faa1-4510-b4a3-571376932ff7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/de3cf018-1db8-4b5e-bb67-1b093eec85d7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4666, + "label": { + "@none": [ + "4r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5f213689-faa1-4510-b4a3-571376932ff7/", + "type": "ImageService1" + } + ], + "width": 3081, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5f213689-faa1-4510-b4a3-571376932ff7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9d0386f-6284-4427-bc22-9fd23a8204ae" + } + ] + }, + { + "height": 4036, + "label": { + "@none": [ + "4v" + ] + }, + "width": 2748, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8a057755-a141-45ff-9302-ddc0df164d58", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c6e2e3b6-42b1-457e-8a15-a7e6cc616e52", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8a057755-a141-45ff-9302-ddc0df164d58", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4036, + "label": { + "@none": [ + "4v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c6e2e3b6-42b1-457e-8a15-a7e6cc616e52/", + "type": "ImageService1" + } + ], + "width": 2748, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c6e2e3b6-42b1-457e-8a15-a7e6cc616e52/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d96573d-7dc9-4fc0-8305-f0a295af39df" + } + ] + }, + { + "height": 4664, + "label": { + "@none": [ + "5r" + ] + }, + "width": 3042, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b86be1b8-b27d-4f13-a0f1-ba145f679096", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b1414b3d-b11b-43a2-9f3f-a0953ce45660", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b86be1b8-b27d-4f13-a0f1-ba145f679096", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4664, + "label": { + "@none": [ + "5r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b1414b3d-b11b-43a2-9f3f-a0953ce45660/", + "type": "ImageService1" + } + ], + "width": 3042, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b1414b3d-b11b-43a2-9f3f-a0953ce45660/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/627fc3e7-2cf2-40dc-bb02-506b86e8f319" + } + ] + }, + { + "height": 4078, + "label": { + "@none": [ + "5v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2b5bcd39-0649-49d4-aabe-9f613f54da11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/45685c39-93f1-4284-a48f-3a88346f23cd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2b5bcd39-0649-49d4-aabe-9f613f54da11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4078, + "label": { + "@none": [ + "5v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/45685c39-93f1-4284-a48f-3a88346f23cd/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/45685c39-93f1-4284-a48f-3a88346f23cd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5906130-4377-4a86-87e4-d52a87a1c0dd" + } + ] + }, + { + "height": 4652, + "label": { + "@none": [ + "6r" + ] + }, + "width": 3064, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/33d390af-2d10-43eb-8aff-32c66985543c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2b01671d-0286-4abd-95ea-cd57407369ff", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/33d390af-2d10-43eb-8aff-32c66985543c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4652, + "label": { + "@none": [ + "6r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2b01671d-0286-4abd-95ea-cd57407369ff/", + "type": "ImageService1" + } + ], + "width": 3064, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2b01671d-0286-4abd-95ea-cd57407369ff/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8c22d223-18a9-42c3-9365-4f29dbb1f325" + } + ] + }, + { + "height": 4069, + "label": { + "@none": [ + "6v" + ] + }, + "width": 2753, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b511cb3-f6c3-467a-9fca-30570c0be4ee", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8c331573-b246-45ce-ba8d-b71c3905e9c2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b511cb3-f6c3-467a-9fca-30570c0be4ee", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4069, + "label": { + "@none": [ + "6v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8c331573-b246-45ce-ba8d-b71c3905e9c2/", + "type": "ImageService1" + } + ], + "width": 2753, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8c331573-b246-45ce-ba8d-b71c3905e9c2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2aba77c1-3e30-4a7b-9607-b00c06ef3f64" + } + ] + }, + { + "height": 4582, + "label": { + "@none": [ + "7r" + ] + }, + "width": 3030, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/22cc8b54-974f-4d2e-91ca-6255f8c60b34", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e595e28c-5b35-4979-a423-468f9330292c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/22cc8b54-974f-4d2e-91ca-6255f8c60b34", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4582, + "label": { + "@none": [ + "7r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e595e28c-5b35-4979-a423-468f9330292c/", + "type": "ImageService1" + } + ], + "width": 3030, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e595e28c-5b35-4979-a423-468f9330292c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8ba9788c-0360-4222-9ff0-c6b1a929ec3b" + } + ] + }, + { + "height": 4054, + "label": { + "@none": [ + "7v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d87c2491-5866-4041-90da-e058906ce5e2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/aad28332-8c38-4b23-8a83-e3cd5ec8c80d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d87c2491-5866-4041-90da-e058906ce5e2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4054, + "label": { + "@none": [ + "7v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/aad28332-8c38-4b23-8a83-e3cd5ec8c80d/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/aad28332-8c38-4b23-8a83-e3cd5ec8c80d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70fe13eb-ecdf-435a-bb0f-a6b979ec364a" + } + ] + }, + { + "height": 4638, + "label": { + "@none": [ + "8r" + ] + }, + "width": 3131, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b71d843-fb0b-4fba-a93a-7686543e8596", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/616cbd69-a065-46b8-9b4d-84f9d7ab07f2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b71d843-fb0b-4fba-a93a-7686543e8596", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4638, + "label": { + "@none": [ + "8r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/616cbd69-a065-46b8-9b4d-84f9d7ab07f2/", + "type": "ImageService1" + } + ], + "width": 3131, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/616cbd69-a065-46b8-9b4d-84f9d7ab07f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63fca134-6fd4-44ff-bd3e-643e7a1b8da6" + } + ] + }, + { + "height": 4036, + "label": { + "@none": [ + "8v" + ] + }, + "width": 2806, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7a9e7356-1546-478a-8227-62580b1fcda7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/766dc1a3-9feb-4cdf-b922-d8624783f06e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7a9e7356-1546-478a-8227-62580b1fcda7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4036, + "label": { + "@none": [ + "8v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/766dc1a3-9feb-4cdf-b922-d8624783f06e/", + "type": "ImageService1" + } + ], + "width": 2806, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/766dc1a3-9feb-4cdf-b922-d8624783f06e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d5a7bdb-7f99-42e5-aad7-a730af80aa9e" + } + ] + }, + { + "height": 4637, + "label": { + "@none": [ + "9r" + ] + }, + "width": 3126, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b76834fd-514c-4733-a8ce-40233bdc8dc9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e19f6f51-f60e-4141-8c19-55f527934105", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b76834fd-514c-4733-a8ce-40233bdc8dc9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4637, + "label": { + "@none": [ + "9r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e19f6f51-f60e-4141-8c19-55f527934105/", + "type": "ImageService1" + } + ], + "width": 3126, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e19f6f51-f60e-4141-8c19-55f527934105/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb1d34b4-c666-44af-a0cf-9bdc9ce3b310" + } + ] + }, + { + "height": 4030, + "label": { + "@none": [ + "9v" + ] + }, + "width": 2788, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bb14bcdc-def9-4f72-8c40-c5a37b550bf6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6a790e97-d6b1-4504-9a42-c3ded8d08eb7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bb14bcdc-def9-4f72-8c40-c5a37b550bf6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4030, + "label": { + "@none": [ + "9v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6a790e97-d6b1-4504-9a42-c3ded8d08eb7/", + "type": "ImageService1" + } + ], + "width": 2788, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6a790e97-d6b1-4504-9a42-c3ded8d08eb7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/afe27bdd-ea99-42be-9563-1267667a5eb7" + } + ] + }, + { + "height": 4652, + "label": { + "@none": [ + "10r" + ] + }, + "width": 3026, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5f910bc5-c1ac-4ccf-b31e-b41e7ec82e79", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0d3e83ea-0f25-417c-9d83-e2d8c2d03b0c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5f910bc5-c1ac-4ccf-b31e-b41e7ec82e79", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4652, + "label": { + "@none": [ + "10r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0d3e83ea-0f25-417c-9d83-e2d8c2d03b0c/", + "type": "ImageService1" + } + ], + "width": 3026, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0d3e83ea-0f25-417c-9d83-e2d8c2d03b0c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d36895d-1d43-4b56-ad3a-f634cca9bd9d" + } + ] + }, + { + "height": 4045, + "label": { + "@none": [ + "10v" + ] + }, + "width": 2725, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/40694da6-c0d0-4afd-b36f-e9782e897af0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/57650176-11d0-4497-85cc-2a5dfb75a769", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/40694da6-c0d0-4afd-b36f-e9782e897af0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4045, + "label": { + "@none": [ + "10v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/57650176-11d0-4497-85cc-2a5dfb75a769/", + "type": "ImageService1" + } + ], + "width": 2725, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/57650176-11d0-4497-85cc-2a5dfb75a769/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0a0ffa5-25b6-427c-b02a-5c530586a504" + } + ] + }, + { + "height": 4685, + "label": { + "@none": [ + "11r" + ] + }, + "width": 3088, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1747771b-3435-4e11-b3ae-95d74a4acdce", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/14e9ed83-637f-4acb-9d93-91d3eb29eba5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1747771b-3435-4e11-b3ae-95d74a4acdce", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4685, + "label": { + "@none": [ + "11r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/14e9ed83-637f-4acb-9d93-91d3eb29eba5/", + "type": "ImageService1" + } + ], + "width": 3088, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/14e9ed83-637f-4acb-9d93-91d3eb29eba5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/868b63d2-1522-4096-b6d7-5d46ddf092b8" + } + ] + }, + { + "height": 4060, + "label": { + "@none": [ + "11v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/61536335-18e1-4cbc-80bf-ab1fbd3c28f7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/faed1213-f116-4d25-8c77-1ce93ab68e87", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/61536335-18e1-4cbc-80bf-ab1fbd3c28f7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4060, + "label": { + "@none": [ + "11v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/faed1213-f116-4d25-8c77-1ce93ab68e87/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/faed1213-f116-4d25-8c77-1ce93ab68e87/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c328eb5e-8fc5-4929-afce-1aff1b859b17" + } + ] + }, + { + "height": 4617, + "label": { + "@none": [ + "12r" + ] + }, + "width": 3078, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/58d17284-89ec-44fa-848c-30635adf9b0d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cb7400c5-4ff5-41d0-82e2-fa8b6aec837a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/58d17284-89ec-44fa-848c-30635adf9b0d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4617, + "label": { + "@none": [ + "12r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cb7400c5-4ff5-41d0-82e2-fa8b6aec837a/", + "type": "ImageService1" + } + ], + "width": 3078, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cb7400c5-4ff5-41d0-82e2-fa8b6aec837a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24a2d621-d6b7-4eb0-a739-3ea4432230be" + } + ] + }, + { + "height": 4045, + "label": { + "@none": [ + "12v" + ] + }, + "width": 2726, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e2b1c5aa-a1a7-4942-a07f-77ac29cbeeb6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/84dd1a79-68e7-45d7-8bb5-b9f0381428ba", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e2b1c5aa-a1a7-4942-a07f-77ac29cbeeb6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4045, + "label": { + "@none": [ + "12v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/84dd1a79-68e7-45d7-8bb5-b9f0381428ba/", + "type": "ImageService1" + } + ], + "width": 2726, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/84dd1a79-68e7-45d7-8bb5-b9f0381428ba/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34adc963-bd34-44b8-abaa-235ba8a83a7b" + } + ] + }, + { + "height": 4642, + "label": { + "@none": [ + "13r" + ] + }, + "width": 3116, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f7c3a817-afef-4514-a403-2de4d05e63e5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9adb1621-c248-46eb-a9ad-282e11f0abeb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f7c3a817-afef-4514-a403-2de4d05e63e5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4642, + "label": { + "@none": [ + "13r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9adb1621-c248-46eb-a9ad-282e11f0abeb/", + "type": "ImageService1" + } + ], + "width": 3116, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9adb1621-c248-46eb-a9ad-282e11f0abeb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19a64e3e-3ff0-4427-95b0-46ff137a157d" + } + ] + }, + { + "height": 4055, + "label": { + "@none": [ + "13v" + ] + }, + "width": 2719, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a5a0120a-6f9b-4f1c-ba0c-4a92d8de362d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cbbe5bab-6297-4261-b01d-660f5319aa78", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a5a0120a-6f9b-4f1c-ba0c-4a92d8de362d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4055, + "label": { + "@none": [ + "13v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cbbe5bab-6297-4261-b01d-660f5319aa78/", + "type": "ImageService1" + } + ], + "width": 2719, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cbbe5bab-6297-4261-b01d-660f5319aa78/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fa015b3-b965-41b1-bd4f-10db015a2986" + } + ] + }, + { + "height": 4658, + "label": { + "@none": [ + "14r" + ] + }, + "width": 3050, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/994bcb88-ad63-4908-9a97-dc8001bde106", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/acd4a52f-c9cf-4c62-9efe-a8f7d105232b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/994bcb88-ad63-4908-9a97-dc8001bde106", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4658, + "label": { + "@none": [ + "14r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/acd4a52f-c9cf-4c62-9efe-a8f7d105232b/", + "type": "ImageService1" + } + ], + "width": 3050, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/acd4a52f-c9cf-4c62-9efe-a8f7d105232b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11d1faa5-8381-4e36-8b7b-710f1f8b77e0" + } + ] + }, + { + "height": 4045, + "label": { + "@none": [ + "14v" + ] + }, + "width": 2724, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c7c88d3f-4d77-4487-8c51-26b5fa27b24d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ad4cb063-f777-4af1-a91e-8c208e20f7b3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c7c88d3f-4d77-4487-8c51-26b5fa27b24d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4045, + "label": { + "@none": [ + "14v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ad4cb063-f777-4af1-a91e-8c208e20f7b3/", + "type": "ImageService1" + } + ], + "width": 2724, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ad4cb063-f777-4af1-a91e-8c208e20f7b3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dffb737e-47e2-469a-b684-45e81700094c" + } + ] + }, + { + "height": 4652, + "label": { + "@none": [ + "15r" + ] + }, + "width": 3069, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d4cb58a9-8b5a-4fee-afbf-797ebd1b9acf", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9fb26577-681e-464a-9d5c-4f71f82163a4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d4cb58a9-8b5a-4fee-afbf-797ebd1b9acf", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4652, + "label": { + "@none": [ + "15r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9fb26577-681e-464a-9d5c-4f71f82163a4/", + "type": "ImageService1" + } + ], + "width": 3069, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9fb26577-681e-464a-9d5c-4f71f82163a4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e130fe00-d148-4700-97b7-7c0db33b28b8" + } + ] + }, + { + "height": 4060, + "label": { + "@none": [ + "15v" + ] + }, + "width": 2753, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b45c3088-7062-4df8-8587-7d8b8da5ae9f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b0384604-8e39-4b01-b75c-e15dfc1f47a1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b45c3088-7062-4df8-8587-7d8b8da5ae9f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4060, + "label": { + "@none": [ + "15v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b0384604-8e39-4b01-b75c-e15dfc1f47a1/", + "type": "ImageService1" + } + ], + "width": 2753, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b0384604-8e39-4b01-b75c-e15dfc1f47a1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bc549d8-3492-4f16-9f2e-42afd5d90c49" + } + ] + }, + { + "height": 4614, + "label": { + "@none": [ + "16r" + ] + }, + "width": 3102, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a9567b70-5ded-4869-8f1d-aa842bdf133c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/09055fd5-d9ea-4820-a8d1-17cab7c06763", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a9567b70-5ded-4869-8f1d-aa842bdf133c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4614, + "label": { + "@none": [ + "16r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/09055fd5-d9ea-4820-a8d1-17cab7c06763/", + "type": "ImageService1" + } + ], + "width": 3102, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/09055fd5-d9ea-4820-a8d1-17cab7c06763/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c04ac8ac-79c7-4f7d-b6b2-f3092efe89fc" + } + ] + }, + { + "height": 4056, + "label": { + "@none": [ + "16v" + ] + }, + "width": 2773, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a7fade6d-5661-4739-bfeb-10e70a521f62", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/81c1f271-3e1c-4cec-87ff-c5f97fb99b86", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a7fade6d-5661-4739-bfeb-10e70a521f62", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4056, + "label": { + "@none": [ + "16v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/81c1f271-3e1c-4cec-87ff-c5f97fb99b86/", + "type": "ImageService1" + } + ], + "width": 2773, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/81c1f271-3e1c-4cec-87ff-c5f97fb99b86/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f9146f97-efda-4875-8c69-0343ddc65b7e" + } + ] + }, + { + "height": 4609, + "label": { + "@none": [ + "17r" + ] + }, + "width": 3126, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/53875476-8f20-4486-9f6c-33d39bbab76d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/764ddf87-5e42-414a-8b8a-4fc4876a907f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/53875476-8f20-4486-9f6c-33d39bbab76d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4609, + "label": { + "@none": [ + "17r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/764ddf87-5e42-414a-8b8a-4fc4876a907f/", + "type": "ImageService1" + } + ], + "width": 3126, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/764ddf87-5e42-414a-8b8a-4fc4876a907f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8abfb5c-eddb-4705-8b68-d2f1668dffc2" + } + ] + }, + { + "height": 4084, + "label": { + "@none": [ + "17v" + ] + }, + "width": 2757, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2cb656ef-be26-48ad-8047-2f299f8b518c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a7ee88f6-e4a2-48f6-8a4f-3690f0b83dd7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2cb656ef-be26-48ad-8047-2f299f8b518c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4084, + "label": { + "@none": [ + "17v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a7ee88f6-e4a2-48f6-8a4f-3690f0b83dd7/", + "type": "ImageService1" + } + ], + "width": 2757, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a7ee88f6-e4a2-48f6-8a4f-3690f0b83dd7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e368bbf-4be3-4a7e-9f46-d7cd5ed30622" + } + ] + }, + { + "height": 4605, + "label": { + "@none": [ + "18r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c4335d30-8d07-4921-bfd8-10604fd69fd3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/76c92bc4-fb1f-4198-905c-5474d6b023f2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c4335d30-8d07-4921-bfd8-10604fd69fd3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4605, + "label": { + "@none": [ + "18r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/76c92bc4-fb1f-4198-905c-5474d6b023f2/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/76c92bc4-fb1f-4198-905c-5474d6b023f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e95c35dd-3f4e-4b1d-8483-9e4ca0fff19f" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "18v" + ] + }, + "width": 2725, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7848f0d2-00f4-42bf-8016-4dd67d3c05a6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a254c275-85eb-41c2-986d-4d1f03f3e5f9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7848f0d2-00f4-42bf-8016-4dd67d3c05a6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "18v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a254c275-85eb-41c2-986d-4d1f03f3e5f9/", + "type": "ImageService1" + } + ], + "width": 2725, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a254c275-85eb-41c2-986d-4d1f03f3e5f9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6cf8a0f-0d5b-4cd1-8466-08b91d0672c4" + } + ] + }, + { + "height": 4615, + "label": { + "@none": [ + "19r" + ] + }, + "width": 2978, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2abe28b3-0ab8-4307-9a7f-1656d326ea60", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/87c969ce-b796-421e-8aaf-cae26b3bca08", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2abe28b3-0ab8-4307-9a7f-1656d326ea60", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4615, + "label": { + "@none": [ + "19r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/87c969ce-b796-421e-8aaf-cae26b3bca08/", + "type": "ImageService1" + } + ], + "width": 2978, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/87c969ce-b796-421e-8aaf-cae26b3bca08/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e168e6c-e3fe-4e6c-baa4-93651f3e6d2c" + } + ] + }, + { + "height": 4097, + "label": { + "@none": [ + "19v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d034e2b9-415f-4aee-9d4d-bcba59fd6476", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/414f8718-24b6-46e3-9d61-a9b70e799c7a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d034e2b9-415f-4aee-9d4d-bcba59fd6476", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4097, + "label": { + "@none": [ + "19v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/414f8718-24b6-46e3-9d61-a9b70e799c7a/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/414f8718-24b6-46e3-9d61-a9b70e799c7a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58eb1dad-27a3-4774-9699-f7a57a585726" + } + ] + }, + { + "height": 4579, + "label": { + "@none": [ + "20r" + ] + }, + "width": 3052, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ed80a4c1-35d1-4dfb-85c3-15b1274f321d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0f9c0325-79d2-4e1d-b5b1-a94035a1cff0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ed80a4c1-35d1-4dfb-85c3-15b1274f321d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4579, + "label": { + "@none": [ + "20r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0f9c0325-79d2-4e1d-b5b1-a94035a1cff0/", + "type": "ImageService1" + } + ], + "width": 3052, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0f9c0325-79d2-4e1d-b5b1-a94035a1cff0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f427911e-02b9-41eb-acd6-593aeb3e381a" + } + ] + }, + { + "height": 4089, + "label": { + "@none": [ + "20v" + ] + }, + "width": 2697, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b3f8bc98-a044-47ce-a2fb-db56adcac244", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c8e4d61b-dc32-4ca1-87f5-d9b12dc1a533", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b3f8bc98-a044-47ce-a2fb-db56adcac244", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4089, + "label": { + "@none": [ + "20v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c8e4d61b-dc32-4ca1-87f5-d9b12dc1a533/", + "type": "ImageService1" + } + ], + "width": 2697, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c8e4d61b-dc32-4ca1-87f5-d9b12dc1a533/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d501bed2-530f-4908-bec0-182b696708f8" + } + ] + }, + { + "height": 4621, + "label": { + "@none": [ + "21r" + ] + }, + "width": 3019, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/734a2ad8-4aa9-4b2d-b90c-d2360e692d90", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ccb11167-c62e-405a-a55e-fac50b6e2c4e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/734a2ad8-4aa9-4b2d-b90c-d2360e692d90", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4621, + "label": { + "@none": [ + "21r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ccb11167-c62e-405a-a55e-fac50b6e2c4e/", + "type": "ImageService1" + } + ], + "width": 3019, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ccb11167-c62e-405a-a55e-fac50b6e2c4e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53362851-87bf-456a-badf-cda967a34c27" + } + ] + }, + { + "height": 4089, + "label": { + "@none": [ + "21v" + ] + }, + "width": 2672, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6a2a7e50-931b-414b-98e4-90cd7a31e875", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dde46824-43b6-4659-9463-2ba660503312", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6a2a7e50-931b-414b-98e4-90cd7a31e875", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4089, + "label": { + "@none": [ + "21v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dde46824-43b6-4659-9463-2ba660503312/", + "type": "ImageService1" + } + ], + "width": 2672, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dde46824-43b6-4659-9463-2ba660503312/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58919a7d-b017-4326-867d-ae7607ab03ba" + } + ] + }, + { + "height": 4612, + "label": { + "@none": [ + "22r" + ] + }, + "width": 3019, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/89e05127-263c-4607-ba5b-78f64ace061b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b25ca442-1b0b-4f63-a6bd-4c6b421f359c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/89e05127-263c-4607-ba5b-78f64ace061b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4612, + "label": { + "@none": [ + "22r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b25ca442-1b0b-4f63-a6bd-4c6b421f359c/", + "type": "ImageService1" + } + ], + "width": 3019, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b25ca442-1b0b-4f63-a6bd-4c6b421f359c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/497d3118-a405-4e23-b472-a9ca66e90005" + } + ] + }, + { + "height": 4127, + "label": { + "@none": [ + "22v" + ] + }, + "width": 2754, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b25ef3ac-2e15-4982-ada0-490afdeaa6a6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/531f13bb-520f-464c-b9ed-6343c10a6e17", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b25ef3ac-2e15-4982-ada0-490afdeaa6a6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4127, + "label": { + "@none": [ + "22v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/531f13bb-520f-464c-b9ed-6343c10a6e17/", + "type": "ImageService1" + } + ], + "width": 2754, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/531f13bb-520f-464c-b9ed-6343c10a6e17/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7428cf0-8415-48c4-9057-55a497e5f985" + } + ] + }, + { + "height": 4602, + "label": { + "@none": [ + "23r" + ] + }, + "width": 3043, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ae915386-2882-4215-8737-66dac0999a93", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ef8e92db-6dd5-4314-884d-94a80cbda87a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ae915386-2882-4215-8737-66dac0999a93", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4602, + "label": { + "@none": [ + "23r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ef8e92db-6dd5-4314-884d-94a80cbda87a/", + "type": "ImageService1" + } + ], + "width": 3043, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ef8e92db-6dd5-4314-884d-94a80cbda87a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e695179-7d50-4539-90f9-168219fa5965" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "23v" + ] + }, + "width": 2748, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/35410476-da03-4d42-ae76-0caf1a41cf1b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/380d8e4a-6fe3-467a-929c-4fc343a58074", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/35410476-da03-4d42-ae76-0caf1a41cf1b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "23v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/380d8e4a-6fe3-467a-929c-4fc343a58074/", + "type": "ImageService1" + } + ], + "width": 2748, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/380d8e4a-6fe3-467a-929c-4fc343a58074/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69f42e79-1154-477f-bec8-ee675f59051e" + } + ] + }, + { + "height": 4606, + "label": { + "@none": [ + "24r" + ] + }, + "width": 3087, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f7c2cbc4-46b6-4b60-83a1-2b65edafd0f7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b90dd44d-62c1-4d52-b6fc-884abc062922", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f7c2cbc4-46b6-4b60-83a1-2b65edafd0f7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4606, + "label": { + "@none": [ + "24r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b90dd44d-62c1-4d52-b6fc-884abc062922/", + "type": "ImageService1" + } + ], + "width": 3087, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b90dd44d-62c1-4d52-b6fc-884abc062922/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1be0d5a1-55d8-4559-b233-889b74ce552d" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "24v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4e163fff-0b86-4f7b-979f-7dc0bf09ff71", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0268a649-0754-462f-a053-7640907477ed", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4e163fff-0b86-4f7b-979f-7dc0bf09ff71", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "24v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0268a649-0754-462f-a053-7640907477ed/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0268a649-0754-462f-a053-7640907477ed/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f0a21dd-9716-4f96-aa44-a5fee4c0a49a" + } + ] + }, + { + "height": 4613, + "label": { + "@none": [ + "25r" + ] + }, + "width": 3054, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c10269eb-76c6-4438-adb6-22f609e90e64", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/80d96a01-5989-43db-a470-ab97d39fe629", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c10269eb-76c6-4438-adb6-22f609e90e64", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4613, + "label": { + "@none": [ + "25r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/80d96a01-5989-43db-a470-ab97d39fe629/", + "type": "ImageService1" + } + ], + "width": 3054, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/80d96a01-5989-43db-a470-ab97d39fe629/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e6bb76a-2c89-40fb-b8f4-aa62e33e1d7c" + } + ] + }, + { + "height": 4106, + "label": { + "@none": [ + "25v" + ] + }, + "width": 2739, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cc7c7c1d-e544-476c-8fb8-26770e7df89f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dbae596d-14d7-40fe-9aa1-c6eee87eb37e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cc7c7c1d-e544-476c-8fb8-26770e7df89f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4106, + "label": { + "@none": [ + "25v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dbae596d-14d7-40fe-9aa1-c6eee87eb37e/", + "type": "ImageService1" + } + ], + "width": 2739, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dbae596d-14d7-40fe-9aa1-c6eee87eb37e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e1ff8e0-ac9b-42ec-8ce1-890c8f3b5ba9" + } + ] + }, + { + "height": 4613, + "label": { + "@none": [ + "26r" + ] + }, + "width": 3064, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/17000274-e76c-43f9-928f-b4947a086e6e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/80dba3be-530f-4db5-b01b-85f9c0fd0721", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/17000274-e76c-43f9-928f-b4947a086e6e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4613, + "label": { + "@none": [ + "26r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/80dba3be-530f-4db5-b01b-85f9c0fd0721/", + "type": "ImageService1" + } + ], + "width": 3064, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/80dba3be-530f-4db5-b01b-85f9c0fd0721/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1586d79-e894-40dd-8614-3139eb0a75f6" + } + ] + }, + { + "height": 4106, + "label": { + "@none": [ + "26v" + ] + }, + "width": 2739, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a6b6ee73-0ebb-42f6-b8bc-d61836ac4012", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/34798f74-b7d4-4fba-be73-1d1aea5264da", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a6b6ee73-0ebb-42f6-b8bc-d61836ac4012", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4106, + "label": { + "@none": [ + "26v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/34798f74-b7d4-4fba-be73-1d1aea5264da/", + "type": "ImageService1" + } + ], + "width": 2739, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/34798f74-b7d4-4fba-be73-1d1aea5264da/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f984559-454c-49ce-926c-b0ce9d84ac81" + } + ] + }, + { + "height": 4628, + "label": { + "@none": [ + "27r" + ] + }, + "width": 3040, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/60d69a54-7a9f-4a08-8e9b-6242f4c88240", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9a0d59eb-f140-4628-8864-b88f9ef7e8b4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/60d69a54-7a9f-4a08-8e9b-6242f4c88240", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4628, + "label": { + "@none": [ + "27r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9a0d59eb-f140-4628-8864-b88f9ef7e8b4/", + "type": "ImageService1" + } + ], + "width": 3040, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9a0d59eb-f140-4628-8864-b88f9ef7e8b4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32f0681e-dcd7-47c8-914d-b085dc8eaa12" + } + ] + }, + { + "height": 4087, + "label": { + "@none": [ + "27v" + ] + }, + "width": 2734, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2be6bcd2-f4e5-4bc1-a147-47d368c02e04", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b2545a2f-4de7-40d1-b69a-83c70323c780", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2be6bcd2-f4e5-4bc1-a147-47d368c02e04", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4087, + "label": { + "@none": [ + "27v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b2545a2f-4de7-40d1-b69a-83c70323c780/", + "type": "ImageService1" + } + ], + "width": 2734, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b2545a2f-4de7-40d1-b69a-83c70323c780/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/21a61f90-89dc-4ca3-858f-f6b2cf21f82c" + } + ] + }, + { + "height": 4604, + "label": { + "@none": [ + "28r" + ] + }, + "width": 3054, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e3481b9d-0c32-4439-9ca1-2bd53fe8358e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c7ff9f62-4554-43d5-b672-5cf58f7d98e1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e3481b9d-0c32-4439-9ca1-2bd53fe8358e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4604, + "label": { + "@none": [ + "28r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c7ff9f62-4554-43d5-b672-5cf58f7d98e1/", + "type": "ImageService1" + } + ], + "width": 3054, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c7ff9f62-4554-43d5-b672-5cf58f7d98e1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/662500b3-2cd5-42e6-95aa-18f7c63d7ff3" + } + ] + }, + { + "height": 4097, + "label": { + "@none": [ + "28v" + ] + }, + "width": 2701, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/590fe1f2-7797-4271-8bf5-ee69d000a70e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/12c3427a-d039-41c5-b143-540f7a17a092", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/590fe1f2-7797-4271-8bf5-ee69d000a70e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4097, + "label": { + "@none": [ + "28v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/12c3427a-d039-41c5-b143-540f7a17a092/", + "type": "ImageService1" + } + ], + "width": 2701, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/12c3427a-d039-41c5-b143-540f7a17a092/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/517184f9-22cb-4a70-9389-aa5833c01005" + } + ] + }, + { + "height": 4609, + "label": { + "@none": [ + "29r" + ] + }, + "width": 3040, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8bc1b1bb-63c4-4917-8ac2-bccc8b3815fb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ae262145-5d52-4596-a68f-0ee73af1de19", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8bc1b1bb-63c4-4917-8ac2-bccc8b3815fb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4609, + "label": { + "@none": [ + "29r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ae262145-5d52-4596-a68f-0ee73af1de19/", + "type": "ImageService1" + } + ], + "width": 3040, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ae262145-5d52-4596-a68f-0ee73af1de19/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb795099-4203-41d8-a754-b8ab5a5fbc89" + } + ] + }, + { + "height": 4070, + "label": { + "@none": [ + "29v" + ] + }, + "width": 2672, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/935f471d-377b-464e-b040-c7899b26d2a9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dc9b1c87-b3c1-4247-b117-01515c8bfbfe", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/935f471d-377b-464e-b040-c7899b26d2a9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4070, + "label": { + "@none": [ + "29v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dc9b1c87-b3c1-4247-b117-01515c8bfbfe/", + "type": "ImageService1" + } + ], + "width": 2672, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dc9b1c87-b3c1-4247-b117-01515c8bfbfe/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36791717-96ce-465d-85e1-6c044e6fbd1d" + } + ] + }, + { + "height": 4613, + "label": { + "@none": [ + "30r" + ] + }, + "width": 3045, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d8539f54-142e-416c-9cc6-9dcb9a092002", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dc85f125-24eb-4a5e-b01b-27188eb06e81", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d8539f54-142e-416c-9cc6-9dcb9a092002", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4613, + "label": { + "@none": [ + "30r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dc85f125-24eb-4a5e-b01b-27188eb06e81/", + "type": "ImageService1" + } + ], + "width": 3045, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dc85f125-24eb-4a5e-b01b-27188eb06e81/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94aa0e20-ff4d-4eb8-a6b0-fce7d26dadc7" + } + ] + }, + { + "height": 4087, + "label": { + "@none": [ + "30v" + ] + }, + "width": 2761, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2a5a6a82-a817-4f24-99cf-a8a3414ad621", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/06e5dff9-3e86-4e71-a07f-c675217b4a3f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2a5a6a82-a817-4f24-99cf-a8a3414ad621", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4087, + "label": { + "@none": [ + "30v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/06e5dff9-3e86-4e71-a07f-c675217b4a3f/", + "type": "ImageService1" + } + ], + "width": 2761, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/06e5dff9-3e86-4e71-a07f-c675217b4a3f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/523400a1-d183-4193-8df2-6960fa0c5e50" + } + ] + }, + { + "height": 4623, + "label": { + "@none": [ + "31r" + ] + }, + "width": 3083, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0028d3b7-42fe-41aa-ac84-1cf144d2b847", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c6be41d2-a840-4dd7-b037-e1122e10b0bf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0028d3b7-42fe-41aa-ac84-1cf144d2b847", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4623, + "label": { + "@none": [ + "31r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c6be41d2-a840-4dd7-b037-e1122e10b0bf/", + "type": "ImageService1" + } + ], + "width": 3083, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c6be41d2-a840-4dd7-b037-e1122e10b0bf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b3902006-b229-4d9d-aa59-519a423dfbe7" + } + ] + }, + { + "height": 4097, + "label": { + "@none": [ + "31v" + ] + }, + "width": 2706, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2c6f0369-4ab7-4b20-8ec7-f0ec4b295270", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6e33c00c-6ac9-4d74-9e62-6ad534d1931f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2c6f0369-4ab7-4b20-8ec7-f0ec4b295270", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4097, + "label": { + "@none": [ + "31v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6e33c00c-6ac9-4d74-9e62-6ad534d1931f/", + "type": "ImageService1" + } + ], + "width": 2706, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6e33c00c-6ac9-4d74-9e62-6ad534d1931f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bde9a06a-f628-46cb-9224-4dee2f18429c" + } + ] + }, + { + "height": 4642, + "label": { + "@none": [ + "32r" + ] + }, + "width": 3073, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/89f1af93-5ea1-4181-b24c-05e51f0b31fa", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/68a9367c-909b-4d2e-a006-710749108b1c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/89f1af93-5ea1-4181-b24c-05e51f0b31fa", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4642, + "label": { + "@none": [ + "32r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/68a9367c-909b-4d2e-a006-710749108b1c/", + "type": "ImageService1" + } + ], + "width": 3073, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/68a9367c-909b-4d2e-a006-710749108b1c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d6222ee-8940-459d-900d-053403ba6fff" + } + ] + }, + { + "height": 4102, + "label": { + "@none": [ + "32v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/52d9ee3a-3433-493c-a9be-13d4e5fc16ae", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/93756f58-4ec3-4b90-b437-db563ff4551a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/52d9ee3a-3433-493c-a9be-13d4e5fc16ae", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4102, + "label": { + "@none": [ + "32v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/93756f58-4ec3-4b90-b437-db563ff4551a/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/93756f58-4ec3-4b90-b437-db563ff4551a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8197876-f809-4609-81d8-1236a36d72dd" + } + ] + }, + { + "height": 4589, + "label": { + "@none": [ + "33r" + ] + }, + "width": 3073, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/29ff2350-e4bc-4061-b5dc-1ec4fe51b259", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a289fb8c-9d46-45d7-9c02-e80a3b1ecfe6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/29ff2350-e4bc-4061-b5dc-1ec4fe51b259", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4589, + "label": { + "@none": [ + "33r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a289fb8c-9d46-45d7-9c02-e80a3b1ecfe6/", + "type": "ImageService1" + } + ], + "width": 3073, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a289fb8c-9d46-45d7-9c02-e80a3b1ecfe6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dc48c44f-f835-4228-82ef-4deac2c73cb3" + } + ] + }, + { + "height": 4101, + "label": { + "@none": [ + "33v" + ] + }, + "width": 2711, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9ef8537f-c4a1-415a-b2b7-3940892a9f1b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/af241a22-275c-4c44-bc68-a90d2d96a033", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9ef8537f-c4a1-415a-b2b7-3940892a9f1b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4101, + "label": { + "@none": [ + "33v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/af241a22-275c-4c44-bc68-a90d2d96a033/", + "type": "ImageService1" + } + ], + "width": 2711, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/af241a22-275c-4c44-bc68-a90d2d96a033/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0a1bb447-b858-47cc-8b4d-e1b32cdb4033" + } + ] + }, + { + "height": 4628, + "label": { + "@none": [ + "34r" + ] + }, + "width": 3049, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f560f395-10ee-4700-9c8f-01b09eddd9c5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/22eb77b6-56e8-4513-98a7-211449e4c62d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f560f395-10ee-4700-9c8f-01b09eddd9c5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4628, + "label": { + "@none": [ + "34r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/22eb77b6-56e8-4513-98a7-211449e4c62d/", + "type": "ImageService1" + } + ], + "width": 3049, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/22eb77b6-56e8-4513-98a7-211449e4c62d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1606f07f-8d48-4b31-9aec-145bbccae67e" + } + ] + }, + { + "height": 4106, + "label": { + "@none": [ + "34v" + ] + }, + "width": 2701, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ec8ba49e-3976-4a78-aa10-860851dcab8b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e3f823c6-b66c-4338-9f6b-e213189021fd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ec8ba49e-3976-4a78-aa10-860851dcab8b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4106, + "label": { + "@none": [ + "34v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e3f823c6-b66c-4338-9f6b-e213189021fd/", + "type": "ImageService1" + } + ], + "width": 2701, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e3f823c6-b66c-4338-9f6b-e213189021fd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8aa760f-d1e2-4553-990d-2c21a8c57613" + } + ] + }, + { + "height": 4614, + "label": { + "@none": [ + "35r" + ] + }, + "width": 3107, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2e764dc7-2dc7-496c-9519-ec34c76e8765", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/631b2cbf-6eea-4594-a085-81a8222045bd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2e764dc7-2dc7-496c-9519-ec34c76e8765", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4614, + "label": { + "@none": [ + "35r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/631b2cbf-6eea-4594-a085-81a8222045bd/", + "type": "ImageService1" + } + ], + "width": 3107, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/631b2cbf-6eea-4594-a085-81a8222045bd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/562434b9-bb4d-4c2b-8dd2-6c4d8a156a2c" + } + ] + }, + { + "height": 4089, + "label": { + "@none": [ + "35v" + ] + }, + "width": 2717, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b986c9e9-289a-4595-9644-ede22efbf7bc", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/06fe8d88-9883-4224-b3f3-a79edd735795", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b986c9e9-289a-4595-9644-ede22efbf7bc", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4089, + "label": { + "@none": [ + "35v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/06fe8d88-9883-4224-b3f3-a79edd735795/", + "type": "ImageService1" + } + ], + "width": 2717, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/06fe8d88-9883-4224-b3f3-a79edd735795/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a4b9f56-d248-44f9-9022-f0b8608c7c9c" + } + ] + }, + { + "height": 4600, + "label": { + "@none": [ + "36r" + ] + }, + "width": 3107, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a57bb850-7c05-440c-a4fa-515441bab09d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8004ff84-f87e-4906-9ab5-a4d54b037589", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a57bb850-7c05-440c-a4fa-515441bab09d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4600, + "label": { + "@none": [ + "36r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8004ff84-f87e-4906-9ab5-a4d54b037589/", + "type": "ImageService1" + } + ], + "width": 3107, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8004ff84-f87e-4906-9ab5-a4d54b037589/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37868f09-64c9-4d7e-b87e-53b53bb9261e" + } + ] + }, + { + "height": 4109, + "label": { + "@none": [ + "36v" + ] + }, + "width": 2731, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bd34a4d4-f376-4c04-a2d1-0465bfab30fc", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b83c69e5-cf41-401e-9262-452bbf73ced6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bd34a4d4-f376-4c04-a2d1-0465bfab30fc", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4109, + "label": { + "@none": [ + "36v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b83c69e5-cf41-401e-9262-452bbf73ced6/", + "type": "ImageService1" + } + ], + "width": 2731, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b83c69e5-cf41-401e-9262-452bbf73ced6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b355ae4-ac38-4e4c-8c46-f8f7cc28fea8" + } + ] + }, + { + "height": 4642, + "label": { + "@none": [ + "37r" + ] + }, + "width": 3097, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3a65d95c-6439-420d-8c41-81781dbd7f29", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0ad10eba-4eeb-4b5d-9853-20443adaa46d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3a65d95c-6439-420d-8c41-81781dbd7f29", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4642, + "label": { + "@none": [ + "37r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0ad10eba-4eeb-4b5d-9853-20443adaa46d/", + "type": "ImageService1" + } + ], + "width": 3097, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0ad10eba-4eeb-4b5d-9853-20443adaa46d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ec23d075-41bf-47af-934a-7d0a2e4a5480" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "37v" + ] + }, + "width": 2737, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cf33aac3-dc32-49f1-b8cb-baa972e07578", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/76cbddd4-1b05-4ee6-a6bd-0a8e4e78cb41", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cf33aac3-dc32-49f1-b8cb-baa972e07578", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "37v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/76cbddd4-1b05-4ee6-a6bd-0a8e4e78cb41/", + "type": "ImageService1" + } + ], + "width": 2737, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/76cbddd4-1b05-4ee6-a6bd-0a8e4e78cb41/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fc4fe94-8f8a-48de-ae2b-b4610f87d1c2" + } + ] + }, + { + "height": 4595, + "label": { + "@none": [ + "38r" + ] + }, + "width": 3131, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e1e02786-26df-4c94-addc-38cbf9f088a4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4be24c76-e01b-4680-a6b0-097b5b3d8a3f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e1e02786-26df-4c94-addc-38cbf9f088a4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4595, + "label": { + "@none": [ + "38r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4be24c76-e01b-4680-a6b0-097b5b3d8a3f/", + "type": "ImageService1" + } + ], + "width": 3131, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4be24c76-e01b-4680-a6b0-097b5b3d8a3f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea21b9a9-c53d-42f9-a89f-845673184024" + } + ] + }, + { + "height": 4094, + "label": { + "@none": [ + "38v" + ] + }, + "width": 2751, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/766e8aa6-c85d-4528-9837-8c3000c5c65d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/615bcc3f-69d1-4059-aefb-7f96a97dd00f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/766e8aa6-c85d-4528-9837-8c3000c5c65d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4094, + "label": { + "@none": [ + "38v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/615bcc3f-69d1-4059-aefb-7f96a97dd00f/", + "type": "ImageService1" + } + ], + "width": 2751, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/615bcc3f-69d1-4059-aefb-7f96a97dd00f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed583a0a-9181-489e-ae0e-d5c436ac58ce" + } + ] + }, + { + "height": 4608, + "label": { + "@none": [ + "39r" + ] + }, + "width": 3126, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7f562135-8d15-4ad0-b541-abc252350902", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6256571e-a145-4281-9c71-11b1371a1dbf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7f562135-8d15-4ad0-b541-abc252350902", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4608, + "label": { + "@none": [ + "39r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6256571e-a145-4281-9c71-11b1371a1dbf/", + "type": "ImageService1" + } + ], + "width": 3126, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6256571e-a145-4281-9c71-11b1371a1dbf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/174bbcdd-16f5-45f6-a391-d926c66c6d60" + } + ] + }, + { + "height": 4099, + "label": { + "@none": [ + "39v" + ] + }, + "width": 2755, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f3a16388-19db-4385-aeb0-47b198d8e0a1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f0f2ca26-b714-4087-ad00-f5c1bb7e4a84", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f3a16388-19db-4385-aeb0-47b198d8e0a1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4099, + "label": { + "@none": [ + "39v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f0f2ca26-b714-4087-ad00-f5c1bb7e4a84/", + "type": "ImageService1" + } + ], + "width": 2755, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f0f2ca26-b714-4087-ad00-f5c1bb7e4a84/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca87e985-8670-49e4-a679-49c04868b9a2" + } + ] + }, + { + "height": 4547, + "label": { + "@none": [ + "40r" + ] + }, + "width": 3060, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/18a3fbc9-e80c-4d68-8373-819e618b00ea", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/32b4617d-4088-48d3-922a-ae1f14b8adf6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/18a3fbc9-e80c-4d68-8373-819e618b00ea", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4547, + "label": { + "@none": [ + "40r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/32b4617d-4088-48d3-922a-ae1f14b8adf6/", + "type": "ImageService1" + } + ], + "width": 3060, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/32b4617d-4088-48d3-922a-ae1f14b8adf6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/837f47a7-bfd4-400e-95e1-10d9fb3b7199" + } + ] + }, + { + "height": 4125, + "label": { + "@none": [ + "40v" + ] + }, + "width": 2780, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7d21786f-ae96-41dc-aa70-eecd664a915f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3224b687-746a-4486-8d67-dde326c3f8ce", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7d21786f-ae96-41dc-aa70-eecd664a915f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4125, + "label": { + "@none": [ + "40v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3224b687-746a-4486-8d67-dde326c3f8ce/", + "type": "ImageService1" + } + ], + "width": 2780, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3224b687-746a-4486-8d67-dde326c3f8ce/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/324a47b6-2d9c-49f7-b669-be4c22218eb5" + } + ] + }, + { + "height": 4600, + "label": { + "@none": [ + "41r" + ] + }, + "width": 3055, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bc078587-5650-4629-a6a3-661d7b0f6acf", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7405855d-b1dd-4f8f-a33e-8a7eecfa5f2c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bc078587-5650-4629-a6a3-661d7b0f6acf", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4600, + "label": { + "@none": [ + "41r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7405855d-b1dd-4f8f-a33e-8a7eecfa5f2c/", + "type": "ImageService1" + } + ], + "width": 3055, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7405855d-b1dd-4f8f-a33e-8a7eecfa5f2c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/961a85c7-c073-4a9a-a3f3-b7895480bab6" + } + ] + }, + { + "height": 4112, + "label": { + "@none": [ + "41v" + ] + }, + "width": 2730, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/04e921e9-9853-46ce-b948-a928c4361a7c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6fc9fa2a-2fdf-438f-8fb9-c48aa7149e4c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/04e921e9-9853-46ce-b948-a928c4361a7c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4112, + "label": { + "@none": [ + "41v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6fc9fa2a-2fdf-438f-8fb9-c48aa7149e4c/", + "type": "ImageService1" + } + ], + "width": 2730, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6fc9fa2a-2fdf-438f-8fb9-c48aa7149e4c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a35cd57e-e764-478b-818d-086c18849a75" + } + ] + }, + { + "height": 4629, + "label": { + "@none": [ + "42r" + ] + }, + "width": 3082, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2344e76c-5087-4370-b94c-b8798f7e0d10", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/67694ede-c312-41a9-a41c-24fe53192c75", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2344e76c-5087-4370-b94c-b8798f7e0d10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4629, + "label": { + "@none": [ + "42r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/67694ede-c312-41a9-a41c-24fe53192c75/", + "type": "ImageService1" + } + ], + "width": 3082, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/67694ede-c312-41a9-a41c-24fe53192c75/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee804600-912b-4654-9898-289d2fe7035b" + } + ] + }, + { + "height": 4126, + "label": { + "@none": [ + "42v" + ] + }, + "width": 2753, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7171cc13-8fe1-478e-a00c-8a738c767975", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/91350e7f-5bcc-438f-84ad-589912860846", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7171cc13-8fe1-478e-a00c-8a738c767975", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4126, + "label": { + "@none": [ + "42v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/91350e7f-5bcc-438f-84ad-589912860846/", + "type": "ImageService1" + } + ], + "width": 2753, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/91350e7f-5bcc-438f-84ad-589912860846/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4ed1d42-5ecb-4427-8e35-4b1b7c8f1eca" + } + ] + }, + { + "height": 4575, + "label": { + "@none": [ + "43r" + ] + }, + "width": 3059, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bb9c84c7-9198-439c-a4a5-cd891a472f77", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/85e9c4b0-ff14-4f40-9556-06f1965ba7d5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bb9c84c7-9198-439c-a4a5-cd891a472f77", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4575, + "label": { + "@none": [ + "43r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/85e9c4b0-ff14-4f40-9556-06f1965ba7d5/", + "type": "ImageService1" + } + ], + "width": 3059, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/85e9c4b0-ff14-4f40-9556-06f1965ba7d5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/429b0ad7-181a-4fe0-a6a6-44647ddfbb29" + } + ] + }, + { + "height": 4088, + "label": { + "@none": [ + "43v" + ] + }, + "width": 2787, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5f0e779e-64f3-4207-9a42-325ca6f086e2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5d762b46-b898-4cf8-b993-f8d7e8010e46", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5f0e779e-64f3-4207-9a42-325ca6f086e2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4088, + "label": { + "@none": [ + "43v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5d762b46-b898-4cf8-b993-f8d7e8010e46/", + "type": "ImageService1" + } + ], + "width": 2787, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5d762b46-b898-4cf8-b993-f8d7e8010e46/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72b5df88-cd7c-49e1-b069-03ac38a1de9f" + } + ] + }, + { + "height": 4594, + "label": { + "@none": [ + "44r" + ] + }, + "width": 3054, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d650f079-42c3-4289-b322-c2af8ffe913b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/86f8b118-0bbe-4e3e-bbd3-b75e94d382e0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d650f079-42c3-4289-b322-c2af8ffe913b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4594, + "label": { + "@none": [ + "44r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/86f8b118-0bbe-4e3e-bbd3-b75e94d382e0/", + "type": "ImageService1" + } + ], + "width": 3054, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/86f8b118-0bbe-4e3e-bbd3-b75e94d382e0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03b365e6-367a-40ca-bb72-fffe0903a1ec" + } + ] + }, + { + "height": 4150, + "label": { + "@none": [ + "44v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/22fabac2-0349-4bc0-bf64-281ae6eb12d6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b1dcb324-8d98-43d1-9b31-8f2d212aeaba", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/22fabac2-0349-4bc0-bf64-281ae6eb12d6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4150, + "label": { + "@none": [ + "44v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b1dcb324-8d98-43d1-9b31-8f2d212aeaba/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b1dcb324-8d98-43d1-9b31-8f2d212aeaba/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52ef6257-79d3-4a65-8ad5-d05641f6df1f" + } + ] + }, + { + "height": 4570, + "label": { + "@none": [ + "45r" + ] + }, + "width": 3068, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1528ce23-45ac-4648-8dfa-96c931071dd0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/40c8f5fb-de0c-4a51-830d-08384b0c994c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1528ce23-45ac-4648-8dfa-96c931071dd0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4570, + "label": { + "@none": [ + "45r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/40c8f5fb-de0c-4a51-830d-08384b0c994c/", + "type": "ImageService1" + } + ], + "width": 3068, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/40c8f5fb-de0c-4a51-830d-08384b0c994c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1142511e-2423-4ef8-9c39-85d0e7cbfea2" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "45v" + ] + }, + "width": 2777, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c1bd80b6-cb9d-48ab-a5ac-129195ad34bf", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/937b7a32-4a4e-4414-a87b-fab5c8aa9c7f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c1bd80b6-cb9d-48ab-a5ac-129195ad34bf", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "45v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/937b7a32-4a4e-4414-a87b-fab5c8aa9c7f/", + "type": "ImageService1" + } + ], + "width": 2777, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/937b7a32-4a4e-4414-a87b-fab5c8aa9c7f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/269d65d2-389f-4037-8dde-c0a131cfc516" + } + ] + }, + { + "height": 4623, + "label": { + "@none": [ + "46r" + ] + }, + "width": 3021, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/82589282-3bfc-44d5-a9da-791d86e19c3b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6c5e8cd4-94ce-4f7c-944a-f46c9c30057f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/82589282-3bfc-44d5-a9da-791d86e19c3b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4623, + "label": { + "@none": [ + "46r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6c5e8cd4-94ce-4f7c-944a-f46c9c30057f/", + "type": "ImageService1" + } + ], + "width": 3021, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6c5e8cd4-94ce-4f7c-944a-f46c9c30057f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/695b4b2b-f43d-4245-a942-a3fca60d62e0" + } + ] + }, + { + "height": 4126, + "label": { + "@none": [ + "46v" + ] + }, + "width": 2744, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/02cfb875-c8fc-41eb-afdf-975853b9051e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9f313329-b581-4870-bf21-d70657af84a5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/02cfb875-c8fc-41eb-afdf-975853b9051e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4126, + "label": { + "@none": [ + "46v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9f313329-b581-4870-bf21-d70657af84a5/", + "type": "ImageService1" + } + ], + "width": 2744, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9f313329-b581-4870-bf21-d70657af84a5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef7b8715-ce82-4b90-a924-9cdc3a3a60af" + } + ] + }, + { + "height": 4585, + "label": { + "@none": [ + "47r" + ] + }, + "width": 3050, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4dd87833-782a-4ec1-a7d8-02247070b7a7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/78d79401-1e84-4ef2-ae30-08ea7e97e393", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4dd87833-782a-4ec1-a7d8-02247070b7a7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4585, + "label": { + "@none": [ + "47r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/78d79401-1e84-4ef2-ae30-08ea7e97e393/", + "type": "ImageService1" + } + ], + "width": 3050, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/78d79401-1e84-4ef2-ae30-08ea7e97e393/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/266936e8-5607-488a-9d71-2146b591493a" + } + ] + }, + { + "height": 4135, + "label": { + "@none": [ + "47v" + ] + }, + "width": 2725, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b00c7a73-925c-4077-a774-6833c71ea42d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a9b9d66d-c9be-4f43-9c36-57601d6a6baa", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b00c7a73-925c-4077-a774-6833c71ea42d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4135, + "label": { + "@none": [ + "47v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a9b9d66d-c9be-4f43-9c36-57601d6a6baa/", + "type": "ImageService1" + } + ], + "width": 2725, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a9b9d66d-c9be-4f43-9c36-57601d6a6baa/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb05c30a-d1c8-4cc7-929e-73c632fc4fd1" + } + ] + }, + { + "height": 4585, + "label": { + "@none": [ + "48r" + ] + }, + "width": 3083, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/08c9c3d4-d075-4ff7-8f92-d88cb90f96c4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e8b3b641-898d-4482-998c-e867cd720eb0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/08c9c3d4-d075-4ff7-8f92-d88cb90f96c4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4585, + "label": { + "@none": [ + "48r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e8b3b641-898d-4482-998c-e867cd720eb0/", + "type": "ImageService1" + } + ], + "width": 3083, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e8b3b641-898d-4482-998c-e867cd720eb0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1db303ba-bee3-46bb-b7c8-2cde8ad5b469" + } + ] + }, + { + "height": 4137, + "label": { + "@none": [ + "48v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7d8b1d13-e9fe-469d-a989-d9eadfa94329", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5e2a3c0d-4222-43b5-bb69-b901ee397600", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7d8b1d13-e9fe-469d-a989-d9eadfa94329", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4137, + "label": { + "@none": [ + "48v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5e2a3c0d-4222-43b5-bb69-b901ee397600/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5e2a3c0d-4222-43b5-bb69-b901ee397600/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2119491-8044-4045-985c-0da427f73330" + } + ] + }, + { + "height": 4592, + "label": { + "@none": [ + "49r" + ] + }, + "width": 3050, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ed965c3a-092b-4e90-b98c-342ce0296098", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b5f4105f-d8f9-44e8-b6e9-2cf7ff792864", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ed965c3a-092b-4e90-b98c-342ce0296098", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4592, + "label": { + "@none": [ + "49r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b5f4105f-d8f9-44e8-b6e9-2cf7ff792864/", + "type": "ImageService1" + } + ], + "width": 3050, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b5f4105f-d8f9-44e8-b6e9-2cf7ff792864/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a6320724-bd72-4c47-b544-89cf66ace654" + } + ] + }, + { + "height": 4141, + "label": { + "@none": [ + "49v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8574160e-a9b6-4d00-ad2a-ba1f00a2da6b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6d944b36-44c7-42b7-aed6-1e6cdde66f45", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8574160e-a9b6-4d00-ad2a-ba1f00a2da6b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4141, + "label": { + "@none": [ + "49v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6d944b36-44c7-42b7-aed6-1e6cdde66f45/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6d944b36-44c7-42b7-aed6-1e6cdde66f45/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d37223e1-3e05-45f9-9ede-0d38d3dde756" + } + ] + }, + { + "height": 4589, + "label": { + "@none": [ + "50r" + ] + }, + "width": 3040, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1fcfb9f2-f196-4592-b4b0-e77400feee5a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/18a1d9f1-3f5f-4952-9ccb-60665cc99e57", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1fcfb9f2-f196-4592-b4b0-e77400feee5a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4589, + "label": { + "@none": [ + "50r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/18a1d9f1-3f5f-4952-9ccb-60665cc99e57/", + "type": "ImageService1" + } + ], + "width": 3040, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/18a1d9f1-3f5f-4952-9ccb-60665cc99e57/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8d438ab-af47-474a-8a33-9a12f467beab" + } + ] + }, + { + "height": 4124, + "label": { + "@none": [ + "50v" + ] + }, + "width": 2728, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4a5635da-51df-4963-a752-45150be95d14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c51f424f-742f-43ea-9e4c-ba10aa9ea2dc", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4a5635da-51df-4963-a752-45150be95d14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4124, + "label": { + "@none": [ + "50v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c51f424f-742f-43ea-9e4c-ba10aa9ea2dc/", + "type": "ImageService1" + } + ], + "width": 2728, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c51f424f-742f-43ea-9e4c-ba10aa9ea2dc/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34ebacb0-3855-4f58-b2d2-5ab38c0e4185" + } + ] + }, + { + "height": 4566, + "label": { + "@none": [ + "51r" + ] + }, + "width": 2997, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0058de20-cc39-466d-9697-c7c97afc18aa", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1df0e844-d18d-49e0-9813-db2c4f60d756", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0058de20-cc39-466d-9697-c7c97afc18aa", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4566, + "label": { + "@none": [ + "51r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1df0e844-d18d-49e0-9813-db2c4f60d756/", + "type": "ImageService1" + } + ], + "width": 2997, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1df0e844-d18d-49e0-9813-db2c4f60d756/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c53ad1a8-4862-4de0-b3d0-cda24b13622b" + } + ] + }, + { + "height": 4080, + "label": { + "@none": [ + "51v" + ] + }, + "width": 2692, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1bb6fd79-b98d-484d-a524-05b82dd41a62", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c9f3fe0a-58fb-4628-94a2-05f1113dded1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1bb6fd79-b98d-484d-a524-05b82dd41a62", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4080, + "label": { + "@none": [ + "51v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c9f3fe0a-58fb-4628-94a2-05f1113dded1/", + "type": "ImageService1" + } + ], + "width": 2692, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c9f3fe0a-58fb-4628-94a2-05f1113dded1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8533a13b-68c2-4204-bc46-9437631901ba" + } + ] + }, + { + "height": 4585, + "label": { + "@none": [ + "52r" + ] + }, + "width": 2993, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d4914ba4-846d-44ad-9cea-493efa0dc655", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/38fb6550-7104-4216-bcf3-4263198faa3b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d4914ba4-846d-44ad-9cea-493efa0dc655", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4585, + "label": { + "@none": [ + "52r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/38fb6550-7104-4216-bcf3-4263198faa3b/", + "type": "ImageService1" + } + ], + "width": 2993, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/38fb6550-7104-4216-bcf3-4263198faa3b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee1cc96f-e626-49eb-b332-2a7f4d1d7f76" + } + ] + }, + { + "height": 4140, + "label": { + "@none": [ + "52v" + ] + }, + "width": 2721, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/94e68335-50bc-48b3-bfd6-9487d12d7725", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5e3c9e77-7897-4692-b8f6-1c156bdae3a5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/94e68335-50bc-48b3-bfd6-9487d12d7725", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4140, + "label": { + "@none": [ + "52v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5e3c9e77-7897-4692-b8f6-1c156bdae3a5/", + "type": "ImageService1" + } + ], + "width": 2721, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5e3c9e77-7897-4692-b8f6-1c156bdae3a5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb107541-491d-431a-9e49-3b0d90128a86" + } + ] + }, + { + "height": 4580, + "label": { + "@none": [ + "53r" + ] + }, + "width": 3022, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0cae9d48-4ea9-42ba-ac26-e233362f08a1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/65a62be3-7827-45d9-951c-7dda15bbcded", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0cae9d48-4ea9-42ba-ac26-e233362f08a1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4580, + "label": { + "@none": [ + "53r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/65a62be3-7827-45d9-951c-7dda15bbcded/", + "type": "ImageService1" + } + ], + "width": 3022, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/65a62be3-7827-45d9-951c-7dda15bbcded/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e64a5b13-4329-4bb1-8a9a-e27fdec24bb8" + } + ] + }, + { + "height": 4159, + "label": { + "@none": [ + "53v" + ] + }, + "width": 2772, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/fe5a74bb-36a0-48a2-a1cc-702b4da46775", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a96a3b91-ee52-4016-ba6c-f56f4f413e76", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/fe5a74bb-36a0-48a2-a1cc-702b4da46775", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4159, + "label": { + "@none": [ + "53v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a96a3b91-ee52-4016-ba6c-f56f4f413e76/", + "type": "ImageService1" + } + ], + "width": 2772, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a96a3b91-ee52-4016-ba6c-f56f4f413e76/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/887c74d1-78b6-4331-a227-8ee72b446ca0" + } + ] + }, + { + "height": 4503, + "label": { + "@none": [ + "54r" + ] + }, + "width": 3059, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/26d7585d-35f7-448e-9ccb-569104aceeb6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f0ddeeaf-1d9b-4bef-9e95-701b9b868531", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/26d7585d-35f7-448e-9ccb-569104aceeb6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4503, + "label": { + "@none": [ + "54r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f0ddeeaf-1d9b-4bef-9e95-701b9b868531/", + "type": "ImageService1" + } + ], + "width": 3059, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f0ddeeaf-1d9b-4bef-9e95-701b9b868531/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/28b38f86-5377-4a6a-908d-8075feb4bcc8" + } + ] + }, + { + "height": 4164, + "label": { + "@none": [ + "54v" + ] + }, + "width": 2720, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/93cdac5e-15ac-4a6e-841e-8828248f008b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b0b29977-8170-4dcf-8499-d8937646e30e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/93cdac5e-15ac-4a6e-841e-8828248f008b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4164, + "label": { + "@none": [ + "54v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b0b29977-8170-4dcf-8499-d8937646e30e/", + "type": "ImageService1" + } + ], + "width": 2720, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b0b29977-8170-4dcf-8499-d8937646e30e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7df322f-cdbf-4cd4-9c0f-b8c0c1bb46d9" + } + ] + }, + { + "height": 4566, + "label": { + "@none": [ + "55r" + ] + }, + "width": 3012, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/dec35c41-54b2-46a8-b141-c5129626e0f6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e7e4f62a-35e0-49fe-b8be-5b32123b3bd2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/dec35c41-54b2-46a8-b141-c5129626e0f6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4566, + "label": { + "@none": [ + "55r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e7e4f62a-35e0-49fe-b8be-5b32123b3bd2/", + "type": "ImageService1" + } + ], + "width": 3012, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e7e4f62a-35e0-49fe-b8be-5b32123b3bd2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04dc6766-ac2e-4abf-a368-42ea4bd3333e" + } + ] + }, + { + "height": 4145, + "label": { + "@none": [ + "55v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/60c5d9df-2697-4a13-a690-a6fac8d996f3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7e0c9c85-12e7-4042-b881-9ccfc965b322", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/60c5d9df-2697-4a13-a690-a6fac8d996f3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4145, + "label": { + "@none": [ + "55v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7e0c9c85-12e7-4042-b881-9ccfc965b322/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7e0c9c85-12e7-4042-b881-9ccfc965b322/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a72cebb8-83e2-4bec-90f2-3a57d6462457" + } + ] + }, + { + "height": 4494, + "label": { + "@none": [ + "56r" + ] + }, + "width": 3017, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c4d07c51-cf4f-4070-a0e3-cde10b7929f9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e22fb5a2-5064-451c-b6c1-356bfdafb929", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c4d07c51-cf4f-4070-a0e3-cde10b7929f9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4494, + "label": { + "@none": [ + "56r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e22fb5a2-5064-451c-b6c1-356bfdafb929/", + "type": "ImageService1" + } + ], + "width": 3017, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e22fb5a2-5064-451c-b6c1-356bfdafb929/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0694f31-89a2-4b71-a5bc-b1c9d04603b1" + } + ] + }, + { + "height": 4156, + "label": { + "@none": [ + "56v" + ] + }, + "width": 2796, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0dd2110c-bcc6-472d-91a3-e834f9165efb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/db668867-4907-449a-bd40-4d0ffc73b189", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0dd2110c-bcc6-472d-91a3-e834f9165efb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4156, + "label": { + "@none": [ + "56v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/db668867-4907-449a-bd40-4d0ffc73b189/", + "type": "ImageService1" + } + ], + "width": 2796, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/db668867-4907-449a-bd40-4d0ffc73b189/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98c597a3-b84b-43c9-9f89-3ce38d2614b9" + } + ] + }, + { + "height": 4532, + "label": { + "@none": [ + "57r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b9d68a9-4474-45bc-aa96-b39060291d4d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2c68c417-5694-481a-a860-95c09de35060", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b9d68a9-4474-45bc-aa96-b39060291d4d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4532, + "label": { + "@none": [ + "57r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2c68c417-5694-481a-a860-95c09de35060/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2c68c417-5694-481a-a860-95c09de35060/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d592e8fb-637a-4963-bfaa-2e6c88e3fc2e" + } + ] + }, + { + "height": 4135, + "label": { + "@none": [ + "57v" + ] + }, + "width": 2767, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ef3b5e43-dff1-45af-8297-867bc84deec4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/93e4916c-a16e-45bd-bc1d-369886976601", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ef3b5e43-dff1-45af-8297-867bc84deec4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4135, + "label": { + "@none": [ + "57v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/93e4916c-a16e-45bd-bc1d-369886976601/", + "type": "ImageService1" + } + ], + "width": 2767, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/93e4916c-a16e-45bd-bc1d-369886976601/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bda07db4-a3d1-4cf5-b7a4-dcf5cd7df437" + } + ] + }, + { + "height": 4570, + "label": { + "@none": [ + "58r" + ] + }, + "width": 3026, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4e4d1d4b-1d99-4c3d-9444-3efc92cdadc2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/13a610d2-22e6-4bb4-a1d4-caad3bbf8b57", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4e4d1d4b-1d99-4c3d-9444-3efc92cdadc2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4570, + "label": { + "@none": [ + "58r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/13a610d2-22e6-4bb4-a1d4-caad3bbf8b57/", + "type": "ImageService1" + } + ], + "width": 3026, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/13a610d2-22e6-4bb4-a1d4-caad3bbf8b57/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1978761-6aa2-4b4e-af07-90b564d46082" + } + ] + }, + { + "height": 4117, + "label": { + "@none": [ + "58v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ca036e22-dc7b-4f26-8564-5ffda1056af3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/46a9090d-bca7-4791-aacc-725017b7ea95", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ca036e22-dc7b-4f26-8564-5ffda1056af3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4117, + "label": { + "@none": [ + "58v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/46a9090d-bca7-4791-aacc-725017b7ea95/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/46a9090d-bca7-4791-aacc-725017b7ea95/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/843634c8-525f-4c00-814d-43f779d0ac3d" + } + ] + }, + { + "height": 4578, + "label": { + "@none": [ + "59r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ba5784d9-707f-471d-ace0-e122f04cc6c5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ec6d4f97-1ccc-42e4-a624-f9f351ca4836", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ba5784d9-707f-471d-ace0-e122f04cc6c5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4578, + "label": { + "@none": [ + "59r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ec6d4f97-1ccc-42e4-a624-f9f351ca4836/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ec6d4f97-1ccc-42e4-a624-f9f351ca4836/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/115b9dd2-647b-4631-8add-0bda1d62b7ba" + } + ] + }, + { + "height": 4135, + "label": { + "@none": [ + "59v" + ] + }, + "width": 2748, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e3714ae0-ea88-4474-b8e1-93c1100448d9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c6afad87-2659-43fb-b2b0-88623f56fdc9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e3714ae0-ea88-4474-b8e1-93c1100448d9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4135, + "label": { + "@none": [ + "59v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c6afad87-2659-43fb-b2b0-88623f56fdc9/", + "type": "ImageService1" + } + ], + "width": 2748, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c6afad87-2659-43fb-b2b0-88623f56fdc9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b884281-7fa8-471a-9076-ee47e09236e9" + } + ] + }, + { + "height": 4584, + "label": { + "@none": [ + "60r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/23ecdea3-7ef5-4fa1-8ce9-db00fb27f38b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3b163db9-47d2-46e2-8899-f2c825fa8d87", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/23ecdea3-7ef5-4fa1-8ce9-db00fb27f38b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4584, + "label": { + "@none": [ + "60r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3b163db9-47d2-46e2-8899-f2c825fa8d87/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3b163db9-47d2-46e2-8899-f2c825fa8d87/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf8ce46c-da75-4ae8-a11e-0da5c9655385" + } + ] + }, + { + "height": 4165, + "label": { + "@none": [ + "60v" + ] + }, + "width": 2759, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e51e053c-866f-4cdb-aeca-3839c5167b65", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bdff4722-b3e2-40cb-89c6-28b0d9ad676a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e51e053c-866f-4cdb-aeca-3839c5167b65", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4165, + "label": { + "@none": [ + "60v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bdff4722-b3e2-40cb-89c6-28b0d9ad676a/", + "type": "ImageService1" + } + ], + "width": 2759, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bdff4722-b3e2-40cb-89c6-28b0d9ad676a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b256e845-42b2-4b7d-91f0-5bb10b79bba1" + } + ] + }, + { + "height": 4513, + "label": { + "@none": [ + "61r" + ] + }, + "width": 2997, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e8e51623-7364-439a-92c3-7b0da0128dc5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/33b0cecd-8393-4e5c-8eda-ae56f2da466e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e8e51623-7364-439a-92c3-7b0da0128dc5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4513, + "label": { + "@none": [ + "61r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/33b0cecd-8393-4e5c-8eda-ae56f2da466e/", + "type": "ImageService1" + } + ], + "width": 2997, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/33b0cecd-8393-4e5c-8eda-ae56f2da466e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d61de10-891f-4858-9238-ed2fc93f75c2" + } + ] + }, + { + "height": 4174, + "label": { + "@none": [ + "61v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2b1e6796-7407-4f99-af2e-3ad32da19140", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dfb65d31-af4d-4443-b0cf-b620341aedcb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2b1e6796-7407-4f99-af2e-3ad32da19140", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4174, + "label": { + "@none": [ + "61v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dfb65d31-af4d-4443-b0cf-b620341aedcb/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dfb65d31-af4d-4443-b0cf-b620341aedcb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b88b828d-22fe-4ee2-8518-0f90a8f383bd" + } + ] + }, + { + "height": 4537, + "label": { + "@none": [ + "62r" + ] + }, + "width": 3027, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4de76df7-1613-4f5b-b68b-04bd57f0a9c6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/578d4588-a5c7-4a60-a9fa-015ff0d8822f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4de76df7-1613-4f5b-b68b-04bd57f0a9c6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4537, + "label": { + "@none": [ + "62r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/578d4588-a5c7-4a60-a9fa-015ff0d8822f/", + "type": "ImageService1" + } + ], + "width": 3027, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/578d4588-a5c7-4a60-a9fa-015ff0d8822f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08b4519e-ee00-4e45-a984-c458dbec74b6" + } + ] + }, + { + "height": 4154, + "label": { + "@none": [ + "62v" + ] + }, + "width": 2777, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1d3eb66e-0933-4992-a4b2-b3b6a855a83b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cdd5a4b5-77e3-4964-810c-9c06545820fa", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1d3eb66e-0933-4992-a4b2-b3b6a855a83b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4154, + "label": { + "@none": [ + "62v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cdd5a4b5-77e3-4964-810c-9c06545820fa/", + "type": "ImageService1" + } + ], + "width": 2777, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cdd5a4b5-77e3-4964-810c-9c06545820fa/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa24115a-ae50-418b-b607-2194e5048c51" + } + ] + }, + { + "height": 4546, + "label": { + "@none": [ + "63r" + ] + }, + "width": 3002, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b04f174-3de5-4c33-bb97-b254c63203b1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0db1c25c-9183-4cba-a1ec-fa7d973f16f6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b04f174-3de5-4c33-bb97-b254c63203b1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4546, + "label": { + "@none": [ + "63r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0db1c25c-9183-4cba-a1ec-fa7d973f16f6/", + "type": "ImageService1" + } + ], + "width": 3002, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0db1c25c-9183-4cba-a1ec-fa7d973f16f6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1970c413-19a7-4d31-84d9-9274c44eae7d" + } + ] + }, + { + "height": 4145, + "label": { + "@none": [ + "63v" + ] + }, + "width": 2748, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2d426098-fe8c-40ab-836c-34e34598415a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b1493d06-b2c7-4086-b14d-1020b08efec9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2d426098-fe8c-40ab-836c-34e34598415a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4145, + "label": { + "@none": [ + "63v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b1493d06-b2c7-4086-b14d-1020b08efec9/", + "type": "ImageService1" + } + ], + "width": 2748, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b1493d06-b2c7-4086-b14d-1020b08efec9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0de64e95-9dc5-4488-a362-eb0513f8d570" + } + ] + }, + { + "height": 4557, + "label": { + "@none": [ + "64r" + ] + }, + "width": 3017, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b09f7b22-167c-4b9e-8b76-70b057ed36a2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b19a3fd6-30b0-4aca-ae99-0e3898a7cec5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b09f7b22-167c-4b9e-8b76-70b057ed36a2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4557, + "label": { + "@none": [ + "64r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b19a3fd6-30b0-4aca-ae99-0e3898a7cec5/", + "type": "ImageService1" + } + ], + "width": 3017, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b19a3fd6-30b0-4aca-ae99-0e3898a7cec5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2b23a77b-ac3b-4fec-9980-6e5f7162f045" + } + ] + }, + { + "height": 4159, + "label": { + "@none": [ + "64v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/26714d77-7c1e-4522-8ea8-e236dd0c9b6d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1c2c2bd9-bf9b-423c-96bc-ef23b6c5fba7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/26714d77-7c1e-4522-8ea8-e236dd0c9b6d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4159, + "label": { + "@none": [ + "64v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1c2c2bd9-bf9b-423c-96bc-ef23b6c5fba7/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1c2c2bd9-bf9b-423c-96bc-ef23b6c5fba7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df560e4d-36c1-4083-b7f5-c9effc84a1ef" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "65r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/778862a9-2f6b-4ecb-b9b8-f86059bd8e19", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/280f34bf-0a98-4271-942c-461b54aefc80", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/778862a9-2f6b-4ecb-b9b8-f86059bd8e19", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "65r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/280f34bf-0a98-4271-942c-461b54aefc80/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/280f34bf-0a98-4271-942c-461b54aefc80/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d344d20-748b-4c38-a83d-495cd911a97d" + } + ] + }, + { + "height": 4150, + "label": { + "@none": [ + "65v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/57fc9da2-0334-4fdf-8f24-4c98d9d6b06b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/153938a8-abaa-4f3b-96ec-02773c838b8d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/57fc9da2-0334-4fdf-8f24-4c98d9d6b06b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4150, + "label": { + "@none": [ + "65v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/153938a8-abaa-4f3b-96ec-02773c838b8d/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/153938a8-abaa-4f3b-96ec-02773c838b8d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3331e4b1-98a3-47e4-9c35-52fb3f1586fe" + } + ] + }, + { + "height": 4557, + "label": { + "@none": [ + "66r" + ] + }, + "width": 2983, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/66cf66ad-4275-4458-a166-3dfb79487796", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3d56b6fc-3940-4d2d-bac3-730b97932684", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/66cf66ad-4275-4458-a166-3dfb79487796", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4557, + "label": { + "@none": [ + "66r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3d56b6fc-3940-4d2d-bac3-730b97932684/", + "type": "ImageService1" + } + ], + "width": 2983, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3d56b6fc-3940-4d2d-bac3-730b97932684/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5020dcf5-b85e-4815-a244-68af398b44c3" + } + ] + }, + { + "height": 4187, + "label": { + "@none": [ + "66v" + ] + }, + "width": 2729, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/62618bfd-ace9-43ed-a87f-d47fd2d549a9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/612c0b98-01d8-4a0d-b8df-c62234e1b51a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/62618bfd-ace9-43ed-a87f-d47fd2d549a9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4187, + "label": { + "@none": [ + "66v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/612c0b98-01d8-4a0d-b8df-c62234e1b51a/", + "type": "ImageService1" + } + ], + "width": 2729, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/612c0b98-01d8-4a0d-b8df-c62234e1b51a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3fcd6b4-36fc-4e39-9b81-b53584306f76" + } + ] + }, + { + "height": 4565, + "label": { + "@none": [ + "67r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1e1e8a26-be99-4c3b-9fb1-e1a3ad974ef4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/80a402f2-4fa8-4f82-9950-3c18effe15ba", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1e1e8a26-be99-4c3b-9fb1-e1a3ad974ef4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4565, + "label": { + "@none": [ + "67r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/80a402f2-4fa8-4f82-9950-3c18effe15ba/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/80a402f2-4fa8-4f82-9950-3c18effe15ba/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d860542-9c06-4e0a-8299-7a04f33cbf84" + } + ] + }, + { + "height": 4169, + "label": { + "@none": [ + "67v" + ] + }, + "width": 2725, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4877a58b-9276-4423-88e3-09bede27be14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/452ec42e-91fb-4d3d-b66f-a8392b7de4f6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4877a58b-9276-4423-88e3-09bede27be14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4169, + "label": { + "@none": [ + "67v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/452ec42e-91fb-4d3d-b66f-a8392b7de4f6/", + "type": "ImageService1" + } + ], + "width": 2725, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/452ec42e-91fb-4d3d-b66f-a8392b7de4f6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/655fb7a7-4a91-4f2d-add3-464e1b41051a" + } + ] + }, + { + "height": 4585, + "label": { + "@none": [ + "68r" + ] + }, + "width": 3017, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/02898b91-9dd2-4327-aa0f-3a4bb4743e8e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e4f091d6-6e15-44b9-a7a6-7af903b08687", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/02898b91-9dd2-4327-aa0f-3a4bb4743e8e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4585, + "label": { + "@none": [ + "68r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e4f091d6-6e15-44b9-a7a6-7af903b08687/", + "type": "ImageService1" + } + ], + "width": 3017, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e4f091d6-6e15-44b9-a7a6-7af903b08687/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5c81e9d-0172-4857-9d51-9b29f960bd33" + } + ] + }, + { + "height": 4192, + "label": { + "@none": [ + "68v" + ] + }, + "width": 2731, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/10d1044b-19b4-4017-b60a-b991cd08ed2b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c1f7a06b-c547-42ba-a608-76eda239f2ff", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/10d1044b-19b4-4017-b60a-b991cd08ed2b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4192, + "label": { + "@none": [ + "68v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c1f7a06b-c547-42ba-a608-76eda239f2ff/", + "type": "ImageService1" + } + ], + "width": 2731, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c1f7a06b-c547-42ba-a608-76eda239f2ff/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31f28a3f-8168-4326-8530-3571674a6468" + } + ] + }, + { + "height": 4593, + "label": { + "@none": [ + "69r" + ] + }, + "width": 2990, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1f1c58fa-59f2-4ca8-8f22-82a1a2f0db14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a4d47767-39e6-497b-a1d9-076760e636f8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1f1c58fa-59f2-4ca8-8f22-82a1a2f0db14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4593, + "label": { + "@none": [ + "69r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a4d47767-39e6-497b-a1d9-076760e636f8/", + "type": "ImageService1" + } + ], + "width": 2990, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a4d47767-39e6-497b-a1d9-076760e636f8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5125e869-8082-482b-a8e7-e3bfb02e70cd" + } + ] + }, + { + "height": 4169, + "label": { + "@none": [ + "69v" + ] + }, + "width": 2701, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0e6b88c0-b53c-4971-86dc-f3ee8b962173", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/edc8ddf1-9cb8-4596-afd1-68d437ffa200", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0e6b88c0-b53c-4971-86dc-f3ee8b962173", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4169, + "label": { + "@none": [ + "69v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/edc8ddf1-9cb8-4596-afd1-68d437ffa200/", + "type": "ImageService1" + } + ], + "width": 2701, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/edc8ddf1-9cb8-4596-afd1-68d437ffa200/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72bf11bc-99d5-4aca-87bb-2708f647ad5b" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "70r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5587beb0-bb48-4d59-af87-862c054a884e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/22f6803e-5a7b-498e-b3e7-016f3c05fe71", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5587beb0-bb48-4d59-af87-862c054a884e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "70r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/22f6803e-5a7b-498e-b3e7-016f3c05fe71/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/22f6803e-5a7b-498e-b3e7-016f3c05fe71/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8791d033-f13a-4292-94a2-dddb7c5f09f4" + } + ] + }, + { + "height": 4183, + "label": { + "@none": [ + "70v" + ] + }, + "width": 2745, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f8dac05f-1d64-43a1-82cc-59a44972e392", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6f0242c0-a9ee-4510-97ca-c293436b1adf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f8dac05f-1d64-43a1-82cc-59a44972e392", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4183, + "label": { + "@none": [ + "70v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6f0242c0-a9ee-4510-97ca-c293436b1adf/", + "type": "ImageService1" + } + ], + "width": 2745, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6f0242c0-a9ee-4510-97ca-c293436b1adf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0304fe5b-7d69-4157-acf2-4f98cb246607" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "71r" + ] + }, + "width": 2978, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7cab9028-ff34-4b43-9176-c9235c0120e3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/65e5f441-93ee-4011-b280-e8b3baffc6b4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7cab9028-ff34-4b43-9176-c9235c0120e3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "71r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/65e5f441-93ee-4011-b280-e8b3baffc6b4/", + "type": "ImageService1" + } + ], + "width": 2978, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/65e5f441-93ee-4011-b280-e8b3baffc6b4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35d6c01a-dfba-4c15-9c7e-afe48c3be9ff" + } + ] + }, + { + "height": 4179, + "label": { + "@none": [ + "71v" + ] + }, + "width": 2720, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c18e9699-0126-45b3-9ed7-a9dd744c969f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b79782c0-856b-487b-a77d-98432aee8ea4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c18e9699-0126-45b3-9ed7-a9dd744c969f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4179, + "label": { + "@none": [ + "71v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b79782c0-856b-487b-a77d-98432aee8ea4/", + "type": "ImageService1" + } + ], + "width": 2720, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b79782c0-856b-487b-a77d-98432aee8ea4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19c6bdd2-88fc-472e-8b8b-4a32853bbfce" + } + ] + }, + { + "height": 4523, + "label": { + "@none": [ + "72r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7c7fcec4-12dd-4db5-b4c8-6f6f7b7458f6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/df439a8e-e1b5-4a70-abc3-978db64c99f5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7c7fcec4-12dd-4db5-b4c8-6f6f7b7458f6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4523, + "label": { + "@none": [ + "72r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/df439a8e-e1b5-4a70-abc3-978db64c99f5/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/df439a8e-e1b5-4a70-abc3-978db64c99f5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86c68f2d-f787-493e-9328-56a3dc509f72" + } + ] + }, + { + "height": 4168, + "label": { + "@none": [ + "72v" + ] + }, + "width": 2754, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b37b640e-e4f3-4755-ade1-9b04c535517e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e084501d-81f8-41ff-ba40-1a1afc99ba08", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b37b640e-e4f3-4755-ade1-9b04c535517e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4168, + "label": { + "@none": [ + "72v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e084501d-81f8-41ff-ba40-1a1afc99ba08/", + "type": "ImageService1" + } + ], + "width": 2754, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e084501d-81f8-41ff-ba40-1a1afc99ba08/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8fef3a9-dc92-47e3-b3e0-b3042a2de786" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "73r" + ] + }, + "width": 2987, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5608d03b-4d1f-4d04-a4f4-32b426363a62", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8be61ea0-3c96-4fda-a430-65b0ae2dc41d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5608d03b-4d1f-4d04-a4f4-32b426363a62", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "73r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8be61ea0-3c96-4fda-a430-65b0ae2dc41d/", + "type": "ImageService1" + } + ], + "width": 2987, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8be61ea0-3c96-4fda-a430-65b0ae2dc41d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11400bce-158a-4ec4-9260-74238ca49885" + } + ] + }, + { + "height": 4174, + "label": { + "@none": [ + "73v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3dfd306d-022a-44f5-ad37-5184839f4a26", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/843b707f-19b2-4181-8175-b572290f2b6a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3dfd306d-022a-44f5-ad37-5184839f4a26", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4174, + "label": { + "@none": [ + "73v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/843b707f-19b2-4181-8175-b572290f2b6a/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/843b707f-19b2-4181-8175-b572290f2b6a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6db87638-9cfd-4d77-b38f-3655669eaa7e" + } + ] + }, + { + "height": 4509, + "label": { + "@none": [ + "74r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8ecf16dd-0612-4ae9-8362-ead545865f34", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4307adb1-0750-4fb2-94bd-62f8b43553c9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8ecf16dd-0612-4ae9-8362-ead545865f34", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4509, + "label": { + "@none": [ + "74r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4307adb1-0750-4fb2-94bd-62f8b43553c9/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4307adb1-0750-4fb2-94bd-62f8b43553c9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/119593af-6638-4af8-ae01-6d5c96a59972" + } + ] + }, + { + "height": 4198, + "label": { + "@none": [ + "74v" + ] + }, + "width": 2721, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/70ea870e-c549-4b2a-9244-e1e8d40723e9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a0fb8b8d-3f21-4227-902d-06d197dc9b29", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/70ea870e-c549-4b2a-9244-e1e8d40723e9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4198, + "label": { + "@none": [ + "74v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a0fb8b8d-3f21-4227-902d-06d197dc9b29/", + "type": "ImageService1" + } + ], + "width": 2721, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a0fb8b8d-3f21-4227-902d-06d197dc9b29/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44a8ab7f-d292-4c8e-98f2-f6902b22ee1c" + } + ] + }, + { + "height": 4490, + "label": { + "@none": [ + "75r" + ] + }, + "width": 2978, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e9286ff8-0540-4073-9ecd-674ea4b7df0d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a04a4c77-fd64-419a-b99d-72b3918755a6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e9286ff8-0540-4073-9ecd-674ea4b7df0d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4490, + "label": { + "@none": [ + "75r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a04a4c77-fd64-419a-b99d-72b3918755a6/", + "type": "ImageService1" + } + ], + "width": 2978, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a04a4c77-fd64-419a-b99d-72b3918755a6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/501f3815-245a-49ec-a047-99cf876cb474" + } + ] + }, + { + "height": 4164, + "label": { + "@none": [ + "75v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ae96fa64-c3d0-4a9d-b278-119331fe4ed6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/516d8122-6575-4264-b6a0-dcce71736129", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ae96fa64-c3d0-4a9d-b278-119331fe4ed6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4164, + "label": { + "@none": [ + "75v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/516d8122-6575-4264-b6a0-dcce71736129/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/516d8122-6575-4264-b6a0-dcce71736129/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/db95888b-7788-416e-9e46-8c1347d7d448" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "76r" + ] + }, + "width": 2941, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4816f984-4824-44bc-85b3-f581c7f53a8a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f6d42888-3b4f-4a8b-81dc-2b66133bd121", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4816f984-4824-44bc-85b3-f581c7f53a8a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "76r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f6d42888-3b4f-4a8b-81dc-2b66133bd121/", + "type": "ImageService1" + } + ], + "width": 2941, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f6d42888-3b4f-4a8b-81dc-2b66133bd121/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7706231-1fb0-46c6-96c3-ff27a6969a93" + } + ] + }, + { + "height": 4231, + "label": { + "@none": [ + "76v" + ] + }, + "width": 2773, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b4e2cc11-0029-4038-945b-82c74b59301a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/be8e92f4-3372-4c91-8bca-c27dd19a7957", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b4e2cc11-0029-4038-945b-82c74b59301a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4231, + "label": { + "@none": [ + "76v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/be8e92f4-3372-4c91-8bca-c27dd19a7957/", + "type": "ImageService1" + } + ], + "width": 2773, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/be8e92f4-3372-4c91-8bca-c27dd19a7957/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aecaca66-0f90-4431-a22c-30517a8392c2" + } + ] + }, + { + "height": 4470, + "label": { + "@none": [ + "77r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/201bef0b-3792-4520-839a-f152d13ca1db", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5f367b91-01c7-47e8-8f69-ef1bd7a88874", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/201bef0b-3792-4520-839a-f152d13ca1db", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4470, + "label": { + "@none": [ + "77r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5f367b91-01c7-47e8-8f69-ef1bd7a88874/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5f367b91-01c7-47e8-8f69-ef1bd7a88874/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65c28f93-e000-4fdd-9d9e-13b374db27dc" + } + ] + }, + { + "height": 4184, + "label": { + "@none": [ + "77v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3d6b2fce-023d-48c9-b8cf-5836d04e1b8b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/38c4e321-80e2-4c44-bbec-5e91a7063b14", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3d6b2fce-023d-48c9-b8cf-5836d04e1b8b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4184, + "label": { + "@none": [ + "77v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/38c4e321-80e2-4c44-bbec-5e91a7063b14/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/38c4e321-80e2-4c44-bbec-5e91a7063b14/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b959aef5-8891-4081-a75f-a74988757302" + } + ] + }, + { + "height": 4522, + "label": { + "@none": [ + "78r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/377f0962-d264-4fb4-8c83-933b069d0df6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/33c0a7eb-8056-4a7c-a43e-ccdd459e1680", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/377f0962-d264-4fb4-8c83-933b069d0df6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4522, + "label": { + "@none": [ + "78r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/33c0a7eb-8056-4a7c-a43e-ccdd459e1680/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/33c0a7eb-8056-4a7c-a43e-ccdd459e1680/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e21f8d70-4bda-45c4-8e60-9d94aefb2667" + } + ] + }, + { + "height": 4189, + "label": { + "@none": [ + "78v" + ] + }, + "width": 2792, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f2e5ba6c-596c-4f31-a19d-7c5bcce76f97", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4016192c-b74d-4590-a154-6a04c38dfdd9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f2e5ba6c-596c-4f31-a19d-7c5bcce76f97", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4189, + "label": { + "@none": [ + "78v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4016192c-b74d-4590-a154-6a04c38dfdd9/", + "type": "ImageService1" + } + ], + "width": 2792, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4016192c-b74d-4590-a154-6a04c38dfdd9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0f22edb-7b3a-42ff-b992-a0bc0376e056" + } + ] + }, + { + "height": 4480, + "label": { + "@none": [ + "79r" + ] + }, + "width": 3027, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/880f801e-d16b-4b8e-9b42-14c79007fc20", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2bfb29a5-7731-4db7-9049-b9e73be3a36b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/880f801e-d16b-4b8e-9b42-14c79007fc20", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4480, + "label": { + "@none": [ + "79r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2bfb29a5-7731-4db7-9049-b9e73be3a36b/", + "type": "ImageService1" + } + ], + "width": 3027, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2bfb29a5-7731-4db7-9049-b9e73be3a36b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18650734-900a-4df8-bc7d-3952c448d123" + } + ] + }, + { + "height": 4175, + "label": { + "@none": [ + "79v" + ] + }, + "width": 2777, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/95ee93a5-6668-41d3-ba23-d866ea10c675", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8d91de4b-7359-4123-a38c-a9db93e80c28", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/95ee93a5-6668-41d3-ba23-d866ea10c675", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4175, + "label": { + "@none": [ + "79v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8d91de4b-7359-4123-a38c-a9db93e80c28/", + "type": "ImageService1" + } + ], + "width": 2777, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8d91de4b-7359-4123-a38c-a9db93e80c28/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/036c561d-d815-4783-bbaa-efaccc5b58d0" + } + ] + }, + { + "height": 4519, + "label": { + "@none": [ + "80r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c43cfa1f-ebdf-4078-afbb-3c891bcf0995", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ac4f7557-456e-4aa0-a4bf-0669f399ffa7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c43cfa1f-ebdf-4078-afbb-3c891bcf0995", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4519, + "label": { + "@none": [ + "80r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ac4f7557-456e-4aa0-a4bf-0669f399ffa7/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ac4f7557-456e-4aa0-a4bf-0669f399ffa7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0bd2a4d8-1a2b-492f-9027-36b0a2b02e35" + } + ] + }, + { + "height": 4190, + "label": { + "@none": [ + "80v" + ] + }, + "width": 2736, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2ed1b1bb-cc6b-4506-bc29-1d07a8ebcdca", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f2120118-c633-4661-99ab-93ca74e0d0c9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2ed1b1bb-cc6b-4506-bc29-1d07a8ebcdca", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4190, + "label": { + "@none": [ + "80v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f2120118-c633-4661-99ab-93ca74e0d0c9/", + "type": "ImageService1" + } + ], + "width": 2736, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f2120118-c633-4661-99ab-93ca74e0d0c9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a28f744-3f17-4417-befb-1b6cb9dede87" + } + ] + }, + { + "height": 4442, + "label": { + "@none": [ + "81r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b4659a90-b6ff-4a55-a44a-f5dcfdbf2882", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9a3ee0b5-3f9d-4f8b-bf44-36a02ca1fade", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b4659a90-b6ff-4a55-a44a-f5dcfdbf2882", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4442, + "label": { + "@none": [ + "81r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9a3ee0b5-3f9d-4f8b-bf44-36a02ca1fade/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9a3ee0b5-3f9d-4f8b-bf44-36a02ca1fade/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4519aa26-a405-4a7a-bd28-8cc65faf205b" + } + ] + }, + { + "height": 4199, + "label": { + "@none": [ + "81v" + ] + }, + "width": 2759, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/86513669-f032-4d8d-b0a8-753f583d8552", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dd886e45-3666-4903-812f-e1c54e1725a9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/86513669-f032-4d8d-b0a8-753f583d8552", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4199, + "label": { + "@none": [ + "81v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dd886e45-3666-4903-812f-e1c54e1725a9/", + "type": "ImageService1" + } + ], + "width": 2759, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dd886e45-3666-4903-812f-e1c54e1725a9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a6c4efb3-ad95-4a6b-88f3-bf75bedebb03" + } + ] + }, + { + "height": 4466, + "label": { + "@none": [ + "82r" + ] + }, + "width": 2979, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7b3e58fe-8446-4c60-b4ee-ad3aab1dd5c3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7cb16b01-862c-46b3-af04-b920e543a67f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7b3e58fe-8446-4c60-b4ee-ad3aab1dd5c3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4466, + "label": { + "@none": [ + "82r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7cb16b01-862c-46b3-af04-b920e543a67f/", + "type": "ImageService1" + } + ], + "width": 2979, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7cb16b01-862c-46b3-af04-b920e543a67f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7f27dcd5-b265-4f48-b575-51098dc7ae09" + } + ] + }, + { + "height": 4175, + "label": { + "@none": [ + "82v" + ] + }, + "width": 2744, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2d45662c-c524-436f-a598-688923d7f7ad", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a80c9f13-9d99-498f-a2b8-a79198b429d6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2d45662c-c524-436f-a598-688923d7f7ad", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4175, + "label": { + "@none": [ + "82v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a80c9f13-9d99-498f-a2b8-a79198b429d6/", + "type": "ImageService1" + } + ], + "width": 2744, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a80c9f13-9d99-498f-a2b8-a79198b429d6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe3b1409-42a1-4819-a944-876ac2725578" + } + ] + }, + { + "height": 4486, + "label": { + "@none": [ + "83r" + ] + }, + "width": 2926, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e65d7bfd-74c3-4536-8578-468583f7a979", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/83ceabe4-d4d1-4f06-8927-f21e41ba0102", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e65d7bfd-74c3-4536-8578-468583f7a979", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4486, + "label": { + "@none": [ + "83r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/83ceabe4-d4d1-4f06-8927-f21e41ba0102/", + "type": "ImageService1" + } + ], + "width": 2926, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/83ceabe4-d4d1-4f06-8927-f21e41ba0102/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4311d725-58d0-455c-b701-33c1f0cec4b4" + } + ] + }, + { + "height": 4165, + "label": { + "@none": [ + "83v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/daef16eb-b70a-4e64-bb7c-4aeecd67a29b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7d4e941f-79ce-40ed-afa7-b49f6ca8298d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/daef16eb-b70a-4e64-bb7c-4aeecd67a29b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4165, + "label": { + "@none": [ + "83v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7d4e941f-79ce-40ed-afa7-b49f6ca8298d/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7d4e941f-79ce-40ed-afa7-b49f6ca8298d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43b27823-1a94-4f7c-a418-b3d203ea739e" + } + ] + }, + { + "height": 4518, + "label": { + "@none": [ + "84r" + ] + }, + "width": 2949, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3ed0daf5-d48a-4d47-97c2-9fda0bf8f65f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/51eb90ac-5697-4098-8f4d-7bfcbf15c409", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3ed0daf5-d48a-4d47-97c2-9fda0bf8f65f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4518, + "label": { + "@none": [ + "84r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/51eb90ac-5697-4098-8f4d-7bfcbf15c409/", + "type": "ImageService1" + } + ], + "width": 2949, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/51eb90ac-5697-4098-8f4d-7bfcbf15c409/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44cadfd6-5614-44b6-b27b-fddef1af19f3" + } + ] + }, + { + "height": 4189, + "label": { + "@none": [ + "84v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c5e14b37-5b59-4846-a4fe-51772c0693f5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bbac0ba4-1cc3-4cb8-946f-d2d793c26ce1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c5e14b37-5b59-4846-a4fe-51772c0693f5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4189, + "label": { + "@none": [ + "84v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bbac0ba4-1cc3-4cb8-946f-d2d793c26ce1/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bbac0ba4-1cc3-4cb8-946f-d2d793c26ce1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/714ff81e-446d-4f48-b3ea-52fadda84186" + } + ] + }, + { + "height": 4500, + "label": { + "@none": [ + "85r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/dca3638a-c739-416c-9810-3d1c9720bd16", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a7927e19-9f71-4895-969d-610a867587ce", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/dca3638a-c739-416c-9810-3d1c9720bd16", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4500, + "label": { + "@none": [ + "85r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a7927e19-9f71-4895-969d-610a867587ce/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a7927e19-9f71-4895-969d-610a867587ce/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bf17194-98c7-4d4e-aae4-738969267aaa" + } + ] + }, + { + "height": 4212, + "label": { + "@none": [ + "85v" + ] + }, + "width": 2772, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d4733c77-eaed-44bb-8f80-941880f039b4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3bfb2bc2-61df-4187-b984-51b97c99e31b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d4733c77-eaed-44bb-8f80-941880f039b4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4212, + "label": { + "@none": [ + "85v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3bfb2bc2-61df-4187-b984-51b97c99e31b/", + "type": "ImageService1" + } + ], + "width": 2772, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3bfb2bc2-61df-4187-b984-51b97c99e31b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/999a2f48-45c6-4e65-9b2f-e5b291910306" + } + ] + }, + { + "height": 4471, + "label": { + "@none": [ + "86r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4a8880ed-cb9f-4cd3-9372-c3eed99fac3c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/64fdf313-194d-4018-81f7-e3d32bf22c4a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4a8880ed-cb9f-4cd3-9372-c3eed99fac3c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4471, + "label": { + "@none": [ + "86r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/64fdf313-194d-4018-81f7-e3d32bf22c4a/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/64fdf313-194d-4018-81f7-e3d32bf22c4a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/006a385f-49fd-416d-bace-60748c8d05ab" + } + ] + }, + { + "height": 4174, + "label": { + "@none": [ + "86v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4c0823e6-5102-4478-84c7-022f0174bd0e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0fa2b8fe-9f3c-4cdc-a31f-1af2e4ddaba7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4c0823e6-5102-4478-84c7-022f0174bd0e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4174, + "label": { + "@none": [ + "86v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0fa2b8fe-9f3c-4cdc-a31f-1af2e4ddaba7/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0fa2b8fe-9f3c-4cdc-a31f-1af2e4ddaba7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae04d3da-a65c-4413-8570-58500c1d7045" + } + ] + }, + { + "height": 4495, + "label": { + "@none": [ + "87r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6e20982e-25d7-4c48-8eac-d4fed18dd23f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/98083dc5-f636-428a-8678-76926019bcd9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6e20982e-25d7-4c48-8eac-d4fed18dd23f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4495, + "label": { + "@none": [ + "87r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/98083dc5-f636-428a-8678-76926019bcd9/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/98083dc5-f636-428a-8678-76926019bcd9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b2c50d2-1f78-4e48-b928-8c29804b8a99" + } + ] + }, + { + "height": 4132, + "label": { + "@none": [ + "87v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/92cad896-ac24-48ea-926d-ce4863870c42", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fb1a837e-08ab-42a9-9f5f-f61ce1542a05", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/92cad896-ac24-48ea-926d-ce4863870c42", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4132, + "label": { + "@none": [ + "87v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fb1a837e-08ab-42a9-9f5f-f61ce1542a05/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fb1a837e-08ab-42a9-9f5f-f61ce1542a05/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fde60c24-9db0-44e9-95cb-6b953391347d" + } + ] + }, + { + "height": 4490, + "label": { + "@none": [ + "88r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bf5c39c5-d22f-4f6d-963c-4fee383836a3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/eef8d148-ac46-4276-aa72-b27a49882390", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bf5c39c5-d22f-4f6d-963c-4fee383836a3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4490, + "label": { + "@none": [ + "88r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/eef8d148-ac46-4276-aa72-b27a49882390/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/eef8d148-ac46-4276-aa72-b27a49882390/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f620b9dd-80d3-49af-9551-cbeb66ab1d7d" + } + ] + }, + { + "height": 4189, + "label": { + "@none": [ + "88v" + ] + }, + "width": 2778, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c5eb37dc-8446-4cee-a313-88d65f28912a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ef2ba34f-9d2b-46f0-9c07-822b809c97f8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c5eb37dc-8446-4cee-a313-88d65f28912a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4189, + "label": { + "@none": [ + "88v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ef2ba34f-9d2b-46f0-9c07-822b809c97f8/", + "type": "ImageService1" + } + ], + "width": 2778, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ef2ba34f-9d2b-46f0-9c07-822b809c97f8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9433619-9a5b-4f2a-aeb1-b5aaeea1798c" + } + ] + }, + { + "height": 4457, + "label": { + "@none": [ + "89r" + ] + }, + "width": 3043, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/adc161da-dace-404f-a129-5d02ae6ef831", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0f3eacf6-3a22-46e2-9d77-af753ee3f097", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/adc161da-dace-404f-a129-5d02ae6ef831", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4457, + "label": { + "@none": [ + "89r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0f3eacf6-3a22-46e2-9d77-af753ee3f097/", + "type": "ImageService1" + } + ], + "width": 3043, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0f3eacf6-3a22-46e2-9d77-af753ee3f097/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/680d24d4-b510-4567-a980-60f95389f529" + } + ] + }, + { + "height": 4237, + "label": { + "@none": [ + "89v" + ] + }, + "width": 2777, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/05ce306c-cb99-4cea-bff2-f7c8ae07d052", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0b898979-8005-4707-8d62-c308308d1b6c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/05ce306c-cb99-4cea-bff2-f7c8ae07d052", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4237, + "label": { + "@none": [ + "89v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0b898979-8005-4707-8d62-c308308d1b6c/", + "type": "ImageService1" + } + ], + "width": 2777, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0b898979-8005-4707-8d62-c308308d1b6c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f51d8fa-5a61-45e5-a00f-269768dd26ed" + } + ] + }, + { + "height": 4514, + "label": { + "@none": [ + "90r" + ] + }, + "width": 2931, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/70c7143f-3454-455e-ab39-c1e6762b294c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d8bf00a3-ee8a-409f-8a74-0651c250f41a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/70c7143f-3454-455e-ab39-c1e6762b294c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4514, + "label": { + "@none": [ + "90r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d8bf00a3-ee8a-409f-8a74-0651c250f41a/", + "type": "ImageService1" + } + ], + "width": 2931, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d8bf00a3-ee8a-409f-8a74-0651c250f41a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50431705-c93d-4e96-9dc7-cc41944e6b7c" + } + ] + }, + { + "height": 4208, + "label": { + "@none": [ + "90v" + ] + }, + "width": 2691, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/54e1c21a-79ef-4fbb-8758-7e33a301b786", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bb5a5c85-b3ec-40a9-9c5e-2a00ad37cd9f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/54e1c21a-79ef-4fbb-8758-7e33a301b786", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4208, + "label": { + "@none": [ + "90v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bb5a5c85-b3ec-40a9-9c5e-2a00ad37cd9f/", + "type": "ImageService1" + } + ], + "width": 2691, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bb5a5c85-b3ec-40a9-9c5e-2a00ad37cd9f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5aef60eb-287f-4087-8dba-140788ff80c4" + } + ] + }, + { + "height": 4519, + "label": { + "@none": [ + "91r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4ee85d9b-8d26-4518-bb9c-9c11441d3a85", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/21b4226e-de23-432e-ba45-530cdf40ffbb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4ee85d9b-8d26-4518-bb9c-9c11441d3a85", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4519, + "label": { + "@none": [ + "91r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/21b4226e-de23-432e-ba45-530cdf40ffbb/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/21b4226e-de23-432e-ba45-530cdf40ffbb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f20d6c11-dc54-42e3-b5c6-f283472db2b5" + } + ] + }, + { + "height": 4193, + "label": { + "@none": [ + "91v" + ] + }, + "width": 2773, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9f4e682e-8589-4aad-a4a8-4a29e89afb8c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/971ff6f2-7769-4c29-81e0-7e620b28cd67", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9f4e682e-8589-4aad-a4a8-4a29e89afb8c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4193, + "label": { + "@none": [ + "91v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/971ff6f2-7769-4c29-81e0-7e620b28cd67/", + "type": "ImageService1" + } + ], + "width": 2773, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/971ff6f2-7769-4c29-81e0-7e620b28cd67/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2be764a-bbe4-46e5-ae15-a017a7edb2dc" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "92r" + ] + }, + "width": 2983, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c895538a-503a-4f1f-96ea-a908142c0421", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/847f1249-7208-46d2-885c-0960348fef0f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c895538a-503a-4f1f-96ea-a908142c0421", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "92r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/847f1249-7208-46d2-885c-0960348fef0f/", + "type": "ImageService1" + } + ], + "width": 2983, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/847f1249-7208-46d2-885c-0960348fef0f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ade4df01-24c1-488c-ac57-ea1dd402523b" + } + ] + }, + { + "height": 4235, + "label": { + "@none": [ + "92v" + ] + }, + "width": 2768, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/60371730-4fb5-4c67-a7a6-5b9031da00ae", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d9c33c58-6ec2-4b42-90a5-73e146fd6a8c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/60371730-4fb5-4c67-a7a6-5b9031da00ae", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4235, + "label": { + "@none": [ + "92v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d9c33c58-6ec2-4b42-90a5-73e146fd6a8c/", + "type": "ImageService1" + } + ], + "width": 2768, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d9c33c58-6ec2-4b42-90a5-73e146fd6a8c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2b0a65b-d5e2-436e-8032-daf50bea9676" + } + ] + }, + { + "height": 4519, + "label": { + "@none": [ + "93r" + ] + }, + "width": 2974, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d7fba7c1-81b8-4854-af18-4119f0e2f066", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8dfcaba9-7076-4477-813b-ba7248b88a92", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d7fba7c1-81b8-4854-af18-4119f0e2f066", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4519, + "label": { + "@none": [ + "93r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8dfcaba9-7076-4477-813b-ba7248b88a92/", + "type": "ImageService1" + } + ], + "width": 2974, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8dfcaba9-7076-4477-813b-ba7248b88a92/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9aef4f81-769a-4a30-8fb1-43f573137c10" + } + ] + }, + { + "height": 4169, + "label": { + "@none": [ + "93v" + ] + }, + "width": 2768, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8ce16980-93dd-4c95-9196-058ae2a5ddfb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7f36cc79-8850-4603-93c4-bb61b3fec3eb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8ce16980-93dd-4c95-9196-058ae2a5ddfb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4169, + "label": { + "@none": [ + "93v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7f36cc79-8850-4603-93c4-bb61b3fec3eb/", + "type": "ImageService1" + } + ], + "width": 2768, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7f36cc79-8850-4603-93c4-bb61b3fec3eb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44315e44-01fe-4c3e-b5e8-a7c140d90252" + } + ] + }, + { + "height": 4514, + "label": { + "@none": [ + "94r" + ] + }, + "width": 2992, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2bb4379a-87ff-4e95-b09a-9c9b4c8642d0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1300112b-2828-4e71-ac08-c85d62dd048e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2bb4379a-87ff-4e95-b09a-9c9b4c8642d0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4514, + "label": { + "@none": [ + "94r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1300112b-2828-4e71-ac08-c85d62dd048e/", + "type": "ImageService1" + } + ], + "width": 2992, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1300112b-2828-4e71-ac08-c85d62dd048e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f98030b3-3c6e-4967-900c-a8aeff7380b7" + } + ] + }, + { + "height": 4217, + "label": { + "@none": [ + "94v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/977ff8d0-0073-4a83-a032-b5e1e8eb84b8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2babe8a4-93fa-4931-b8e8-7f9c8057be5d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/977ff8d0-0073-4a83-a032-b5e1e8eb84b8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4217, + "label": { + "@none": [ + "94v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2babe8a4-93fa-4931-b8e8-7f9c8057be5d/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2babe8a4-93fa-4931-b8e8-7f9c8057be5d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a4ce50e2-41f7-44a9-9b0b-03e5d38a3a63" + } + ] + }, + { + "height": 4517, + "label": { + "@none": [ + "95r" + ] + }, + "width": 2995, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/179adb85-03ef-44d7-be7a-023a4b154088", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/29e911a9-3a20-4618-8dcc-ce4433497f5a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/179adb85-03ef-44d7-be7a-023a4b154088", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4517, + "label": { + "@none": [ + "95r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/29e911a9-3a20-4618-8dcc-ce4433497f5a/", + "type": "ImageService1" + } + ], + "width": 2995, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/29e911a9-3a20-4618-8dcc-ce4433497f5a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ddc6c21-30cf-458b-a7eb-e02fd6a5e2fd" + } + ] + }, + { + "height": 4197, + "label": { + "@none": [ + "95v" + ] + }, + "width": 2778, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/31c9d0df-be42-48a5-9ca3-0efec9c40a9b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/628ce3c9-72e7-4b30-a994-5268a5f3cf9e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/31c9d0df-be42-48a5-9ca3-0efec9c40a9b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4197, + "label": { + "@none": [ + "95v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/628ce3c9-72e7-4b30-a994-5268a5f3cf9e/", + "type": "ImageService1" + } + ], + "width": 2778, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/628ce3c9-72e7-4b30-a994-5268a5f3cf9e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3b1e886f-c756-4e35-b8a0-25ea8daf21c6" + } + ] + }, + { + "height": 4485, + "label": { + "@none": [ + "96r" + ] + }, + "width": 2963, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/94bd1db1-7e25-4d0d-b565-1f0a6d7b3113", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/05f02d6f-6e22-410f-a140-4b380d7d9ee5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/94bd1db1-7e25-4d0d-b565-1f0a6d7b3113", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4485, + "label": { + "@none": [ + "96r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/05f02d6f-6e22-410f-a140-4b380d7d9ee5/", + "type": "ImageService1" + } + ], + "width": 2963, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/05f02d6f-6e22-410f-a140-4b380d7d9ee5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9baa97b6-f63a-4873-aac2-2081e6bb400c" + } + ] + }, + { + "height": 4221, + "label": { + "@none": [ + "96v" + ] + }, + "width": 2783, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2d16f2fa-adca-4b00-a7e3-27a64956707e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b942bd85-b80e-4861-bf2f-e18d8deb9708", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2d16f2fa-adca-4b00-a7e3-27a64956707e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4221, + "label": { + "@none": [ + "96v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b942bd85-b80e-4861-bf2f-e18d8deb9708/", + "type": "ImageService1" + } + ], + "width": 2783, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b942bd85-b80e-4861-bf2f-e18d8deb9708/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/358f5216-75ea-42d3-91c1-be60525d7351" + } + ] + }, + { + "height": 4485, + "label": { + "@none": [ + "97r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/679ed008-d675-45f0-87ed-46cecc8718f2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/08794850-cd1b-4b63-936c-b05b559ceb2e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/679ed008-d675-45f0-87ed-46cecc8718f2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4485, + "label": { + "@none": [ + "97r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/08794850-cd1b-4b63-936c-b05b559ceb2e/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/08794850-cd1b-4b63-936c-b05b559ceb2e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d557917-0e66-413a-a441-4efe87882323" + } + ] + }, + { + "height": 4245, + "label": { + "@none": [ + "97v" + ] + }, + "width": 2744, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b054047c-cfb1-4e13-a4f2-be5e9566a315", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7ffc22de-f28c-4a42-bc55-21dac84c7dcd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b054047c-cfb1-4e13-a4f2-be5e9566a315", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4245, + "label": { + "@none": [ + "97v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7ffc22de-f28c-4a42-bc55-21dac84c7dcd/", + "type": "ImageService1" + } + ], + "width": 2744, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7ffc22de-f28c-4a42-bc55-21dac84c7dcd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d0503e0d-d987-4260-ae3f-80f0ad73a956" + } + ] + }, + { + "height": 4480, + "label": { + "@none": [ + "98r" + ] + }, + "width": 2973, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0cbf6f35-6469-42a1-a240-7ee7ff6dc155", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4cf2d7a3-edf3-49b7-a405-9709918730e8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0cbf6f35-6469-42a1-a240-7ee7ff6dc155", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4480, + "label": { + "@none": [ + "98r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4cf2d7a3-edf3-49b7-a405-9709918730e8/", + "type": "ImageService1" + } + ], + "width": 2973, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4cf2d7a3-edf3-49b7-a405-9709918730e8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5a60d83-9832-4f60-94a7-c1b673eae212" + } + ] + }, + { + "height": 4216, + "label": { + "@none": [ + "98v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/393bbbf1-5bce-4254-82f3-bc725a0b8c30", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f3478f43-2bf0-4020-9e82-072eef3b9b32", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/393bbbf1-5bce-4254-82f3-bc725a0b8c30", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4216, + "label": { + "@none": [ + "98v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f3478f43-2bf0-4020-9e82-072eef3b9b32/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f3478f43-2bf0-4020-9e82-072eef3b9b32/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/489aa7b2-d64c-4c85-b9e0-9a816a2e7e4b" + } + ] + }, + { + "height": 4480, + "label": { + "@none": [ + "99r" + ] + }, + "width": 2990, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/978f01f9-6d52-400c-8687-f725425b0203", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3fba7b2e-1636-4337-9546-6ed459a465e4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/978f01f9-6d52-400c-8687-f725425b0203", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4480, + "label": { + "@none": [ + "99r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3fba7b2e-1636-4337-9546-6ed459a465e4/", + "type": "ImageService1" + } + ], + "width": 2990, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3fba7b2e-1636-4337-9546-6ed459a465e4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea5c89e1-f50f-45e9-899f-5d3831ad9b3f" + } + ] + }, + { + "height": 4190, + "label": { + "@none": [ + "99v" + ] + }, + "width": 2774, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bac01066-4929-49a2-942b-9f9973b08207", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/539a60e1-bd55-409d-ba6f-d756b5707f54", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bac01066-4929-49a2-942b-9f9973b08207", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4190, + "label": { + "@none": [ + "99v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/539a60e1-bd55-409d-ba6f-d756b5707f54/", + "type": "ImageService1" + } + ], + "width": 2774, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/539a60e1-bd55-409d-ba6f-d756b5707f54/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a5bd035-592a-471b-8013-0f9e9f12fe8c" + } + ] + }, + { + "height": 4481, + "label": { + "@none": [ + "100r" + ] + }, + "width": 2949, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2f92a53f-a126-4072-ad4e-40738597d897", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/33e7ecbb-ede7-419e-8188-5fb806ff872b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2f92a53f-a126-4072-ad4e-40738597d897", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4481, + "label": { + "@none": [ + "100r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/33e7ecbb-ede7-419e-8188-5fb806ff872b/", + "type": "ImageService1" + } + ], + "width": 2949, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/33e7ecbb-ede7-419e-8188-5fb806ff872b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3743acbe-100e-4367-a0f4-26b2bd532687" + } + ] + }, + { + "height": 4218, + "label": { + "@none": [ + "100v" + ] + }, + "width": 2760, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/66e1e3e7-5739-47a0-ac14-041312ff3363", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bedc8687-75f1-424e-859e-2c507895abb1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/66e1e3e7-5739-47a0-ac14-041312ff3363", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4218, + "label": { + "@none": [ + "100v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bedc8687-75f1-424e-859e-2c507895abb1/", + "type": "ImageService1" + } + ], + "width": 2760, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bedc8687-75f1-424e-859e-2c507895abb1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67d89dd4-dbb5-41b0-88d1-04c494b01278" + } + ] + }, + { + "height": 4523, + "label": { + "@none": [ + "101r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/008a9393-f0b5-405d-bfb0-69d1152ae18f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e49b6737-2bb3-4bf2-82e1-0106853cb644", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/008a9393-f0b5-405d-bfb0-69d1152ae18f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4523, + "label": { + "@none": [ + "101r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e49b6737-2bb3-4bf2-82e1-0106853cb644/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e49b6737-2bb3-4bf2-82e1-0106853cb644/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/709a503a-506e-4109-9b58-9ea2b2063ed1" + } + ] + }, + { + "height": 4213, + "label": { + "@none": [ + "101v" + ] + }, + "width": 2793, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ad4f8dfc-28be-482b-8c2e-e8d0eece02ca", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c1e34e42-2a78-45f4-b542-d73069fc542c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ad4f8dfc-28be-482b-8c2e-e8d0eece02ca", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4213, + "label": { + "@none": [ + "101v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c1e34e42-2a78-45f4-b542-d73069fc542c/", + "type": "ImageService1" + } + ], + "width": 2793, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c1e34e42-2a78-45f4-b542-d73069fc542c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3fd68767-e887-496b-a373-9c26b266d029" + } + ] + }, + { + "height": 4499, + "label": { + "@none": [ + "102r" + ] + }, + "width": 2973, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c1ea1b67-8719-404f-8bca-242ece776c8b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4fa54b02-3229-4ee5-9d69-ebe6c371196c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c1ea1b67-8719-404f-8bca-242ece776c8b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4499, + "label": { + "@none": [ + "102r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4fa54b02-3229-4ee5-9d69-ebe6c371196c/", + "type": "ImageService1" + } + ], + "width": 2973, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4fa54b02-3229-4ee5-9d69-ebe6c371196c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/db53c0f6-dc9b-4b8b-954d-5568b50a30a7" + } + ] + }, + { + "height": 4230, + "label": { + "@none": [ + "102v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/637ddcad-28a5-490f-be8d-ce335def7e9b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/53c6920c-966b-48ef-8fc1-c176f0e3b03d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/637ddcad-28a5-490f-be8d-ce335def7e9b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4230, + "label": { + "@none": [ + "102v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/53c6920c-966b-48ef-8fc1-c176f0e3b03d/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/53c6920c-966b-48ef-8fc1-c176f0e3b03d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aad33329-6917-46e4-a93c-cf5cdd422875" + } + ] + }, + { + "height": 4495, + "label": { + "@none": [ + "103r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cacc3b7b-b45d-4eb6-8061-7f981c5a0494", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b6c185f1-9742-4b19-90cd-830cb279973f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cacc3b7b-b45d-4eb6-8061-7f981c5a0494", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4495, + "label": { + "@none": [ + "103r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b6c185f1-9742-4b19-90cd-830cb279973f/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b6c185f1-9742-4b19-90cd-830cb279973f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4218b40-c69d-44d5-aedc-95fb3ea671e2" + } + ] + }, + { + "height": 4231, + "label": { + "@none": [ + "103v" + ] + }, + "width": 2811, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c49d8d51-5feb-4531-a586-9eeaf8b5db4c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/eeb7759d-4734-4a83-925f-1159106a41b5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c49d8d51-5feb-4531-a586-9eeaf8b5db4c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4231, + "label": { + "@none": [ + "103v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/eeb7759d-4734-4a83-925f-1159106a41b5/", + "type": "ImageService1" + } + ], + "width": 2811, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/eeb7759d-4734-4a83-925f-1159106a41b5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d526d24-2d41-45df-a63a-fcedfab9f88c" + } + ] + }, + { + "height": 4474, + "label": { + "@none": [ + "104r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/fa20d579-1821-4bf3-9f1a-26e2406d482f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e94c5821-08d2-4f1b-80d6-02813551abaf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/fa20d579-1821-4bf3-9f1a-26e2406d482f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4474, + "label": { + "@none": [ + "104r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e94c5821-08d2-4f1b-80d6-02813551abaf/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e94c5821-08d2-4f1b-80d6-02813551abaf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f41dc0b-9f01-4763-8f21-80ca641e1c19" + } + ] + }, + { + "height": 4226, + "label": { + "@none": [ + "104v" + ] + }, + "width": 2787, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/37aa02fd-41da-49d1-83b7-da8ecaefa9a0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8cdab2be-0bce-4380-8077-c4f63daedc05", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/37aa02fd-41da-49d1-83b7-da8ecaefa9a0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4226, + "label": { + "@none": [ + "104v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8cdab2be-0bce-4380-8077-c4f63daedc05/", + "type": "ImageService1" + } + ], + "width": 2787, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8cdab2be-0bce-4380-8077-c4f63daedc05/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cae17995-2764-4cc8-b0fe-2bb5002604bc" + } + ] + }, + { + "height": 4495, + "label": { + "@none": [ + "105r" + ] + }, + "width": 2979, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1e2d1754-e1fe-40fd-9b7e-d1ac5fbf312c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c08e43a7-a2a2-467d-9a47-4d1f5bb1f4f6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1e2d1754-e1fe-40fd-9b7e-d1ac5fbf312c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4495, + "label": { + "@none": [ + "105r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c08e43a7-a2a2-467d-9a47-4d1f5bb1f4f6/", + "type": "ImageService1" + } + ], + "width": 2979, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c08e43a7-a2a2-467d-9a47-4d1f5bb1f4f6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df40ecfb-4b89-4c6b-a7ef-7e6efdad4f1c" + } + ] + }, + { + "height": 4226, + "label": { + "@none": [ + "105v" + ] + }, + "width": 2815, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/39737150-ba88-44b8-bad3-769ab5e868ef", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5ec6ea81-3052-405c-ac1c-bffc9d565c48", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/39737150-ba88-44b8-bad3-769ab5e868ef", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4226, + "label": { + "@none": [ + "105v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5ec6ea81-3052-405c-ac1c-bffc9d565c48/", + "type": "ImageService1" + } + ], + "width": 2815, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5ec6ea81-3052-405c-ac1c-bffc9d565c48/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/975cd79f-818b-4279-ab18-0811bc593472" + } + ] + }, + { + "height": 4462, + "label": { + "@none": [ + "106r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5cb7e5b0-84d2-4a4b-87b2-14b5fc88d171", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bf64118f-0388-49c1-9a35-69500cf224c6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5cb7e5b0-84d2-4a4b-87b2-14b5fc88d171", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4462, + "label": { + "@none": [ + "106r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bf64118f-0388-49c1-9a35-69500cf224c6/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bf64118f-0388-49c1-9a35-69500cf224c6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32336f32-2cfc-4fae-a236-0568fae2b999" + } + ] + }, + { + "height": 4264, + "label": { + "@none": [ + "106v" + ] + }, + "width": 2759, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1433f1f0-c733-4bc7-8f8f-60619020c814", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5dabcab3-151f-41c3-9f11-429efb7de86e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1433f1f0-c733-4bc7-8f8f-60619020c814", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4264, + "label": { + "@none": [ + "106v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5dabcab3-151f-41c3-9f11-429efb7de86e/", + "type": "ImageService1" + } + ], + "width": 2759, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5dabcab3-151f-41c3-9f11-429efb7de86e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2d3dc7e-46f7-4999-b295-d7c558b765a7" + } + ] + }, + { + "height": 4485, + "label": { + "@none": [ + "107r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/42e6581a-380f-46a8-ad20-481000bb01d1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/01e4cbc3-aab4-4622-974c-14b3d3c64bf0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/42e6581a-380f-46a8-ad20-481000bb01d1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4485, + "label": { + "@none": [ + "107r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/01e4cbc3-aab4-4622-974c-14b3d3c64bf0/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/01e4cbc3-aab4-4622-974c-14b3d3c64bf0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/849cf1fe-864e-4a82-ac28-3e409f0ee95d" + } + ] + }, + { + "height": 4231, + "label": { + "@none": [ + "107v" + ] + }, + "width": 2759, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3eb0127d-0351-4052-8957-04ffa1fc6c41", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/635b16c4-75a3-49c6-a7fa-d9b865a12c33", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3eb0127d-0351-4052-8957-04ffa1fc6c41", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4231, + "label": { + "@none": [ + "107v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/635b16c4-75a3-49c6-a7fa-d9b865a12c33/", + "type": "ImageService1" + } + ], + "width": 2759, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/635b16c4-75a3-49c6-a7fa-d9b865a12c33/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/526efa42-a1b3-42ea-a6b1-29f2147da4f8" + } + ] + }, + { + "height": 4513, + "label": { + "@none": [ + "108r" + ] + }, + "width": 2897, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a12cfe56-0aaf-4ad5-8f9e-9ae5ba98c42b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/583d28ab-b4e1-4061-b150-f7098862f925", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a12cfe56-0aaf-4ad5-8f9e-9ae5ba98c42b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4513, + "label": { + "@none": [ + "108r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/583d28ab-b4e1-4061-b150-f7098862f925/", + "type": "ImageService1" + } + ], + "width": 2897, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/583d28ab-b4e1-4061-b150-f7098862f925/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bb519ae-6aca-4972-b148-432f7c798992" + } + ] + }, + { + "height": 4255, + "label": { + "@none": [ + "108v" + ] + }, + "width": 2730, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9bbbea9e-e1ea-40a7-a4bd-9d4ee63f615f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9522684c-9ca2-4ed1-8be2-4f1cf798e90b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9bbbea9e-e1ea-40a7-a4bd-9d4ee63f615f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4255, + "label": { + "@none": [ + "108v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9522684c-9ca2-4ed1-8be2-4f1cf798e90b/", + "type": "ImageService1" + } + ], + "width": 2730, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9522684c-9ca2-4ed1-8be2-4f1cf798e90b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd835675-18f3-4451-a523-086ea4fadd61" + } + ] + }, + { + "height": 4480, + "label": { + "@none": [ + "109r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1f46a33c-1218-409d-8c71-5629e00970de", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/27febc30-23f6-434c-b5a7-d50de98b4b9a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1f46a33c-1218-409d-8c71-5629e00970de", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4480, + "label": { + "@none": [ + "109r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/27febc30-23f6-434c-b5a7-d50de98b4b9a/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/27febc30-23f6-434c-b5a7-d50de98b4b9a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0b48945-e35b-4990-b064-fd87fce431b0" + } + ] + }, + { + "height": 4221, + "label": { + "@none": [ + "109v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c25beaa2-a84b-4f61-bcf8-d5ff6b5b433f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7218a86f-bf10-4404-bdd8-fffd4b1834c8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c25beaa2-a84b-4f61-bcf8-d5ff6b5b433f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4221, + "label": { + "@none": [ + "109v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7218a86f-bf10-4404-bdd8-fffd4b1834c8/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7218a86f-bf10-4404-bdd8-fffd4b1834c8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/751314eb-f9b8-421c-bdf4-239f946a6008" + } + ] + }, + { + "height": 4461, + "label": { + "@none": [ + "110r" + ] + }, + "width": 2970, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/81d67184-d81b-4ee7-a3da-09455b221407", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/50ce1db9-6e94-4a31-a47e-5cb971eb93d1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/81d67184-d81b-4ee7-a3da-09455b221407", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4461, + "label": { + "@none": [ + "110r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/50ce1db9-6e94-4a31-a47e-5cb971eb93d1/", + "type": "ImageService1" + } + ], + "width": 2970, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/50ce1db9-6e94-4a31-a47e-5cb971eb93d1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e6cee32c-8063-4f34-9b3b-586fe5686081" + } + ] + }, + { + "height": 4245, + "label": { + "@none": [ + "110v" + ] + }, + "width": 2784, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7c5cba64-5013-4e5a-98bc-8afe91ade02a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a7f7e80d-bac9-4cfc-8f03-e7de25023183", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7c5cba64-5013-4e5a-98bc-8afe91ade02a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4245, + "label": { + "@none": [ + "110v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a7f7e80d-bac9-4cfc-8f03-e7de25023183/", + "type": "ImageService1" + } + ], + "width": 2784, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a7f7e80d-bac9-4cfc-8f03-e7de25023183/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03756cdc-3a4d-4057-9d4b-adbd6fa380e4" + } + ] + }, + { + "height": 4499, + "label": { + "@none": [ + "111r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/76f2bf6e-2b2e-437e-a109-a4365c0f8777", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d52fd80a-4839-46e7-a1c1-b8526cc52adf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/76f2bf6e-2b2e-437e-a109-a4365c0f8777", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4499, + "label": { + "@none": [ + "111r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d52fd80a-4839-46e7-a1c1-b8526cc52adf/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d52fd80a-4839-46e7-a1c1-b8526cc52adf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c7ce584-fe72-4a2f-a46f-f37a0e846f20" + } + ] + }, + { + "height": 4236, + "label": { + "@none": [ + "111v" + ] + }, + "width": 2768, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bf048ed9-ab1c-4fec-badd-e19538e89d7f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a8400f1f-2b97-450f-8277-d870adc79825", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bf048ed9-ab1c-4fec-badd-e19538e89d7f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4236, + "label": { + "@none": [ + "111v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a8400f1f-2b97-450f-8277-d870adc79825/", + "type": "ImageService1" + } + ], + "width": 2768, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a8400f1f-2b97-450f-8277-d870adc79825/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/71960275-109d-4d75-a40e-ef03af27cffb" + } + ] + }, + { + "height": 4437, + "label": { + "@none": [ + "112r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0485efa8-e2a6-4fd7-983f-de759b3819ff", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/51c126ad-6f91-4d8c-8ac7-4563a005f2d0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0485efa8-e2a6-4fd7-983f-de759b3819ff", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4437, + "label": { + "@none": [ + "112r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/51c126ad-6f91-4d8c-8ac7-4563a005f2d0/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/51c126ad-6f91-4d8c-8ac7-4563a005f2d0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef3a053f-0efd-4ffe-8e37-bdf95586dcd6" + } + ] + }, + { + "height": 4273, + "label": { + "@none": [ + "112v" + ] + }, + "width": 2769, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/957e8fae-ceed-4f9e-baea-44c412956c9d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a0c181db-ea19-43fa-bdd2-c86e7acaedd7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/957e8fae-ceed-4f9e-baea-44c412956c9d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4273, + "label": { + "@none": [ + "112v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a0c181db-ea19-43fa-bdd2-c86e7acaedd7/", + "type": "ImageService1" + } + ], + "width": 2769, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a0c181db-ea19-43fa-bdd2-c86e7acaedd7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ee10e69-0c04-4502-a9dd-946ac77727a9" + } + ] + }, + { + "height": 4467, + "label": { + "@none": [ + "113r" + ] + }, + "width": 2937, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4c74367f-1aa0-49eb-8dd2-296fa4ce2e76", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2c98c3b1-5a2f-4c14-a3ab-dd1a9d0c158e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4c74367f-1aa0-49eb-8dd2-296fa4ce2e76", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4467, + "label": { + "@none": [ + "113r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2c98c3b1-5a2f-4c14-a3ab-dd1a9d0c158e/", + "type": "ImageService1" + } + ], + "width": 2937, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2c98c3b1-5a2f-4c14-a3ab-dd1a9d0c158e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15ef1263-d67a-4dc1-9f98-383a51a811e6" + } + ] + }, + { + "height": 4261, + "label": { + "@none": [ + "113v" + ] + }, + "width": 2753, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9de4ea93-993d-4a59-a7b9-e59ee812c728", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f1e5ffc3-2a96-4341-a6eb-2eebbe909d87", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9de4ea93-993d-4a59-a7b9-e59ee812c728", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4261, + "label": { + "@none": [ + "113v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f1e5ffc3-2a96-4341-a6eb-2eebbe909d87/", + "type": "ImageService1" + } + ], + "width": 2753, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f1e5ffc3-2a96-4341-a6eb-2eebbe909d87/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d45c811-0b13-4dbf-9981-560e383d84ae" + } + ] + }, + { + "height": 4467, + "label": { + "@none": [ + "114r" + ] + }, + "width": 2927, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b17854ed-60b5-4dea-bd4f-3dc39bc98a63", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c14db4e1-e64d-423e-a6d8-1fef8ae43e3d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b17854ed-60b5-4dea-bd4f-3dc39bc98a63", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4467, + "label": { + "@none": [ + "114r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c14db4e1-e64d-423e-a6d8-1fef8ae43e3d/", + "type": "ImageService1" + } + ], + "width": 2927, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c14db4e1-e64d-423e-a6d8-1fef8ae43e3d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18f2c777-e105-4a2c-8671-f53dd551bfeb" + } + ] + }, + { + "height": 4288, + "label": { + "@none": [ + "114v" + ] + }, + "width": 2767, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/14f227c2-ed6e-429b-a750-c69763af9813", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/832de34a-93d8-4b61-be2e-ff02501dbd49", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/14f227c2-ed6e-429b-a750-c69763af9813", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4288, + "label": { + "@none": [ + "114v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/832de34a-93d8-4b61-be2e-ff02501dbd49/", + "type": "ImageService1" + } + ], + "width": 2767, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/832de34a-93d8-4b61-be2e-ff02501dbd49/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/914ff0cf-eb12-4332-a618-52fd97d9e02e" + } + ] + }, + { + "height": 4423, + "label": { + "@none": [ + "115r" + ] + }, + "width": 2985, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/03de3d1e-42c0-4d4d-821a-5e5f694bc811", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/55b1df75-79d1-4afa-8b12-e2923e5cf15c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/03de3d1e-42c0-4d4d-821a-5e5f694bc811", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4423, + "label": { + "@none": [ + "115r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/55b1df75-79d1-4afa-8b12-e2923e5cf15c/", + "type": "ImageService1" + } + ], + "width": 2985, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/55b1df75-79d1-4afa-8b12-e2923e5cf15c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5985cde-04fb-4874-b3c5-832514ecbc67" + } + ] + }, + { + "height": 4255, + "label": { + "@none": [ + "115v" + ] + }, + "width": 2830, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c67a7846-8c35-4280-baed-ee9b8716ec87", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f843432f-f00f-4ebd-a4b9-a8fa88f00d28", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c67a7846-8c35-4280-baed-ee9b8716ec87", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4255, + "label": { + "@none": [ + "115v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f843432f-f00f-4ebd-a4b9-a8fa88f00d28/", + "type": "ImageService1" + } + ], + "width": 2830, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f843432f-f00f-4ebd-a4b9-a8fa88f00d28/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/254483b3-3963-49b2-a575-e2e76c7a535b" + } + ] + }, + { + "height": 4495, + "label": { + "@none": [ + "116r" + ] + }, + "width": 2950, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/35d11480-f717-4383-ac3e-7b75abe230b2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/793f338d-7544-4cf6-8034-2f3f7c72b6a3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/35d11480-f717-4383-ac3e-7b75abe230b2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4495, + "label": { + "@none": [ + "116r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/793f338d-7544-4cf6-8034-2f3f7c72b6a3/", + "type": "ImageService1" + } + ], + "width": 2950, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/793f338d-7544-4cf6-8034-2f3f7c72b6a3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ef0fadb-87f7-4281-91fc-0f6ab30070f6" + } + ] + }, + { + "height": 4298, + "label": { + "@none": [ + "116v" + ] + }, + "width": 2811, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/95ddfde8-0bd4-49b5-8f39-56fd52d48d41", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/558386b0-9d7f-4ae4-b0a7-29f4210ff4fb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/95ddfde8-0bd4-49b5-8f39-56fd52d48d41", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4298, + "label": { + "@none": [ + "116v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/558386b0-9d7f-4ae4-b0a7-29f4210ff4fb/", + "type": "ImageService1" + } + ], + "width": 2811, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/558386b0-9d7f-4ae4-b0a7-29f4210ff4fb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce681bbd-0813-4a0c-b7cc-fa5cccfddbeb" + } + ] + }, + { + "height": 4471, + "label": { + "@none": [ + "117r" + ] + }, + "width": 2921, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/725d0bbd-fcd7-4976-bf59-09aefdd58a73", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/128f8b1c-5be5-4e0f-8a22-51eb2639ca55", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/725d0bbd-fcd7-4976-bf59-09aefdd58a73", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4471, + "label": { + "@none": [ + "117r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/128f8b1c-5be5-4e0f-8a22-51eb2639ca55/", + "type": "ImageService1" + } + ], + "width": 2921, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/128f8b1c-5be5-4e0f-8a22-51eb2639ca55/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc9f331b-82f2-4705-ac4e-d9d3ff09daa0" + } + ] + }, + { + "height": 4264, + "label": { + "@none": [ + "117v" + ] + }, + "width": 2821, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8a92b306-ac62-4b54-89da-ab73a752dca4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b9c7a046-292e-49f9-8d05-b3563ca88a5c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8a92b306-ac62-4b54-89da-ab73a752dca4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4264, + "label": { + "@none": [ + "117v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b9c7a046-292e-49f9-8d05-b3563ca88a5c/", + "type": "ImageService1" + } + ], + "width": 2821, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b9c7a046-292e-49f9-8d05-b3563ca88a5c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86f3e204-bb3f-4238-a747-bc631d2f7260" + } + ] + }, + { + "height": 4438, + "label": { + "@none": [ + "118r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/816dd843-ba2e-4227-aa03-a9511fbea50c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/86a96629-c02a-45a9-8e3d-0d98a955dd08", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/816dd843-ba2e-4227-aa03-a9511fbea50c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4438, + "label": { + "@none": [ + "118r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/86a96629-c02a-45a9-8e3d-0d98a955dd08/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/86a96629-c02a-45a9-8e3d-0d98a955dd08/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cde7190-bf40-45f7-8f52-4a54c712f949" + } + ] + }, + { + "height": 4269, + "label": { + "@none": [ + "118v" + ] + }, + "width": 2848, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/023e16a6-40bb-40e9-bcd9-74e4caa21ad0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3aeb0b2e-c8bf-4555-aae8-05d798772f06", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/023e16a6-40bb-40e9-bcd9-74e4caa21ad0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4269, + "label": { + "@none": [ + "118v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3aeb0b2e-c8bf-4555-aae8-05d798772f06/", + "type": "ImageService1" + } + ], + "width": 2848, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3aeb0b2e-c8bf-4555-aae8-05d798772f06/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/405ef623-442e-40cc-a259-8923f8b39a84" + } + ] + }, + { + "height": 4419, + "label": { + "@none": [ + "119r" + ] + }, + "width": 2932, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0f7154c8-a417-4afd-9c68-13b6a4a0792e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/00ab4701-4eeb-4396-9e55-b6e807b0d043", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0f7154c8-a417-4afd-9c68-13b6a4a0792e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4419, + "label": { + "@none": [ + "119r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/00ab4701-4eeb-4396-9e55-b6e807b0d043/", + "type": "ImageService1" + } + ], + "width": 2932, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/00ab4701-4eeb-4396-9e55-b6e807b0d043/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2e1c931-290d-4631-8952-c83e85354010" + } + ] + }, + { + "height": 4237, + "label": { + "@none": [ + "119v" + ] + }, + "width": 2831, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ae70763b-6c9e-4a9e-b1d1-d309acb496f2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/01c06d45-9e3b-45e5-8513-b3e6d2520f02", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ae70763b-6c9e-4a9e-b1d1-d309acb496f2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4237, + "label": { + "@none": [ + "119v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/01c06d45-9e3b-45e5-8513-b3e6d2520f02/", + "type": "ImageService1" + } + ], + "width": 2831, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/01c06d45-9e3b-45e5-8513-b3e6d2520f02/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be8895d2-ff2a-4dd2-8258-16afc835bb67" + } + ] + }, + { + "height": 4481, + "label": { + "@none": [ + "120r" + ] + }, + "width": 2921, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ec19ead8-3104-4a01-b522-7d3f719529f2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4b7e45c2-2169-4767-9d3f-2fa4c69b9f82", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ec19ead8-3104-4a01-b522-7d3f719529f2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4481, + "label": { + "@none": [ + "120r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4b7e45c2-2169-4767-9d3f-2fa4c69b9f82/", + "type": "ImageService1" + } + ], + "width": 2921, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4b7e45c2-2169-4767-9d3f-2fa4c69b9f82/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9926135-ba36-49f4-b995-1b7e45457297" + } + ] + }, + { + "height": 4253, + "label": { + "@none": [ + "120v" + ] + }, + "width": 2817, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f55123d2-1815-48af-a7ba-7724ca65891a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d5a9ce6b-5566-4015-8961-701d5b8f4d10", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f55123d2-1815-48af-a7ba-7724ca65891a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4253, + "label": { + "@none": [ + "120v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d5a9ce6b-5566-4015-8961-701d5b8f4d10/", + "type": "ImageService1" + } + ], + "width": 2817, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d5a9ce6b-5566-4015-8961-701d5b8f4d10/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d880ec3-5e43-4158-bad4-130cbbb058ab" + } + ] + }, + { + "height": 4433, + "label": { + "@none": [ + "121r" + ] + }, + "width": 2913, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8b1200f1-0bbd-4416-b580-71c2eb320a56", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9d136296-1244-4d38-a4e4-ea6de89bafe9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8b1200f1-0bbd-4416-b580-71c2eb320a56", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4433, + "label": { + "@none": [ + "121r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9d136296-1244-4d38-a4e4-ea6de89bafe9/", + "type": "ImageService1" + } + ], + "width": 2913, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9d136296-1244-4d38-a4e4-ea6de89bafe9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7c5a223-0573-435a-8cbd-dd36a31e5696" + } + ] + }, + { + "height": 4288, + "label": { + "@none": [ + "121v" + ] + }, + "width": 2862, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d0411890-0802-47d1-acd4-279e1a3da50b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/300bafd9-ed00-43e6-bcba-0b7c8e5ae9d2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d0411890-0802-47d1-acd4-279e1a3da50b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4288, + "label": { + "@none": [ + "121v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/300bafd9-ed00-43e6-bcba-0b7c8e5ae9d2/", + "type": "ImageService1" + } + ], + "width": 2862, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/300bafd9-ed00-43e6-bcba-0b7c8e5ae9d2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/545cd58d-58fe-43fa-8aea-d346e8f0c45a" + } + ] + }, + { + "height": 4428, + "label": { + "@none": [ + "122r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2ceafe8b-aca3-4cb5-8ecf-bb832a02181a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fe5ce623-fd8c-466d-9fa3-875be3f9ac8b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2ceafe8b-aca3-4cb5-8ecf-bb832a02181a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4428, + "label": { + "@none": [ + "122r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fe5ce623-fd8c-466d-9fa3-875be3f9ac8b/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fe5ce623-fd8c-466d-9fa3-875be3f9ac8b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64feebe5-898e-4da4-b375-701227829fbb" + } + ] + }, + { + "height": 4283, + "label": { + "@none": [ + "122v" + ] + }, + "width": 2837, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/dd00362c-3877-455e-95f8-91aae32cff43", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/143bb35d-a9f6-41cb-bc56-252680fa11b6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/dd00362c-3877-455e-95f8-91aae32cff43", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4283, + "label": { + "@none": [ + "122v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/143bb35d-a9f6-41cb-bc56-252680fa11b6/", + "type": "ImageService1" + } + ], + "width": 2837, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/143bb35d-a9f6-41cb-bc56-252680fa11b6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c92f871f-e44d-4f51-9cf5-767c6aabae28" + } + ] + }, + { + "height": 4465, + "label": { + "@none": [ + "123r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/992bb53b-07e2-41b5-937e-604d56783d48", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fa21072c-0a49-4cca-8d2f-2ea70c426154", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/992bb53b-07e2-41b5-937e-604d56783d48", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4465, + "label": { + "@none": [ + "123r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fa21072c-0a49-4cca-8d2f-2ea70c426154/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fa21072c-0a49-4cca-8d2f-2ea70c426154/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ea94ad2-26b8-4427-b00a-9207e680aa8a" + } + ] + }, + { + "height": 4269, + "label": { + "@none": [ + "123v" + ] + }, + "width": 2817, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bee7b128-67d4-49f0-88c0-3e8441f3b801", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0c8826d8-ac63-4d67-a7d0-46fc403497bd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bee7b128-67d4-49f0-88c0-3e8441f3b801", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4269, + "label": { + "@none": [ + "123v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0c8826d8-ac63-4d67-a7d0-46fc403497bd/", + "type": "ImageService1" + } + ], + "width": 2817, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0c8826d8-ac63-4d67-a7d0-46fc403497bd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25064775-871d-4c57-916c-cd1cea816c4c" + } + ] + }, + { + "height": 4466, + "label": { + "@none": [ + "124r" + ] + }, + "width": 2902, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/74471612-dcd4-432e-9807-9acbcdb2ad99", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9f9e3c93-f693-48c1-8d3a-44af8f321c4a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/74471612-dcd4-432e-9807-9acbcdb2ad99", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4466, + "label": { + "@none": [ + "124r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9f9e3c93-f693-48c1-8d3a-44af8f321c4a/", + "type": "ImageService1" + } + ], + "width": 2902, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9f9e3c93-f693-48c1-8d3a-44af8f321c4a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/def92b22-4fec-4d09-885b-30753250db7e" + } + ] + }, + { + "height": 4283, + "label": { + "@none": [ + "124v" + ] + }, + "width": 2799, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2f03a212-9553-4ab9-a3c2-fdc21792defc", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/eb2c4e93-be32-4cb9-b6b4-b0f7b0879ccc", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2f03a212-9553-4ab9-a3c2-fdc21792defc", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4283, + "label": { + "@none": [ + "124v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/eb2c4e93-be32-4cb9-b6b4-b0f7b0879ccc/", + "type": "ImageService1" + } + ], + "width": 2799, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/eb2c4e93-be32-4cb9-b6b4-b0f7b0879ccc/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1fb2035-d88e-419e-b30b-305197a5504c" + } + ] + }, + { + "height": 4475, + "label": { + "@none": [ + "125r" + ] + }, + "width": 2973, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5e4ca71c-e432-4e19-bf54-20e26dc7ab50", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7095779f-63ee-4f65-b856-3b22865c42db", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5e4ca71c-e432-4e19-bf54-20e26dc7ab50", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4475, + "label": { + "@none": [ + "125r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7095779f-63ee-4f65-b856-3b22865c42db/", + "type": "ImageService1" + } + ], + "width": 2973, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7095779f-63ee-4f65-b856-3b22865c42db/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7cf1d5ad-6668-49ea-b93a-bd565b4c1da4" + } + ] + }, + { + "height": 4287, + "label": { + "@none": [ + "125v" + ] + }, + "width": 2814, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b6b9aaea-142d-443f-8de6-7b1185c4f6a2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/85e8af52-058d-482d-81df-8b65df95fa04", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b6b9aaea-142d-443f-8de6-7b1185c4f6a2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4287, + "label": { + "@none": [ + "125v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/85e8af52-058d-482d-81df-8b65df95fa04/", + "type": "ImageService1" + } + ], + "width": 2814, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/85e8af52-058d-482d-81df-8b65df95fa04/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc2bbb2d-2da8-42fe-ab3d-e0df1778607e" + } + ] + }, + { + "height": 4441, + "label": { + "@none": [ + "126r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1527bbcf-b1e6-4570-8c33-071f4dd493e7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/51a3e531-4a12-4a27-b010-aa0bd22ad2c5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1527bbcf-b1e6-4570-8c33-071f4dd493e7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4441, + "label": { + "@none": [ + "126r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/51a3e531-4a12-4a27-b010-aa0bd22ad2c5/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/51a3e531-4a12-4a27-b010-aa0bd22ad2c5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b9e57df-fd7f-4f15-8188-fddc0f015ba3" + } + ] + }, + { + "height": 4283, + "label": { + "@none": [ + "126v" + ] + }, + "width": 2838, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a205226a-4940-4c11-8f2b-ffa9ef3b90ab", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/34492f8a-d487-46c1-949b-3baec9fb3f61", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a205226a-4940-4c11-8f2b-ffa9ef3b90ab", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4283, + "label": { + "@none": [ + "126v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/34492f8a-d487-46c1-949b-3baec9fb3f61/", + "type": "ImageService1" + } + ], + "width": 2838, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/34492f8a-d487-46c1-949b-3baec9fb3f61/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31b24344-d5d6-4833-a224-c4642599cb43" + } + ] + }, + { + "height": 4377, + "label": { + "@none": [ + "127r" + ] + }, + "width": 2966, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0a235a67-1b1d-47f8-abec-e7a9bb852ce6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/44fabbbf-6bc3-40dc-b459-001519e00fbd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0a235a67-1b1d-47f8-abec-e7a9bb852ce6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4377, + "label": { + "@none": [ + "127r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/44fabbbf-6bc3-40dc-b459-001519e00fbd/", + "type": "ImageService1" + } + ], + "width": 2966, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/44fabbbf-6bc3-40dc-b459-001519e00fbd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e87bb46f-1a10-47f4-85f4-6bd6e7add2ac" + } + ] + }, + { + "height": 4269, + "label": { + "@none": [ + "127v" + ] + }, + "width": 2814, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/446147b8-f648-4939-b23a-c1ecbc87e74e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6b61f44e-f051-44f2-bfde-a155a9cc04c2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/446147b8-f648-4939-b23a-c1ecbc87e74e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4269, + "label": { + "@none": [ + "127v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6b61f44e-f051-44f2-bfde-a155a9cc04c2/", + "type": "ImageService1" + } + ], + "width": 2814, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6b61f44e-f051-44f2-bfde-a155a9cc04c2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d20df2e5-082a-4230-b663-9f38bdd68b35" + } + ] + }, + { + "height": 4419, + "label": { + "@none": [ + "128r" + ] + }, + "width": 2987, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0736be26-7014-48ee-b9ea-232640f9c4b8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/668ebf77-ad26-418b-8e5e-e87e043622fa", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0736be26-7014-48ee-b9ea-232640f9c4b8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4419, + "label": { + "@none": [ + "128r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/668ebf77-ad26-418b-8e5e-e87e043622fa/", + "type": "ImageService1" + } + ], + "width": 2987, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/668ebf77-ad26-418b-8e5e-e87e043622fa/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc22a7d2-a863-495f-b824-c7c5b665cece" + } + ] + }, + { + "height": 4292, + "label": { + "@none": [ + "128v" + ] + }, + "width": 2827, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/350a55d1-51b2-47ad-b3d4-9c8ec3274b3c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4d349363-e986-425d-9343-d421eb92427a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/350a55d1-51b2-47ad-b3d4-9c8ec3274b3c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4292, + "label": { + "@none": [ + "128v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4d349363-e986-425d-9343-d421eb92427a/", + "type": "ImageService1" + } + ], + "width": 2827, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4d349363-e986-425d-9343-d421eb92427a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef447286-9c6f-4003-8275-39779915e59c" + } + ] + }, + { + "height": 4457, + "label": { + "@none": [ + "129r" + ] + }, + "width": 2936, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9650b997-9f34-4100-9c39-39ba645dedb6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bf0d591b-61ae-4959-98ec-2ad85f39e1ee", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9650b997-9f34-4100-9c39-39ba645dedb6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4457, + "label": { + "@none": [ + "129r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bf0d591b-61ae-4959-98ec-2ad85f39e1ee/", + "type": "ImageService1" + } + ], + "width": 2936, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bf0d591b-61ae-4959-98ec-2ad85f39e1ee/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72d3a4c1-da6b-40af-81ed-fe479c817554" + } + ] + }, + { + "height": 4278, + "label": { + "@none": [ + "129v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/43695100-51a9-4c3d-9581-d3067f93ad3b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bc3e9c6e-1d9c-431d-9a44-2ee8287bfb23", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/43695100-51a9-4c3d-9581-d3067f93ad3b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4278, + "label": { + "@none": [ + "129v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bc3e9c6e-1d9c-431d-9a44-2ee8287bfb23/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bc3e9c6e-1d9c-431d-9a44-2ee8287bfb23/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8439d408-8646-4a61-b3eb-6af2663d9c7d" + } + ] + }, + { + "height": 4428, + "label": { + "@none": [ + "130r" + ] + }, + "width": 2955, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e11d7078-c440-496b-849d-1bbeb773c4d8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e2ab7f42-84aa-4998-9277-4a03f437a501", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e11d7078-c440-496b-849d-1bbeb773c4d8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4428, + "label": { + "@none": [ + "130r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e2ab7f42-84aa-4998-9277-4a03f437a501/", + "type": "ImageService1" + } + ], + "width": 2955, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e2ab7f42-84aa-4998-9277-4a03f437a501/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be2d695c-2a4f-427d-85b4-4790ff2b9144" + } + ] + }, + { + "height": 4242, + "label": { + "@none": [ + "130v" + ] + }, + "width": 2826, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4016b085-1a68-4799-bc47-4497efe86175", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/83b5dc35-0496-449f-b6e4-2f0be660109b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4016b085-1a68-4799-bc47-4497efe86175", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4242, + "label": { + "@none": [ + "130v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/83b5dc35-0496-449f-b6e4-2f0be660109b/", + "type": "ImageService1" + } + ], + "width": 2826, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/83b5dc35-0496-449f-b6e4-2f0be660109b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d70bde5-413b-4048-bed0-2f13e3fbd456" + } + ] + }, + { + "height": 4389, + "label": { + "@none": [ + "131r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/648cfb32-29fe-42ac-9ed8-8241be42b087", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/112bed81-ef41-42d2-ba10-ae7bac3bc521", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/648cfb32-29fe-42ac-9ed8-8241be42b087", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4389, + "label": { + "@none": [ + "131r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/112bed81-ef41-42d2-ba10-ae7bac3bc521/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/112bed81-ef41-42d2-ba10-ae7bac3bc521/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64372dfe-bc7c-4a5c-bcd9-cf056ce30f81" + } + ] + }, + { + "height": 4247, + "label": { + "@none": [ + "131v" + ] + }, + "width": 2825, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9ed4ea4b-081c-4410-b570-5e17899c80bb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c932ef38-8905-40c4-a23d-f2a0a3ba3993", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9ed4ea4b-081c-4410-b570-5e17899c80bb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4247, + "label": { + "@none": [ + "131v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c932ef38-8905-40c4-a23d-f2a0a3ba3993/", + "type": "ImageService1" + } + ], + "width": 2825, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c932ef38-8905-40c4-a23d-f2a0a3ba3993/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5535a977-f670-4842-8236-20c4f2363b3b" + } + ] + }, + { + "height": 4408, + "label": { + "@none": [ + "132r" + ] + }, + "width": 2998, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9dda1ba3-71cf-4b58-86e4-29b31be6ec5a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0ce371a4-f17e-46f2-b89f-95197a5ed053", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9dda1ba3-71cf-4b58-86e4-29b31be6ec5a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4408, + "label": { + "@none": [ + "132r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0ce371a4-f17e-46f2-b89f-95197a5ed053/", + "type": "ImageService1" + } + ], + "width": 2998, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0ce371a4-f17e-46f2-b89f-95197a5ed053/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/263fa9bd-8096-45a3-9021-7d2e789e7857" + } + ] + }, + { + "height": 4261, + "label": { + "@none": [ + "132v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/af8c5634-c6ce-4d42-b5e1-1a60e46ab5f0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/20945291-9fd5-4070-bf97-93b763333801", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/af8c5634-c6ce-4d42-b5e1-1a60e46ab5f0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4261, + "label": { + "@none": [ + "132v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/20945291-9fd5-4070-bf97-93b763333801/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/20945291-9fd5-4070-bf97-93b763333801/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8893eeff-e770-4fd6-9821-99c1944fe9df" + } + ] + }, + { + "height": 4475, + "label": { + "@none": [ + "133r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9392c2fa-ac80-4045-afe5-ad58eb4399de", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a4607969-89b4-4446-8550-d4def35f1e28", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9392c2fa-ac80-4045-afe5-ad58eb4399de", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4475, + "label": { + "@none": [ + "133r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a4607969-89b4-4446-8550-d4def35f1e28/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a4607969-89b4-4446-8550-d4def35f1e28/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8ff8a9d-69f0-46f4-8614-5daed7763a1f" + } + ] + }, + { + "height": 4280, + "label": { + "@none": [ + "133v" + ] + }, + "width": 2830, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a899141e-c2c2-4a12-9cee-6a4fb32c81c6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/52a41d95-e94c-4913-ad3d-01588d5b3e72", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a899141e-c2c2-4a12-9cee-6a4fb32c81c6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4280, + "label": { + "@none": [ + "133v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/52a41d95-e94c-4913-ad3d-01588d5b3e72/", + "type": "ImageService1" + } + ], + "width": 2830, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/52a41d95-e94c-4913-ad3d-01588d5b3e72/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3537580-83f8-41f6-9150-a1b46e813a6a" + } + ] + }, + { + "height": 4441, + "label": { + "@none": [ + "134r" + ] + }, + "width": 2993, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8ca67e7d-e01e-4dab-94e9-56dc47f5924d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5b399960-2438-4476-a076-5475f8607020", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8ca67e7d-e01e-4dab-94e9-56dc47f5924d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4441, + "label": { + "@none": [ + "134r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5b399960-2438-4476-a076-5475f8607020/", + "type": "ImageService1" + } + ], + "width": 2993, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5b399960-2438-4476-a076-5475f8607020/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22184e40-7699-4a62-bdcf-0ef575f13a9b" + } + ] + }, + { + "height": 4275, + "label": { + "@none": [ + "134v" + ] + }, + "width": 2824, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4bfc5dd1-0588-4289-aba9-5326dda6aad4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/62f06960-3e57-49c6-b181-ca2a9be1328a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4bfc5dd1-0588-4289-aba9-5326dda6aad4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4275, + "label": { + "@none": [ + "134v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/62f06960-3e57-49c6-b181-ca2a9be1328a/", + "type": "ImageService1" + } + ], + "width": 2824, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/62f06960-3e57-49c6-b181-ca2a9be1328a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60fcdfd9-7250-47ce-9b40-41ee43b699ae" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "135r" + ] + }, + "width": 2998, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7ba9976f-f6cc-4910-a1ec-faea3fbc1a7f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/77ff17c5-cfc1-44b9-8fff-7bad644fe01e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7ba9976f-f6cc-4910-a1ec-faea3fbc1a7f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "135r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/77ff17c5-cfc1-44b9-8fff-7bad644fe01e/", + "type": "ImageService1" + } + ], + "width": 2998, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/77ff17c5-cfc1-44b9-8fff-7bad644fe01e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47a29231-8e21-415a-8977-87e3ecbfdcd0" + } + ] + }, + { + "height": 4252, + "label": { + "@none": [ + "135v" + ] + }, + "width": 2834, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/393b1e59-caf0-4242-b218-38c358516473", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ecb9a628-a697-498e-a1bd-494c8df583af", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/393b1e59-caf0-4242-b218-38c358516473", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4252, + "label": { + "@none": [ + "135v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ecb9a628-a697-498e-a1bd-494c8df583af/", + "type": "ImageService1" + } + ], + "width": 2834, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ecb9a628-a697-498e-a1bd-494c8df583af/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce8e7142-362c-43a2-a0ff-9a3599fdff47" + } + ] + }, + { + "height": 4380, + "label": { + "@none": [ + "136r" + ] + }, + "width": 2930, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d0da678d-e136-4adf-90f4-f9950ecab2f7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/97a391b3-4d1d-4c3b-8753-d604c4eb9102", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d0da678d-e136-4adf-90f4-f9950ecab2f7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4380, + "label": { + "@none": [ + "136r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/97a391b3-4d1d-4c3b-8753-d604c4eb9102/", + "type": "ImageService1" + } + ], + "width": 2930, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/97a391b3-4d1d-4c3b-8753-d604c4eb9102/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a8263f2-8162-4eec-8d21-5d7957d89713" + } + ] + }, + { + "height": 4237, + "label": { + "@none": [ + "136v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/63f36441-886a-41dc-b131-76dcf3faef6a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f5f6eb9d-cb79-4228-8a25-293f49ccd8c2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/63f36441-886a-41dc-b131-76dcf3faef6a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4237, + "label": { + "@none": [ + "136v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f5f6eb9d-cb79-4228-8a25-293f49ccd8c2/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f5f6eb9d-cb79-4228-8a25-293f49ccd8c2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f32b9a4-2392-48b9-8bd6-0500312f571b" + } + ] + }, + { + "height": 4396, + "label": { + "@none": [ + "137r" + ] + }, + "width": 3052, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/90ec2816-3ddd-4ffa-bbf9-496ad981032c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ed8288a4-8615-4a33-a3ec-e46d90c5a01a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/90ec2816-3ddd-4ffa-bbf9-496ad981032c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4396, + "label": { + "@none": [ + "137r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ed8288a4-8615-4a33-a3ec-e46d90c5a01a/", + "type": "ImageService1" + } + ], + "width": 3052, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ed8288a4-8615-4a33-a3ec-e46d90c5a01a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed0e0810-94fb-4429-a463-9fac752d2343" + } + ] + }, + { + "height": 4270, + "label": { + "@none": [ + "137v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ace2e5e5-43b4-4c82-8b16-2c15b5238b12", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a55668e1-dbf3-406d-a59d-cab072e1562d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ace2e5e5-43b4-4c82-8b16-2c15b5238b12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4270, + "label": { + "@none": [ + "137v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a55668e1-dbf3-406d-a59d-cab072e1562d/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a55668e1-dbf3-406d-a59d-cab072e1562d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31d6ec10-40c1-41ff-bcc3-4bcf1b054cc0" + } + ] + }, + { + "height": 4391, + "label": { + "@none": [ + "138r" + ] + }, + "width": 2955, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/995a9a7a-53bf-45c9-abf5-cf6d6ab25aa4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d9e9f849-d943-41fc-a270-c428f8848b60", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/995a9a7a-53bf-45c9-abf5-cf6d6ab25aa4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4391, + "label": { + "@none": [ + "138r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d9e9f849-d943-41fc-a270-c428f8848b60/", + "type": "ImageService1" + } + ], + "width": 2955, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d9e9f849-d943-41fc-a270-c428f8848b60/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/836761f9-0f58-49f9-aec4-f7d21d0c786e" + } + ] + }, + { + "height": 4296, + "label": { + "@none": [ + "138v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bc50cff4-2e13-4156-8604-7f841e85c849", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0354c2ab-8d6e-419c-91b3-04c3604637a2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bc50cff4-2e13-4156-8604-7f841e85c849", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4296, + "label": { + "@none": [ + "138v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0354c2ab-8d6e-419c-91b3-04c3604637a2/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0354c2ab-8d6e-419c-91b3-04c3604637a2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa2f6d69-8681-49e8-9db8-e1f4814ad590" + } + ] + }, + { + "height": 4409, + "label": { + "@none": [ + "139r" + ] + }, + "width": 2945, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/39e36fc8-ce89-46e7-9e48-0042e9405872", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6072f6bd-cef4-42e2-97bb-03cb82161c11", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/39e36fc8-ce89-46e7-9e48-0042e9405872", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4409, + "label": { + "@none": [ + "139r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6072f6bd-cef4-42e2-97bb-03cb82161c11/", + "type": "ImageService1" + } + ], + "width": 2945, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6072f6bd-cef4-42e2-97bb-03cb82161c11/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acd62a0c-e63c-479b-ac72-d179f66b903f" + } + ] + }, + { + "height": 4288, + "label": { + "@none": [ + "139v" + ] + }, + "width": 2811, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/52d6cc98-4754-4bea-929c-c592ee7c421d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f393229a-26cf-42a1-a589-878888965652", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/52d6cc98-4754-4bea-929c-c592ee7c421d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4288, + "label": { + "@none": [ + "139v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f393229a-26cf-42a1-a589-878888965652/", + "type": "ImageService1" + } + ], + "width": 2811, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f393229a-26cf-42a1-a589-878888965652/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b285a050-d1fc-49d8-b1eb-8e1133fbf9c9" + } + ] + }, + { + "height": 4395, + "label": { + "@none": [ + "140r" + ] + }, + "width": 2939, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/78bad6df-0e13-4442-9a4b-0ce3e70f5b38", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b7615700-9fca-4d45-9ba9-bc39e31c1962", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/78bad6df-0e13-4442-9a4b-0ce3e70f5b38", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4395, + "label": { + "@none": [ + "140r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b7615700-9fca-4d45-9ba9-bc39e31c1962/", + "type": "ImageService1" + } + ], + "width": 2939, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b7615700-9fca-4d45-9ba9-bc39e31c1962/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/de80e5ff-24f2-4477-909a-5922217fd50e" + } + ] + }, + { + "height": 4299, + "label": { + "@none": [ + "140v" + ] + }, + "width": 2830, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8df8730f-43d2-4647-bfc1-49de87c88889", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3d26eee5-2a3a-4e8d-86b8-35349ce8d1d6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8df8730f-43d2-4647-bfc1-49de87c88889", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4299, + "label": { + "@none": [ + "140v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3d26eee5-2a3a-4e8d-86b8-35349ce8d1d6/", + "type": "ImageService1" + } + ], + "width": 2830, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3d26eee5-2a3a-4e8d-86b8-35349ce8d1d6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40346d1f-5b70-481b-b0de-6cfa9645e98a" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "141r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/29fcbc66-50d9-4b25-b8ad-b3721b9a2fc4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1adf2e34-7dd1-457e-b50a-3d35bec8d27a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/29fcbc66-50d9-4b25-b8ad-b3721b9a2fc4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "141r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1adf2e34-7dd1-457e-b50a-3d35bec8d27a/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1adf2e34-7dd1-457e-b50a-3d35bec8d27a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3db6f78f-c6cb-436c-9ecb-aea18a07766a" + } + ] + }, + { + "height": 4318, + "label": { + "@none": [ + "141v" + ] + }, + "width": 2782, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b2fb1287-e089-4962-a8de-0c987b437040", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9c1cbbb9-cb68-459f-ae0e-0199bef68030", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b2fb1287-e089-4962-a8de-0c987b437040", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4318, + "label": { + "@none": [ + "141v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9c1cbbb9-cb68-459f-ae0e-0199bef68030/", + "type": "ImageService1" + } + ], + "width": 2782, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9c1cbbb9-cb68-459f-ae0e-0199bef68030/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/332c0a53-b7a5-4df0-ae2d-1a86ad5dbaaf" + } + ] + }, + { + "height": 4371, + "label": { + "@none": [ + "142r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4a4bd26b-7e67-482f-9730-00977c7119db", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/22fdf54d-7a31-478f-bb1c-514d57481ccd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4a4bd26b-7e67-482f-9730-00977c7119db", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4371, + "label": { + "@none": [ + "142r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/22fdf54d-7a31-478f-bb1c-514d57481ccd/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/22fdf54d-7a31-478f-bb1c-514d57481ccd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84ebb18f-b9ce-45df-9cbd-85fa54a3204a" + } + ] + }, + { + "height": 4280, + "label": { + "@none": [ + "142v" + ] + }, + "width": 2829, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9b405b11-9db0-41df-84e7-57c6ee3a4336", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c83128af-32e7-4c29-81af-4887a5fdcd2a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9b405b11-9db0-41df-84e7-57c6ee3a4336", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4280, + "label": { + "@none": [ + "142v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c83128af-32e7-4c29-81af-4887a5fdcd2a/", + "type": "ImageService1" + } + ], + "width": 2829, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c83128af-32e7-4c29-81af-4887a5fdcd2a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/46a515ee-b9bd-477a-9102-c5a9aa7ea1a5" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "143r" + ] + }, + "width": 2983, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/320a0357-4109-4cc6-9f49-211e1d11aef3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3b337d61-e354-4b14-9168-71ab551fc23c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/320a0357-4109-4cc6-9f49-211e1d11aef3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "143r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3b337d61-e354-4b14-9168-71ab551fc23c/", + "type": "ImageService1" + } + ], + "width": 2983, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3b337d61-e354-4b14-9168-71ab551fc23c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d57c3679-7118-44fa-91c9-063c7508fd6c" + } + ] + }, + { + "height": 4286, + "label": { + "@none": [ + "143v" + ] + }, + "width": 2853, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/388026d5-bc1c-4662-ac2e-88aea0b51480", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fdc55be3-97c5-40f8-80a7-293d399aaf13", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/388026d5-bc1c-4662-ac2e-88aea0b51480", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4286, + "label": { + "@none": [ + "143v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fdc55be3-97c5-40f8-80a7-293d399aaf13/", + "type": "ImageService1" + } + ], + "width": 2853, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fdc55be3-97c5-40f8-80a7-293d399aaf13/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8593d5a4-6232-450f-b95a-67031c26e105" + } + ] + }, + { + "height": 4419, + "label": { + "@none": [ + "144r" + ] + }, + "width": 3003, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5a59d868-a14f-4828-9ee3-dcaf831c0ade", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bac13504-ac2d-42ac-8b17-e2b9b9492b82", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5a59d868-a14f-4828-9ee3-dcaf831c0ade", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4419, + "label": { + "@none": [ + "144r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bac13504-ac2d-42ac-8b17-e2b9b9492b82/", + "type": "ImageService1" + } + ], + "width": 3003, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bac13504-ac2d-42ac-8b17-e2b9b9492b82/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b10cad44-2958-49a9-b074-7cf09aa9277c" + } + ] + }, + { + "height": 4281, + "label": { + "@none": [ + "144v" + ] + }, + "width": 2863, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9cdd17af-2475-4edc-a9d5-8a832374f87b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b9051084-b56f-4b3a-87b5-d6c2252f4513", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9cdd17af-2475-4edc-a9d5-8a832374f87b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4281, + "label": { + "@none": [ + "144v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b9051084-b56f-4b3a-87b5-d6c2252f4513/", + "type": "ImageService1" + } + ], + "width": 2863, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b9051084-b56f-4b3a-87b5-d6c2252f4513/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c874000c-5e55-4010-90ed-f53cb4c268d4" + } + ] + }, + { + "height": 4380, + "label": { + "@none": [ + "145r" + ] + }, + "width": 2979, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/69dcd476-1ead-4015-b0b4-7e3429484129", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d4e83324-b88a-4ae7-b7dc-59e1f859e7ce", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/69dcd476-1ead-4015-b0b4-7e3429484129", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4380, + "label": { + "@none": [ + "145r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d4e83324-b88a-4ae7-b7dc-59e1f859e7ce/", + "type": "ImageService1" + } + ], + "width": 2979, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d4e83324-b88a-4ae7-b7dc-59e1f859e7ce/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d9ab46f-a04b-4688-a816-bba0b83cd31d" + } + ] + }, + { + "height": 4276, + "label": { + "@none": [ + "145v" + ] + }, + "width": 2858, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a0b5bd9b-c103-4fb9-bfd2-83748f220e28", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/518acd34-f38d-4376-854c-4ad89b09db55", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a0b5bd9b-c103-4fb9-bfd2-83748f220e28", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4276, + "label": { + "@none": [ + "145v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/518acd34-f38d-4376-854c-4ad89b09db55/", + "type": "ImageService1" + } + ], + "width": 2858, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/518acd34-f38d-4376-854c-4ad89b09db55/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5b23d72-ac5a-4a52-83cf-a21dae02dd30" + } + ] + }, + { + "height": 4361, + "label": { + "@none": [ + "146r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/25aec133-f37f-44a4-a18a-dac1b78a0f11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4c46a4ee-6f38-4924-a51a-9ca9c5b8468c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/25aec133-f37f-44a4-a18a-dac1b78a0f11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4361, + "label": { + "@none": [ + "146r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4c46a4ee-6f38-4924-a51a-9ca9c5b8468c/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4c46a4ee-6f38-4924-a51a-9ca9c5b8468c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d78d0f38-ed98-4c21-ae46-4dca4cea8730" + } + ] + }, + { + "height": 4266, + "label": { + "@none": [ + "146v" + ] + }, + "width": 2848, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cc473e6f-a389-4395-ae4c-1cb72a888925", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/81213af5-695c-4b06-8d5a-5a3a3700df08", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cc473e6f-a389-4395-ae4c-1cb72a888925", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4266, + "label": { + "@none": [ + "146v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/81213af5-695c-4b06-8d5a-5a3a3700df08/", + "type": "ImageService1" + } + ], + "width": 2848, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/81213af5-695c-4b06-8d5a-5a3a3700df08/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bba3a4ff-109d-4723-8e7e-28b24e7033aa" + } + ] + }, + { + "height": 4377, + "label": { + "@none": [ + "147r" + ] + }, + "width": 2952, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7fc32989-6458-4673-9316-0e92fc98e9e1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6599f44f-f9ab-4d40-8f98-62f6122b17da", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7fc32989-6458-4673-9316-0e92fc98e9e1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4377, + "label": { + "@none": [ + "147r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6599f44f-f9ab-4d40-8f98-62f6122b17da/", + "type": "ImageService1" + } + ], + "width": 2952, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6599f44f-f9ab-4d40-8f98-62f6122b17da/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80edf7ae-7735-4739-8269-0f10568d89c6" + } + ] + }, + { + "height": 4258, + "label": { + "@none": [ + "147v" + ] + }, + "width": 2824, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b3d2a451-05a0-4700-b3e9-735d56b5b0b3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/35e16bff-db51-4a29-9a4e-e854adec8fc9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b3d2a451-05a0-4700-b3e9-735d56b5b0b3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4258, + "label": { + "@none": [ + "147v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/35e16bff-db51-4a29-9a4e-e854adec8fc9/", + "type": "ImageService1" + } + ], + "width": 2824, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/35e16bff-db51-4a29-9a4e-e854adec8fc9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5610491-48d1-446b-b1a0-ee81c13ce7a4" + } + ] + }, + { + "height": 4404, + "label": { + "@none": [ + "148r" + ] + }, + "width": 2902, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/238b6710-4f89-40bf-92f4-9a367f4d6dd8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d61bcdb8-6458-4435-9efd-ca013ffae61e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/238b6710-4f89-40bf-92f4-9a367f4d6dd8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4404, + "label": { + "@none": [ + "148r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d61bcdb8-6458-4435-9efd-ca013ffae61e/", + "type": "ImageService1" + } + ], + "width": 2902, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d61bcdb8-6458-4435-9efd-ca013ffae61e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/667117cc-d2ea-4d08-9115-67f2c93bee7e" + } + ] + }, + { + "height": 4285, + "label": { + "@none": [ + "148v" + ] + }, + "width": 2820, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0897dcff-251a-4dec-87e6-fcdfc0b93c00", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/352b81cb-26da-4f91-a815-0652bbb6d983", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0897dcff-251a-4dec-87e6-fcdfc0b93c00", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4285, + "label": { + "@none": [ + "148v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/352b81cb-26da-4f91-a815-0652bbb6d983/", + "type": "ImageService1" + } + ], + "width": 2820, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/352b81cb-26da-4f91-a815-0652bbb6d983/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38b35792-4d38-44c2-be52-17b67bd01c3d" + } + ] + }, + { + "height": 4370, + "label": { + "@none": [ + "149r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2c2a29b0-c05e-4882-bc3b-bba0a6e8bffa", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1d787591-d252-4400-9fd1-3d705b0f2a7c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2c2a29b0-c05e-4882-bc3b-bba0a6e8bffa", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4370, + "label": { + "@none": [ + "149r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1d787591-d252-4400-9fd1-3d705b0f2a7c/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1d787591-d252-4400-9fd1-3d705b0f2a7c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38fee90e-d4a3-4753-8556-ef7106cc14fc" + } + ] + }, + { + "height": 4302, + "label": { + "@none": [ + "149v" + ] + }, + "width": 2826, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/04b73d2e-401b-4128-b709-1fa30c5ab4a1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d20f8e89-106d-4c70-abac-ac6e8a371d91", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/04b73d2e-401b-4128-b709-1fa30c5ab4a1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4302, + "label": { + "@none": [ + "149v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d20f8e89-106d-4c70-abac-ac6e8a371d91/", + "type": "ImageService1" + } + ], + "width": 2826, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d20f8e89-106d-4c70-abac-ac6e8a371d91/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f4ada61-fd44-474c-94bc-79007f3d09ec" + } + ] + }, + { + "height": 4424, + "label": { + "@none": [ + "150r" + ] + }, + "width": 2916, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0085d09d-c626-47ac-a65b-0143cde967bc", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ae5aae17-8b5b-4308-b8cf-27b71a528251", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0085d09d-c626-47ac-a65b-0143cde967bc", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4424, + "label": { + "@none": [ + "150r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ae5aae17-8b5b-4308-b8cf-27b71a528251/", + "type": "ImageService1" + } + ], + "width": 2916, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ae5aae17-8b5b-4308-b8cf-27b71a528251/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a991ada1-1f78-4e8d-8552-a1fb8b51c142" + } + ] + }, + { + "height": 4270, + "label": { + "@none": [ + "150v" + ] + }, + "width": 2815, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/53e86d18-92e8-4609-81bf-4933e1d8e4c5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7854cbfa-7e48-451d-9ff4-b4b72448ae18", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/53e86d18-92e8-4609-81bf-4933e1d8e4c5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4270, + "label": { + "@none": [ + "150v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7854cbfa-7e48-451d-9ff4-b4b72448ae18/", + "type": "ImageService1" + } + ], + "width": 2815, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7854cbfa-7e48-451d-9ff4-b4b72448ae18/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8444eeb5-8902-430e-b353-9a2f72f5900b" + } + ] + }, + { + "height": 4380, + "label": { + "@none": [ + "151r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6c67277a-0ae8-47d8-8980-de01a7a97497", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6d189f4d-64c7-4d91-8752-cba49b1a8aff", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6c67277a-0ae8-47d8-8980-de01a7a97497", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4380, + "label": { + "@none": [ + "151r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6d189f4d-64c7-4d91-8752-cba49b1a8aff/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6d189f4d-64c7-4d91-8752-cba49b1a8aff/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5159367e-f7af-4f90-8159-5bd50d2e4392" + } + ] + }, + { + "height": 4248, + "label": { + "@none": [ + "151v" + ] + }, + "width": 2843, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/49c21d90-c244-44b0-a2b4-c2ce5b66b1ad", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cbde46e5-fcc2-465f-bae0-c3f9bffe4f92", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/49c21d90-c244-44b0-a2b4-c2ce5b66b1ad", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4248, + "label": { + "@none": [ + "151v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cbde46e5-fcc2-465f-bae0-c3f9bffe4f92/", + "type": "ImageService1" + } + ], + "width": 2843, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cbde46e5-fcc2-465f-bae0-c3f9bffe4f92/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43bff9e6-d22c-43ed-816f-6cb761cbc76c" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "152r" + ] + }, + "width": 2941, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b92306c2-8dc4-4b2b-b5d7-2350ae2cdbde", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/acd4a8ba-4bd6-425c-b851-ea8dfb23e6e2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b92306c2-8dc4-4b2b-b5d7-2350ae2cdbde", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "152r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/acd4a8ba-4bd6-425c-b851-ea8dfb23e6e2/", + "type": "ImageService1" + } + ], + "width": 2941, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/acd4a8ba-4bd6-425c-b851-ea8dfb23e6e2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/940c9f48-ba84-44d2-aca4-9532a4f1789a" + } + ] + }, + { + "height": 4245, + "label": { + "@none": [ + "152v" + ] + }, + "width": 2859, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/15be234a-0dc8-4144-a166-e95d7d958c3f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6b7bc169-dd41-4b53-a596-17a242ebaaf4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/15be234a-0dc8-4144-a166-e95d7d958c3f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4245, + "label": { + "@none": [ + "152v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6b7bc169-dd41-4b53-a596-17a242ebaaf4/", + "type": "ImageService1" + } + ], + "width": 2859, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6b7bc169-dd41-4b53-a596-17a242ebaaf4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed7acb4b-effc-441d-a000-fff099eb8e11" + } + ] + }, + { + "height": 4362, + "label": { + "@none": [ + "153r" + ] + }, + "width": 2889, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5f529753-f297-447c-8c81-c671f614e572", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d3e2165e-3b50-47c9-8d3e-f1c78086cf1b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5f529753-f297-447c-8c81-c671f614e572", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4362, + "label": { + "@none": [ + "153r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d3e2165e-3b50-47c9-8d3e-f1c78086cf1b/", + "type": "ImageService1" + } + ], + "width": 2889, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d3e2165e-3b50-47c9-8d3e-f1c78086cf1b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06cc0c64-0319-439d-acc1-7abece48a3e0" + } + ] + }, + { + "height": 4303, + "label": { + "@none": [ + "153v" + ] + }, + "width": 2804, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/541db314-dc1e-49dc-8ff3-853a23989b46", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/935ff293-3414-47bc-a5c2-95af7805f210", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/541db314-dc1e-49dc-8ff3-853a23989b46", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4303, + "label": { + "@none": [ + "153v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/935ff293-3414-47bc-a5c2-95af7805f210/", + "type": "ImageService1" + } + ], + "width": 2804, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/935ff293-3414-47bc-a5c2-95af7805f210/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab9a10fc-fd8c-400e-8992-3bc4829610dd" + } + ] + }, + { + "height": 4399, + "label": { + "@none": [ + "154r" + ] + }, + "width": 2889, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9bfc7813-53c7-4af9-a2b5-41a1667e6fda", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c369ac89-ee6b-423e-850c-96c6623fb11b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9bfc7813-53c7-4af9-a2b5-41a1667e6fda", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4399, + "label": { + "@none": [ + "154r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c369ac89-ee6b-423e-850c-96c6623fb11b/", + "type": "ImageService1" + } + ], + "width": 2889, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c369ac89-ee6b-423e-850c-96c6623fb11b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d2fbdcd-1b2e-4bf3-b7d3-9041f247ec06" + } + ] + }, + { + "height": 4308, + "label": { + "@none": [ + "154v" + ] + }, + "width": 2839, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c3c5030f-043e-4df4-a8a5-342f6032717b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fc2f1d4c-009f-4fab-940a-18a2708412c2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c3c5030f-043e-4df4-a8a5-342f6032717b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4308, + "label": { + "@none": [ + "154v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fc2f1d4c-009f-4fab-940a-18a2708412c2/", + "type": "ImageService1" + } + ], + "width": 2839, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fc2f1d4c-009f-4fab-940a-18a2708412c2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/454e779f-e4a3-471b-b9c4-c87af54afa71" + } + ] + }, + { + "height": 4338, + "label": { + "@none": [ + "155r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/86f1ec54-f7e0-488d-9eb1-0177f165d0ed", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dc377d02-9062-4dd3-b14c-789e74822be0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/86f1ec54-f7e0-488d-9eb1-0177f165d0ed", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4338, + "label": { + "@none": [ + "155r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dc377d02-9062-4dd3-b14c-789e74822be0/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dc377d02-9062-4dd3-b14c-789e74822be0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd0c10ed-e3c4-4e7d-aeb1-68668caa59eb" + } + ] + }, + { + "height": 4290, + "label": { + "@none": [ + "155v" + ] + }, + "width": 2834, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cc4ab7a9-284f-4d75-85ae-1708749a0366", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cdd5084f-f4fd-4fd4-ba58-b6da790ba800", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cc4ab7a9-284f-4d75-85ae-1708749a0366", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4290, + "label": { + "@none": [ + "155v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cdd5084f-f4fd-4fd4-ba58-b6da790ba800/", + "type": "ImageService1" + } + ], + "width": 2834, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cdd5084f-f4fd-4fd4-ba58-b6da790ba800/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cd606f7c-db31-43d6-ab3c-91d250c58f7c" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "156r" + ] + }, + "width": 2965, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5901c420-5841-45fc-a48c-d555ce6e8eea", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1ff39a63-7499-4a2a-8d5f-301f26c92f21", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5901c420-5841-45fc-a48c-d555ce6e8eea", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "156r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1ff39a63-7499-4a2a-8d5f-301f26c92f21/", + "type": "ImageService1" + } + ], + "width": 2965, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1ff39a63-7499-4a2a-8d5f-301f26c92f21/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4796e52d-f278-45d9-9487-a8f115ca80ed" + } + ] + }, + { + "height": 4323, + "label": { + "@none": [ + "156v" + ] + }, + "width": 2791, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f5c93f6b-1e14-4def-9343-f0953cb2b28d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4e0d2d03-6658-4491-b7d2-c46a3084dc5d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f5c93f6b-1e14-4def-9343-f0953cb2b28d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4323, + "label": { + "@none": [ + "156v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4e0d2d03-6658-4491-b7d2-c46a3084dc5d/", + "type": "ImageService1" + } + ], + "width": 2791, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4e0d2d03-6658-4491-b7d2-c46a3084dc5d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97ca3a74-3a2c-4eb9-9cb6-965b4ca98fa2" + } + ] + }, + { + "height": 4346, + "label": { + "@none": [ + "157r" + ] + }, + "width": 2950, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ac589d85-0289-4427-9827-d0abb60e5e2a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/de9c8685-06c4-4a7b-b48f-559c16254521", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ac589d85-0289-4427-9827-d0abb60e5e2a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4346, + "label": { + "@none": [ + "157r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/de9c8685-06c4-4a7b-b48f-559c16254521/", + "type": "ImageService1" + } + ], + "width": 2950, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/de9c8685-06c4-4a7b-b48f-559c16254521/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0a0c8345-cea6-433d-8aba-238ca118e9f5" + } + ] + }, + { + "height": 4318, + "label": { + "@none": [ + "157v" + ] + }, + "width": 2834, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/84626fb9-d17f-456e-b9c5-ad57a3cc82cb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8727551c-cbe9-4a90-8234-3dbd4eee3a90", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/84626fb9-d17f-456e-b9c5-ad57a3cc82cb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4318, + "label": { + "@none": [ + "157v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8727551c-cbe9-4a90-8234-3dbd4eee3a90/", + "type": "ImageService1" + } + ], + "width": 2834, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8727551c-cbe9-4a90-8234-3dbd4eee3a90/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac7f1e00-6636-47b7-9f06-2697b190901b" + } + ] + }, + { + "height": 4345, + "label": { + "@none": [ + "158r" + ] + }, + "width": 2920, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7331beea-6fa0-4547-a968-2c3e9a73d7da", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/96293188-9cae-40ee-9149-6a5cbb6b1590", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7331beea-6fa0-4547-a968-2c3e9a73d7da", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4345, + "label": { + "@none": [ + "158r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/96293188-9cae-40ee-9149-6a5cbb6b1590/", + "type": "ImageService1" + } + ], + "width": 2920, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/96293188-9cae-40ee-9149-6a5cbb6b1590/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a4fe994e-8d7e-4d50-a419-24e0c0aa4353" + } + ] + }, + { + "height": 4295, + "label": { + "@none": [ + "158v" + ] + }, + "width": 2834, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e2bc3790-ace4-438a-9b66-ffb3d1ee720c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/61f5f49b-e177-4947-952b-f76f5af7721f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e2bc3790-ace4-438a-9b66-ffb3d1ee720c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4295, + "label": { + "@none": [ + "158v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/61f5f49b-e177-4947-952b-f76f5af7721f/", + "type": "ImageService1" + } + ], + "width": 2834, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/61f5f49b-e177-4947-952b-f76f5af7721f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7b150b53-6d5e-45de-bcfb-b00f6f00d3d8" + } + ] + }, + { + "height": 4332, + "label": { + "@none": [ + "159r" + ] + }, + "width": 2931, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/565d561a-352a-4b24-ae24-3d8fdaf2b1e2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7d8de94c-631c-4172-93c5-c9d0dc425292", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/565d561a-352a-4b24-ae24-3d8fdaf2b1e2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4332, + "label": { + "@none": [ + "159r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7d8de94c-631c-4172-93c5-c9d0dc425292/", + "type": "ImageService1" + } + ], + "width": 2931, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7d8de94c-631c-4172-93c5-c9d0dc425292/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e93f97ae-3644-4df0-bdb4-e9424f65b666" + } + ] + }, + { + "height": 4264, + "label": { + "@none": [ + "159v" + ] + }, + "width": 2844, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/92eec5d9-9404-472e-a1e9-2df5d12f69cb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2ea48fa0-580f-4eef-8b55-b800ca3f47f0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/92eec5d9-9404-472e-a1e9-2df5d12f69cb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4264, + "label": { + "@none": [ + "159v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2ea48fa0-580f-4eef-8b55-b800ca3f47f0/", + "type": "ImageService1" + } + ], + "width": 2844, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2ea48fa0-580f-4eef-8b55-b800ca3f47f0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64b99d66-5dea-4cfd-8619-142881c6f1ff" + } + ] + }, + { + "height": 4346, + "label": { + "@none": [ + "160r" + ] + }, + "width": 2949, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/82d85530-dc09-458b-bdce-185565da3767", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/32c519c1-4f04-487b-a077-c1e83c6f18d8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/82d85530-dc09-458b-bdce-185565da3767", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4346, + "label": { + "@none": [ + "160r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/32c519c1-4f04-487b-a077-c1e83c6f18d8/", + "type": "ImageService1" + } + ], + "width": 2949, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/32c519c1-4f04-487b-a077-c1e83c6f18d8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b49a88b2-f26a-4904-9eb4-f55fc71e15fd" + } + ] + }, + { + "height": 4317, + "label": { + "@none": [ + "160v" + ] + }, + "width": 2811, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d3f950e0-a1c9-4f6f-ae16-81001a94c8d0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6e879d7d-eefc-4c13-b310-92bad833a599", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d3f950e0-a1c9-4f6f-ae16-81001a94c8d0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4317, + "label": { + "@none": [ + "160v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6e879d7d-eefc-4c13-b310-92bad833a599/", + "type": "ImageService1" + } + ], + "width": 2811, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6e879d7d-eefc-4c13-b310-92bad833a599/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6dd479e-79cc-4d59-a038-c0ab4f5ed174" + } + ] + }, + { + "height": 4341, + "label": { + "@none": [ + "161r" + ] + }, + "width": 2874, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/40f73b6f-df5d-4775-bcf2-faf89ad889f1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3b3d9768-4566-4d2f-b791-5faef23be823", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/40f73b6f-df5d-4775-bcf2-faf89ad889f1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4341, + "label": { + "@none": [ + "161r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3b3d9768-4566-4d2f-b791-5faef23be823/", + "type": "ImageService1" + } + ], + "width": 2874, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3b3d9768-4566-4d2f-b791-5faef23be823/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a39599db-b560-4c88-b133-0d4a9b345187" + } + ] + }, + { + "height": 4288, + "label": { + "@none": [ + "161v" + ] + }, + "width": 2812, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/03f4c07f-93ae-4c03-a5cd-680e45a68657", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a25e9e5b-73e7-4ef6-9a45-bceb5cf53992", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/03f4c07f-93ae-4c03-a5cd-680e45a68657", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4288, + "label": { + "@none": [ + "161v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a25e9e5b-73e7-4ef6-9a45-bceb5cf53992/", + "type": "ImageService1" + } + ], + "width": 2812, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a25e9e5b-73e7-4ef6-9a45-bceb5cf53992/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69870575-223d-4592-bbf0-0b1398f19ef7" + } + ] + }, + { + "height": 4389, + "label": { + "@none": [ + "162r" + ] + }, + "width": 2883, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/02b1ed35-be31-4c8b-8caf-4e4d875f5813", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f4f41736-3705-43f7-a743-0720aa4ec2f3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/02b1ed35-be31-4c8b-8caf-4e4d875f5813", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4389, + "label": { + "@none": [ + "162r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f4f41736-3705-43f7-a743-0720aa4ec2f3/", + "type": "ImageService1" + } + ], + "width": 2883, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f4f41736-3705-43f7-a743-0720aa4ec2f3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7fa7d6b7-cbf0-4949-9495-da0fbf26baf8" + } + ] + }, + { + "height": 4312, + "label": { + "@none": [ + "162v" + ] + }, + "width": 2820, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6fdf1b0c-52ab-43dd-826d-5dcd90616823", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/74618658-a2ae-4ad4-a92f-59e4badd997e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6fdf1b0c-52ab-43dd-826d-5dcd90616823", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4312, + "label": { + "@none": [ + "162v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/74618658-a2ae-4ad4-a92f-59e4badd997e/", + "type": "ImageService1" + } + ], + "width": 2820, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/74618658-a2ae-4ad4-a92f-59e4badd997e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/56059afe-efd2-4426-9a19-12af25a88499" + } + ] + }, + { + "height": 4379, + "label": { + "@none": [ + "163r" + ] + }, + "width": 2897, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5ae77269-c85d-414d-9038-c43f7a052690", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e567a3d3-69cc-4711-a1dd-c22a6ccced3e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5ae77269-c85d-414d-9038-c43f7a052690", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4379, + "label": { + "@none": [ + "163r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e567a3d3-69cc-4711-a1dd-c22a6ccced3e/", + "type": "ImageService1" + } + ], + "width": 2897, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e567a3d3-69cc-4711-a1dd-c22a6ccced3e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd3c465e-47a8-47db-b14f-27d28f77f523" + } + ] + }, + { + "height": 4312, + "label": { + "@none": [ + "163v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c6133d4e-57dc-4d28-aa3a-1acceeb2adce", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2754ba3a-bad5-413c-b817-cfcd51889268", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c6133d4e-57dc-4d28-aa3a-1acceeb2adce", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4312, + "label": { + "@none": [ + "163v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2754ba3a-bad5-413c-b817-cfcd51889268/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2754ba3a-bad5-413c-b817-cfcd51889268/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b1af4ac-18af-4cff-8d96-d46f63611534" + } + ] + }, + { + "height": 4346, + "label": { + "@none": [ + "164r" + ] + }, + "width": 2892, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/47f73890-fff4-4ca8-9dd9-c77417ff5c4e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ed120638-1fa9-446e-9085-eed335f3484b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/47f73890-fff4-4ca8-9dd9-c77417ff5c4e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4346, + "label": { + "@none": [ + "164r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ed120638-1fa9-446e-9085-eed335f3484b/", + "type": "ImageService1" + } + ], + "width": 2892, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ed120638-1fa9-446e-9085-eed335f3484b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29fd796f-7ee5-43e3-921c-bbbf1d4f2267" + } + ] + }, + { + "height": 4323, + "label": { + "@none": [ + "164v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c6dcb14b-9c4a-44a4-a69f-c5fc0b10ab3e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/39793a34-fce5-42be-85ff-202cd607271c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c6dcb14b-9c4a-44a4-a69f-c5fc0b10ab3e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4323, + "label": { + "@none": [ + "164v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/39793a34-fce5-42be-85ff-202cd607271c/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/39793a34-fce5-42be-85ff-202cd607271c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24641e3a-0bb1-45d6-9d97-19a3273451d7" + } + ] + }, + { + "height": 4404, + "label": { + "@none": [ + "165r" + ] + }, + "width": 2928, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2a9421b2-1587-4462-ad51-706b3662d824", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/56ded6e3-e07c-4b29-9a90-1cc5d958d535", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2a9421b2-1587-4462-ad51-706b3662d824", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4404, + "label": { + "@none": [ + "165r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/56ded6e3-e07c-4b29-9a90-1cc5d958d535/", + "type": "ImageService1" + } + ], + "width": 2928, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/56ded6e3-e07c-4b29-9a90-1cc5d958d535/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/add033be-0b5a-44d5-ad6a-a811912f1a88" + } + ] + }, + { + "height": 4331, + "label": { + "@none": [ + "165v" + ] + }, + "width": 2835, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bc6f62f2-1935-430b-9985-615aae321efb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/51249bdd-12cc-47ca-8e95-5c75398f0297", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bc6f62f2-1935-430b-9985-615aae321efb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4331, + "label": { + "@none": [ + "165v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/51249bdd-12cc-47ca-8e95-5c75398f0297/", + "type": "ImageService1" + } + ], + "width": 2835, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/51249bdd-12cc-47ca-8e95-5c75398f0297/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8fe8a7d2-26f9-4390-9f7d-e0c688fdd611" + } + ] + }, + { + "height": 4360, + "label": { + "@none": [ + "166r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/42f7cfe3-812d-4064-8582-f5d98ad6372c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2a78ad50-1fcd-4c00-92d1-4964f986b386", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/42f7cfe3-812d-4064-8582-f5d98ad6372c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4360, + "label": { + "@none": [ + "166r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2a78ad50-1fcd-4c00-92d1-4964f986b386/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2a78ad50-1fcd-4c00-92d1-4964f986b386/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac84803a-7a56-4fab-8cc6-12023911f30d" + } + ] + }, + { + "height": 4307, + "label": { + "@none": [ + "166v" + ] + }, + "width": 2815, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3997a44e-9a33-4a4c-b3d8-01c6c0188186", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c882e0b1-4c65-4eb9-99c6-c7d198506264", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3997a44e-9a33-4a4c-b3d8-01c6c0188186", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4307, + "label": { + "@none": [ + "166v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c882e0b1-4c65-4eb9-99c6-c7d198506264/", + "type": "ImageService1" + } + ], + "width": 2815, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c882e0b1-4c65-4eb9-99c6-c7d198506264/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9713854c-7244-4cf4-aace-85b5fe457d4c" + } + ] + }, + { + "height": 4356, + "label": { + "@none": [ + "167r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6fd46a90-eb74-4ccd-938d-7ff6f15a3b6b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/30cac706-b8fc-4267-90c8-a9b8864ed53d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6fd46a90-eb74-4ccd-938d-7ff6f15a3b6b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4356, + "label": { + "@none": [ + "167r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/30cac706-b8fc-4267-90c8-a9b8864ed53d/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/30cac706-b8fc-4267-90c8-a9b8864ed53d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b938d2cd-e6ab-406b-a921-2bdd2c551c6b" + } + ] + }, + { + "height": 4307, + "label": { + "@none": [ + "167v" + ] + }, + "width": 2825, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1f726b4a-bbab-4811-80c8-186e60b4534f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/826ae579-523a-4126-9c88-1a5b87afe711", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1f726b4a-bbab-4811-80c8-186e60b4534f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4307, + "label": { + "@none": [ + "167v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/826ae579-523a-4126-9c88-1a5b87afe711/", + "type": "ImageService1" + } + ], + "width": 2825, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/826ae579-523a-4126-9c88-1a5b87afe711/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f1662c0-5d84-43c8-a2a7-8224d9741857" + } + ] + }, + { + "height": 4351, + "label": { + "@none": [ + "168r" + ] + }, + "width": 2912, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f1b2526f-0714-4628-85fc-73259994efbe", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/de2372b1-09ba-4308-bb72-e3bc69d82f9b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f1b2526f-0714-4628-85fc-73259994efbe", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4351, + "label": { + "@none": [ + "168r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/de2372b1-09ba-4308-bb72-e3bc69d82f9b/", + "type": "ImageService1" + } + ], + "width": 2912, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/de2372b1-09ba-4308-bb72-e3bc69d82f9b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/78320343-a0e0-4f73-9e7d-b2318423ea0d" + } + ] + }, + { + "height": 4293, + "label": { + "@none": [ + "168v" + ] + }, + "width": 2806, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d6d035f3-00d3-4f87-a559-a4c5e9878eb1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bc7414cc-f004-4afb-afc2-20f4d66048e7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d6d035f3-00d3-4f87-a559-a4c5e9878eb1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4293, + "label": { + "@none": [ + "168v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bc7414cc-f004-4afb-afc2-20f4d66048e7/", + "type": "ImageService1" + } + ], + "width": 2806, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bc7414cc-f004-4afb-afc2-20f4d66048e7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e377885b-38d6-4534-89ab-459f0a88700c" + } + ] + }, + { + "height": 4318, + "label": { + "@none": [ + "169r" + ] + }, + "width": 2921, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4e575a1e-87b7-40f4-9a8f-22d0aaca833d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/99290e2b-64bc-4415-8b92-4078ba916df7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4e575a1e-87b7-40f4-9a8f-22d0aaca833d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4318, + "label": { + "@none": [ + "169r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/99290e2b-64bc-4415-8b92-4078ba916df7/", + "type": "ImageService1" + } + ], + "width": 2921, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/99290e2b-64bc-4415-8b92-4078ba916df7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f325323-e790-4a34-83ef-f610ff8c1de8" + } + ] + }, + { + "height": 4325, + "label": { + "@none": [ + "169v" + ] + }, + "width": 2808, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4031a98a-6481-4b9c-8a9b-4fdee25b3848", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f038a131-ec7e-455f-ad29-f1c50c04e2c3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4031a98a-6481-4b9c-8a9b-4fdee25b3848", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4325, + "label": { + "@none": [ + "169v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f038a131-ec7e-455f-ad29-f1c50c04e2c3/", + "type": "ImageService1" + } + ], + "width": 2808, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f038a131-ec7e-455f-ad29-f1c50c04e2c3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1a59ca7-ce53-438e-b782-5cbc9ede7d72" + } + ] + }, + { + "height": 4342, + "label": { + "@none": [ + "170r" + ] + }, + "width": 2864, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2acc68cb-e4db-460a-9bb7-e2bf3a3ee66a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d6a447dc-ace1-40b8-8684-9c93589c6ce4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2acc68cb-e4db-460a-9bb7-e2bf3a3ee66a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4342, + "label": { + "@none": [ + "170r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d6a447dc-ace1-40b8-8684-9c93589c6ce4/", + "type": "ImageService1" + } + ], + "width": 2864, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d6a447dc-ace1-40b8-8684-9c93589c6ce4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d4115ff-ab7b-40ef-aed5-a9f3f195c2b7" + } + ] + }, + { + "height": 4321, + "label": { + "@none": [ + "170v" + ] + }, + "width": 2835, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/232fbedb-710a-410d-9446-a0eef30ac745", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/db5df4b3-89d1-4450-9345-51b53f1799e3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/232fbedb-710a-410d-9446-a0eef30ac745", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4321, + "label": { + "@none": [ + "170v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/db5df4b3-89d1-4450-9345-51b53f1799e3/", + "type": "ImageService1" + } + ], + "width": 2835, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/db5df4b3-89d1-4450-9345-51b53f1799e3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbd41da7-6609-400a-b4ee-8f5e82aa524b" + } + ] + }, + { + "height": 4336, + "label": { + "@none": [ + "171r" + ] + }, + "width": 2854, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/918ff66b-2201-4c8c-bea2-bd6ce3de29a9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8b8a9875-efe3-47f6-b064-db7ce80494ac", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/918ff66b-2201-4c8c-bea2-bd6ce3de29a9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4336, + "label": { + "@none": [ + "171r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8b8a9875-efe3-47f6-b064-db7ce80494ac/", + "type": "ImageService1" + } + ], + "width": 2854, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8b8a9875-efe3-47f6-b064-db7ce80494ac/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6af47b34-10b8-4a18-a0ca-cad56bb61be1" + } + ] + }, + { + "height": 4321, + "label": { + "@none": [ + "171v" + ] + }, + "width": 2830, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e213ab89-790e-41b9-986b-bed32daa3690", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4cf0be4d-ef56-4c49-a7e1-886d9995adc6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e213ab89-790e-41b9-986b-bed32daa3690", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4321, + "label": { + "@none": [ + "171v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4cf0be4d-ef56-4c49-a7e1-886d9995adc6/", + "type": "ImageService1" + } + ], + "width": 2830, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4cf0be4d-ef56-4c49-a7e1-886d9995adc6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d057d0c0-3665-4899-9a76-1c0adbf5769f" + } + ] + }, + { + "height": 4332, + "label": { + "@none": [ + "172r" + ] + }, + "width": 2893, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/30b7c994-f2a5-4d59-a4e8-83cb0670609b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/224eaa68-b8bd-4096-aa4b-f0d2f9b4b5f3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/30b7c994-f2a5-4d59-a4e8-83cb0670609b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4332, + "label": { + "@none": [ + "172r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/224eaa68-b8bd-4096-aa4b-f0d2f9b4b5f3/", + "type": "ImageService1" + } + ], + "width": 2893, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/224eaa68-b8bd-4096-aa4b-f0d2f9b4b5f3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1aed71df-aeee-45e6-89e6-00addb95bed4" + } + ] + }, + { + "height": 4336, + "label": { + "@none": [ + "172v" + ] + }, + "width": 2821, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4202af7e-8167-48c0-8dfd-5022d0052db1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7c5876e0-9e21-45a0-9e51-92a180d0673a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4202af7e-8167-48c0-8dfd-5022d0052db1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4336, + "label": { + "@none": [ + "172v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7c5876e0-9e21-45a0-9e51-92a180d0673a/", + "type": "ImageService1" + } + ], + "width": 2821, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7c5876e0-9e21-45a0-9e51-92a180d0673a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9259064c-e24c-4eb6-95ca-3305b13a922c" + } + ] + }, + { + "height": 4322, + "label": { + "@none": [ + "173r" + ] + }, + "width": 2821, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/11409a83-c78b-4896-8685-e4492c450623", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f534f31c-22f0-4736-b7b3-cc0fe37d4bf4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/11409a83-c78b-4896-8685-e4492c450623", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4322, + "label": { + "@none": [ + "173r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f534f31c-22f0-4736-b7b3-cc0fe37d4bf4/", + "type": "ImageService1" + } + ], + "width": 2821, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f534f31c-22f0-4736-b7b3-cc0fe37d4bf4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d57566e9-f07f-4095-881c-41a674ca2d64" + } + ] + }, + { + "height": 4355, + "label": { + "@none": [ + "173v" + ] + }, + "width": 2792, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0f374228-eafb-4d06-b5da-613a45ba2d11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/588dff7c-6d06-4732-bb6d-6aa38e5ba783", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0f374228-eafb-4d06-b5da-613a45ba2d11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4355, + "label": { + "@none": [ + "173v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/588dff7c-6d06-4732-bb6d-6aa38e5ba783/", + "type": "ImageService1" + } + ], + "width": 2792, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/588dff7c-6d06-4732-bb6d-6aa38e5ba783/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3bff7add-8587-4b2e-9943-a736854909be" + } + ] + }, + { + "height": 4293, + "label": { + "@none": [ + "174r" + ] + }, + "width": 2877, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9ce95fdf-b833-4403-b249-d72beaab07cd", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d6e60cef-fc52-4528-bdfe-ca1927d79d4b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9ce95fdf-b833-4403-b249-d72beaab07cd", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4293, + "label": { + "@none": [ + "174r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d6e60cef-fc52-4528-bdfe-ca1927d79d4b/", + "type": "ImageService1" + } + ], + "width": 2877, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d6e60cef-fc52-4528-bdfe-ca1927d79d4b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/baf99bb1-36fc-471c-a66c-92d69b64bf30" + } + ] + }, + { + "height": 4317, + "label": { + "@none": [ + "174v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0396678e-11f4-4902-ba9f-bcf26e2d2cd5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cd26c355-2a49-49a4-8a83-96c04175a381", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0396678e-11f4-4902-ba9f-bcf26e2d2cd5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4317, + "label": { + "@none": [ + "174v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cd26c355-2a49-49a4-8a83-96c04175a381/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cd26c355-2a49-49a4-8a83-96c04175a381/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81eded45-8fce-4585-8f35-34e2584d6cdd" + } + ] + }, + { + "height": 4318, + "label": { + "@none": [ + "175r" + ] + }, + "width": 2931, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/026e66da-4b0a-4ae3-be44-3c3b13d7811c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/54c722ed-9654-4921-85d6-896e425f4bdb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/026e66da-4b0a-4ae3-be44-3c3b13d7811c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4318, + "label": { + "@none": [ + "175r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/54c722ed-9654-4921-85d6-896e425f4bdb/", + "type": "ImageService1" + } + ], + "width": 2931, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/54c722ed-9654-4921-85d6-896e425f4bdb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/017b6290-37cc-4976-8854-32e5bd210ecb" + } + ] + }, + { + "height": 4289, + "label": { + "@none": [ + "175v" + ] + }, + "width": 2787, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/82843086-498a-4a29-96c3-834094d66eda", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/91d0e21c-c8a4-4ccb-a18d-14f069b93f76", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/82843086-498a-4a29-96c3-834094d66eda", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4289, + "label": { + "@none": [ + "175v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/91d0e21c-c8a4-4ccb-a18d-14f069b93f76/", + "type": "ImageService1" + } + ], + "width": 2787, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/91d0e21c-c8a4-4ccb-a18d-14f069b93f76/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e025d352-949f-48dc-96be-a73f3d60af61" + } + ] + }, + { + "height": 4351, + "label": { + "@none": [ + "176r" + ] + }, + "width": 2920, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b214dfa-e9cb-461d-a893-f0d28a371029", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/05ac10c1-8f5c-4f05-ba19-074d4748f76d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b214dfa-e9cb-461d-a893-f0d28a371029", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4351, + "label": { + "@none": [ + "176r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/05ac10c1-8f5c-4f05-ba19-074d4748f76d/", + "type": "ImageService1" + } + ], + "width": 2920, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/05ac10c1-8f5c-4f05-ba19-074d4748f76d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d6835e0-a8c9-4774-910e-670ac4793045" + } + ] + }, + { + "height": 4325, + "label": { + "@none": [ + "176v" + ] + }, + "width": 2832, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bba0df63-05d2-4f66-9dad-702d518d5a2b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5862d6ed-1fe6-464f-8429-dfc6a27ffc7c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bba0df63-05d2-4f66-9dad-702d518d5a2b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4325, + "label": { + "@none": [ + "176v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5862d6ed-1fe6-464f-8429-dfc6a27ffc7c/", + "type": "ImageService1" + } + ], + "width": 2832, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5862d6ed-1fe6-464f-8429-dfc6a27ffc7c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65da3c65-d2d3-4f8d-91ac-778a68354a2a" + } + ] + }, + { + "height": 4346, + "label": { + "@none": [ + "177r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b184f0a3-34a8-48e0-b043-7d7a66876abe", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9a84c866-1666-46a8-8972-2815b362ed39", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b184f0a3-34a8-48e0-b043-7d7a66876abe", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4346, + "label": { + "@none": [ + "177r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9a84c866-1666-46a8-8972-2815b362ed39/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9a84c866-1666-46a8-8972-2815b362ed39/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c72d94d-2f90-4e22-bbfe-3ba9e35c34d3" + } + ] + }, + { + "height": 4356, + "label": { + "@none": [ + "177v" + ] + }, + "width": 2815, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c5dc122d-e071-4a54-ad15-74f680ff13e7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c2ce0847-9f08-4d61-98a1-06ea7d0b1f25", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c5dc122d-e071-4a54-ad15-74f680ff13e7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4356, + "label": { + "@none": [ + "177v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c2ce0847-9f08-4d61-98a1-06ea7d0b1f25/", + "type": "ImageService1" + } + ], + "width": 2815, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c2ce0847-9f08-4d61-98a1-06ea7d0b1f25/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/563eeef9-398a-4518-a7bb-edee2d3c6b85" + } + ] + }, + { + "height": 4337, + "label": { + "@none": [ + "178r" + ] + }, + "width": 2993, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e2e49974-3790-4c46-9cd8-1470f0ce8eef", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/77e46945-4492-49da-a691-4aeabdfb49dd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e2e49974-3790-4c46-9cd8-1470f0ce8eef", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4337, + "label": { + "@none": [ + "178r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/77e46945-4492-49da-a691-4aeabdfb49dd/", + "type": "ImageService1" + } + ], + "width": 2993, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/77e46945-4492-49da-a691-4aeabdfb49dd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b32b22be-97d7-4401-bac4-4cb638cd3beb" + } + ] + }, + { + "height": 4323, + "label": { + "@none": [ + "178v" + ] + }, + "width": 2806, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/787d8772-f53b-4fe0-bac7-b5e2e25e7a5e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e67282bc-dbd0-4844-8c05-e1ebfa2de9c4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/787d8772-f53b-4fe0-bac7-b5e2e25e7a5e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4323, + "label": { + "@none": [ + "178v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e67282bc-dbd0-4844-8c05-e1ebfa2de9c4/", + "type": "ImageService1" + } + ], + "width": 2806, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e67282bc-dbd0-4844-8c05-e1ebfa2de9c4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a84f2d7-4d14-42e6-a349-5d4a1b626175" + } + ] + }, + { + "height": 4307, + "label": { + "@none": [ + "179r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/90e69b5d-0ed8-44fd-9a6b-0d416787d53a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b0f40c82-1144-4c88-b24a-4b9c494e5aca", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/90e69b5d-0ed8-44fd-9a6b-0d416787d53a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4307, + "label": { + "@none": [ + "179r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b0f40c82-1144-4c88-b24a-4b9c494e5aca/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b0f40c82-1144-4c88-b24a-4b9c494e5aca/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa8c1ce1-3d49-4b46-a0d9-3bc4e644f520" + } + ] + }, + { + "height": 4343, + "label": { + "@none": [ + "179v" + ] + }, + "width": 2797, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/490c7fe5-f10b-4583-8f83-bd34dd9c3516", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ceca5156-ad6e-4e2a-ae3f-39ce8aa7c437", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/490c7fe5-f10b-4583-8f83-bd34dd9c3516", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4343, + "label": { + "@none": [ + "179v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ceca5156-ad6e-4e2a-ae3f-39ce8aa7c437/", + "type": "ImageService1" + } + ], + "width": 2797, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ceca5156-ad6e-4e2a-ae3f-39ce8aa7c437/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01cc6b0a-af21-471d-9a46-72599cbcf3c3" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_media_nga_gov_public_manifests_nga_highlights": { + "logo": [ + { + "id": "https://www.nga.gov/content/dam/ngaweb/imgs/NGAEB.jpg", + "type": "Image" + } + ], + "label": { + "@none": [ + "National Gallery of Art Collection Highlights" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Highlights from the collection of the National Gallery of Art" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "A selection of highlights from the National Gallery of Art" + ] + } + } + ], + "guid": "e61700b6-7cb9-4c14-92ab-4246a345ec71", + "viewingDirection": "left-to-right", + "type": "Manifest", + "id": "https://media.nga.gov/public/manifests/nga_highlights.json", + "behavior": [ + "individuals" + ], + "items": [ + { + "label": { + "@none": [ + "Self-Portrait" + ] + }, + "height": 402, + "width": 307, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/106382.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7bff4492-c4ab-4577-81c9-cfbf64ba3998", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/106382.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 402, + "width": 307, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/237475ab-f40d-40cb-b583-17d44cb8bb9a" + } + ] + }, + { + "label": { + "@none": [ + "Flower Beds in Holland" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1883" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 2086, + "width": 3350, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/61371.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1263a0f-e993-4062-930f-6a88ca53dbf5", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/61371.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 325, + "width": 443, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/6/1/3/7/1/61371-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/6/1/3/7/1/61371-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c3e57d1-8af8-4034-88fb-9e82fd75c34e" + } + ] + }, + { + "label": { + "@none": [ + "Farmhouse in Provence" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1888" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 334, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/52178.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1db7bf9d-2eab-487b-ad95-6f356ec91603", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/52178.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 334, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/5/2/1/7/8/52178-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/5/2/1/7/8/52178-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fadbedee-18d2-4f06-897b-62466f9eeb05" + } + ] + }, + { + "label": { + "@none": [ + "La Mousme" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1888" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 401, + "width": 330, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46626.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af363d81-5e46-4550-838d-9dfe11a5b3d6", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46626.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 3348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/6/2/6/46626-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/6/2/6/46626-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37775726-3988-4c88-8df7-894446223732" + } + ] + }, + { + "label": { + "@none": [ + "The Feast of the Gods" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1513" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 439, + "width": 401, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1138.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8eaa2294-4613-4069-80d1-4004892b4a25", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1138.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 439, + "width": 401, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/1/3/8/1138-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/1/3/8/1138-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/372ce6a4-82e0-4971-82df-acb1499a386a" + } + ] + }, + { + "label": { + "@none": [ + "Marchesa Brigida Spinola Doria" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1606" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 400, + "width": 260, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46159.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b179296a-eff1-49e2-b479-e84c0d12af27", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46159.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 400, + "width": 260, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/1/5/9/46159-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/1/5/9/46159-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c57ad18c-0413-4ef5-b393-31f3f33fff70" + } + ] + }, + { + "label": { + "@none": [ + "Laocoon" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1610" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 351, + "width": 443, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/33253.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/084054ff-534d-43df-b69f-e5ec0c28ccbd", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/33253.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 351, + "width": 443, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/3/3/2/5/3/33253-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/3/3/2/5/3/33253-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8252a150-a4da-4201-957f-c3b021f72a80" + } + ] + }, + { + "label": { + "@none": [ + "Marchesa Elena Grimaldi Cattaneo" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1623" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 401, + "width": 224, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1231.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0e51388d-dd46-4596-a479-b3be122b8ed1", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1231.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 401, + "width": 224, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/2/3/1/1231-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/2/3/1/1231-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b319b4d-b624-47a6-b69a-11ab8f85291e" + } + ] + }, + { + "label": { + "@none": [ + "Self-Portrait" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1603" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 400, + "width": 352, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/37003.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1520a3c4-4fea-4165-97c4-caf63e920007", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/37003.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 400, + "width": 352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/3/7/0/0/3/37003-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/3/7/0/0/3/37003-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e3851fe-8547-416d-91d2-8092fc09f8f8" + } + ] + }, + { + "label": { + "@none": [ + "The Maas at Dordrecht" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1650" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 298, + "width": 442, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/576.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/87b629dd-f067-4dca-b78b-ebb7992363a3", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/576.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 298, + "width": 442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/5/7/6/576-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/5/7/6/576-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/da41314e-16fc-4e20-9c5a-edd523bb88a7" + } + ] + }, + { + "label": { + "@none": [ + "Self-Portrait" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1659" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 402, + "width": 312, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/79.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9af82b2f-cc96-4900-beff-8e130280908b", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/79.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 402, + "width": 312, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/7/9/79-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/7/9/79-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c37422d0-6a11-4b79-afcf-dae2d746c952" + } + ] + }, + { + "label": { + "@none": [ + "Woman Holding a Balance" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1664" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 401, + "width": 355, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1236.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3979b2b4-3968-414f-8f6b-dd48dd484227", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1236.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 401, + "width": 355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/2/3/6/1236-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/2/3/6/1236-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f068d161-9cfc-440d-b06a-e9df6f7364be" + } + ] + }, + { + "label": { + "@none": [ + "Young Girl Reading" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1770" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 401, + "width": 355, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46303.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9c5f629e-a974-431e-9975-def1c26e4b4d", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46303.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 401, + "width": 355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/3/0/3/46303-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/3/0/3/46303-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a409832a-6daf-4658-b5f9-ee2d9fb6e5e0" + } + ] + }, + { + "label": { + "@none": [ + "Watson and the Shark" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1778" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 351, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46471.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb5c7e1d-6532-4ed5-8ebe-56a311d2202a", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46471.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 351, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/4/7/1/46471-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/4/7/1/46471-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/787fb77b-8a95-4dc3-ab12-34142748e3ea" + } + ] + }, + { + "label": { + "@none": [ + "The Emperor Napoleon in His Study at the Tuileries" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1812" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 402, + "width": 245, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46114.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4e1a2afd-8e95-4478-b97e-63af6a371648", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46114.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 402, + "width": 245, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/1/1/4/46114-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/1/1/4/46114-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3b643e0c-5a31-4d02-9225-8a16c2052745" + } + ] + }, + { + "label": { + "@none": [ + "Wivenhoe Park, Essex" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1816" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 240, + "width": 443, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1147.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aa3a0629-d091-46f4-9adb-25f2d439ba2f", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1147.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 240, + "width": 443, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/1/4/7/1147-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/1/4/7/1147-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84b45f70-93e3-4013-993a-131ee45b4970" + } + ] + }, + { + "label": { + "@none": [ + "Keelmen Heaving in Coals by Moonlight" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1835" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 329, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1225.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff1ade8b-7e0e-44cb-af25-193de8a9b777", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1225.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 329, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/2/2/5/1225-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/2/2/5/1225-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60d313e6-c152-4f43-bc3c-dbf136edfb1d" + } + ] + }, + { + "label": { + "@none": [ + "The Voyage of Life: Childhood" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1842" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 299, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/52450.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/00e26b90-6df9-46da-bd3c-e46d3ce6a089", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/52450.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 299, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/5/2/4/5/0/52450-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/5/2/4/5/0/52450-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/263d4b5a-5654-4749-ac10-2d8713354c3f" + } + ] + }, + { + "label": { + "@none": [ + "Symphony in White, No. 1: The White Girl" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1862" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 402, + "width": 201, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/12198.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9e9fbdd7-036f-4a8a-9f47-c1d1e03a7455", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/12198.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 402, + "width": 201, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/2/1/9/8/12198-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/2/1/9/8/12198-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1692acc-1ea7-4fde-a104-872f30de3cb8" + } + ] + }, + { + "label": { + "@none": [ + "The Railway" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1873" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 360, + "width": 442, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/43624.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aafa8b8b-2dda-4612-86d6-0deff5200e92", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/43624.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 360, + "width": 442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/3/6/2/4/43624-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/3/6/2/4/43624-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f06a30fc-4428-49c4-ac80-7622f77f39ee" + } + ] + }, + { + "label": { + "@none": [ + "The Japanese Footbridge" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1899" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 356, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/74796.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/09825c32-892a-462c-89b1-3b44f588ea58", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/74796.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 356, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/7/4/7/9/6/74796-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/7/4/7/9/6/74796-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/317834a8-a1c0-4cf4-a778-870e35df5403" + } + ] + }, + { + "label": { + "@none": [ + "The Olive Orchard" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1889" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 349, + "width": 442, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46627.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9df859d2-98aa-4f4d-8de8-c2b15f2c867a", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46627.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 349, + "width": 442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/6/2/7/46627-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/6/2/7/46627-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d7fb320-5b5d-4c86-94b3-18d0108d8f98" + } + ] + }, + { + "label": { + "@none": [ + "Forty-two Kids" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1907" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 349, + "width": 442, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/134485.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2918896c-6767-4b8f-bc7e-f14e12a5e2ce", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/134485.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 305, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/3/4/4/8/5/134485-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/3/4/4/8/5/134485-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd6aacbe-cd4d-4e85-8895-ac1afe7b23d2" + } + ] + }, + { + "label": { + "@none": [ + "Woman Viewed from Behind (Visit to a Museum)" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "c. 1879-1885" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 400, + "width": 372, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/66409.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2333defa-9b22-4503-b77b-c03425b12f2e", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/66409.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 400, + "width": 372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/6/6/4/0/9/66409-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/6/6/4/0/9/66409-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15799b3f-8958-4767-bd27-76caee0f5ee0" + } + ] + }, + { + "label": { + "@none": [ + "Portrait of a Gentleman" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1520" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 400, + "width": 300, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/398.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/236944ac-69f8-4cc6-9f9c-45ac9317f0de", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/398.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 400, + "width": 300, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/3/9/8/398-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/3/9/8/398-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/918e6eb7-d8d9-48a1-82a4-e99707ba9f0a" + } + ] + }, + { + "label": { + "@none": [ + "Still Life of Oranges and Lemons with Blue Gloves" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1889" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 340, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/164923.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dcfb77ca-c94d-4f7c-bd92-ab3d146c5553", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/164923.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 340, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/6/4/9/2/3/164923-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/6/4/9/2/3/164923-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/436fcbf1-1fa0-4985-bd43-9c6ba51f190c" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_ncsu_libraries_manifest": { + "label": { + "@none": [ + "Nubian Message, November 30, 1992" + ] + }, + "logo": [ + { + "type": "Image", + "id": "https://d.lib.ncsu.edu/collections/assets/ncsu-libraries-white-logo-placement-8e3a4e918262aa5993b0e0475989b02f.jpg" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Nubian Message, November 30, 1992" + ] + } + }, + { + "label": { + "@none": [ + "Creator" + ] + }, + "value": { + "@none": [ + "Nubian Message (Raleigh, N.C.) (Publisher)" + ] + } + }, + { + "label": { + "@none": [ + "Created Date" + ] + }, + "value": { + "@none": [ + "1992-11-30" + ] + } + }, + { + "label": { + "@none": [ + "URL" + ] + }, + "value": { + "@none": [ + "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30" + ] + } + }, + { + "label": { + "@none": [ + "" + ] + }, + "value": { + "@none": [ + "IIIF drag & drop (About IIIF)" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "https://d.lib.ncsu.edu/collections/about#rights_and_use" + ] + } + } + ], + "thumbnail": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30/full/150,/0/default.jpg" + } + ], + "service": [ + { + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this thing", + "service": [ + { + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words", + "id": "https://ocr.lib.ncsu.edu/suggest/nubian-message-1992-11-30", + "type": "AutoCompleteService1" + } + ], + "id": "https://ocr.lib.ncsu.edu/search/nubian-message-1992-11-30", + "type": "SearchService1" + } + ], + "seeAlso": [ + { + "format": "text/xml", + "label": { + "@none": [ + "Dublin Core XML via OAI-PMH" + ] + }, + "type": "Dataset", + "id": "https://d.lib.ncsu.edu/collections/catalog/oai?identifier=ncsul%2Fnubian-message-1992-11-30&metadataPrefix=oai_dc&verb=GetRecord" + }, + { + "format": "application/ld+json", + "profile": "https://schema.org", + "label": { + "@none": [ + "Schema.org metadata as JSON-LD" + ] + }, + "type": "Dataset", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/schemaorg.json" + } + ], + "dcterms:modified": "2018-05-04T19:54:03.000Z", + "dcterms:created": "2016-02-19T16:47:04.000Z", + "type": "Manifest", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "The Nubian Message (LH1 .H6 N83), Special Collections Research Center at NCSU Libraries" + ] + } + }, + "homepage": { + "format": "text/html", + "label": { + "@none": [ + "HTML page for the resource" + ] + }, + "dcterms:modified": "2018-05-04T19:59:35.01Z", + "type": "Text", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30" + }, + "items": [ + { + "width": 4703, + "height": 5639, + "label": { + "@none": [ + "1" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/207a5c53-5a00-4edb-8253-73f9126d5077" + } + ] + }, + { + "width": 4703, + "height": 5630, + "label": { + "@none": [ + "2" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0002", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0002/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0002", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1401, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0002", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0002/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a65dfe60-d9da-4052-8b50-2d25e39e47ca" + } + ] + }, + { + "width": 4722, + "height": 5646, + "label": { + "@none": [ + "3" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0003", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0003/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0003", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1399, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0003", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0003/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/229fb135-7adb-4165-a38e-948dacc5eed6" + } + ] + }, + { + "width": 4697, + "height": 5622, + "label": { + "@none": [ + "4" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0004", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0004/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0004", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0004", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0004/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c060b274-0e46-4d91-9a94-8346dadbeb1b" + } + ] + }, + { + "width": 4712, + "height": 5644, + "label": { + "@none": [ + "5" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0005", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0005/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0005", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1401, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0005", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0005/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1ca7673-6281-4ce9-abbe-3ba7d086c424" + } + ] + }, + { + "width": 4692, + "height": 5619, + "label": { + "@none": [ + "6" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0006", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0006/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0006", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1401, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0006", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0006/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38b00c8f-f934-45af-b9ec-3cd03e373b18" + } + ] + }, + { + "width": 4716, + "height": 5632, + "label": { + "@none": [ + "7" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0007", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0007/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0007", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0007", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0007/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87b178dd-bd1a-4e55-84dc-d3a02ff47ece" + } + ] + }, + { + "width": 4678, + "height": 5615, + "label": { + "@none": [ + "8" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0008", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0008/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0008", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1404, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0008", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0008/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4918d5be-70d2-4451-8f7e-15ea17fc462d" + } + ] + }, + { + "width": 4726, + "height": 5622, + "label": { + "@none": [ + "9" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0009", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0009/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0009", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1392, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0009", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0009/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1189e9ce-58ac-4b76-805e-9e3ee45f52c8" + } + ] + }, + { + "width": 4698, + "height": 5614, + "label": { + "@none": [ + "10" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1398, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0010", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0010/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92f52714-23d5-48fb-9eff-ac69682e0af4" + } + ] + }, + { + "width": 4718, + "height": 5620, + "label": { + "@none": [ + "11" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0011", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0011/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0011", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1394, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0011", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0011/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54d739b0-76ef-4c7c-abf5-03bda0105f17" + } + ] + }, + { + "width": 4716, + "height": 5626, + "label": { + "@none": [ + "12" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0012", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0012/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0012", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1396, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0012", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0012/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fcafbb67-f1cb-47bd-a0b6-561f6f683a2c" + } + ] + }, + { + "width": 4726, + "height": 5612, + "label": { + "@none": [ + "13" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0013", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0013/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0013", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0013", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0013/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ec31c24-b34d-4562-a524-73ef1eab8b8d" + } + ] + }, + { + "width": 4720, + "height": 5614, + "label": { + "@none": [ + "14" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0014", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0014/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0014", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1392, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0014", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0014/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a3e08dd6-f168-4471-9b98-75048684b5f4" + } + ] + }, + { + "width": 4710, + "height": 5612, + "label": { + "@none": [ + "15" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0015", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0015/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0015", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1394, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0015", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0015/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07be8bb0-1728-46f7-bcd6-fb4055312022" + } + ] + }, + { + "width": 4682, + "height": 5628, + "label": { + "@none": [ + "16" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0016", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0016/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0016", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1406, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0016", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0016/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/699d41bf-5d71-4c20-87c0-01c15709a64c" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_nlw_manuscript_manifest": { + "label": { + "@none": [ + "Cardiganshire Constabulary register of criminals" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Title" + ], + "cy-GB": [ + "Teitl" + ] + }, + "value": { + "@none": [ + "Cardiganshire Constabulary register of criminals" + ] + } + }, + { + "label": { + "en": [ + "Author" + ], + "cy-GB": [ + "Awdur" + ] + }, + "value": { + "@none": [ + "Cardiganshire Constabulary" + ] + } + }, + { + "label": { + "en": [ + "Date" + ], + "cy-GB": [ + "Dyddiad" + ] + }, + "value": { + "@none": [ + "1897-1933" + ] + } + }, + { + "label": { + "en": [ + "Physical description" + ], + "cy-GB": [ + "Disgrifiad ffisegol" + ] + }, + "value": { + "@none": [ + "1 241ff. (ff.116-237 blank; leaves cut out after ff.80, 83) Vellum over boards, rebacked at NLW. 22.5 x 18 cm." + ] + } + }, + { + "label": { + "en": [ + "Permalink" + ], + "cy-GB": [ + "Dolen barhaol" + ] + }, + "value": { + "@none": [ + "http://hdl.handle.net/10107/4389767" + ] + } + }, + { + "label": { + "en": [ + "Repository" + ], + "cy-GB": [ + "Ystorfa" + ] + }, + "value": { + "en": [ + "This content has been digitised by The National Library of Wales" + ], + "cy-GB": [ + "Digidwyd y cynnwys hwn gan Lyfrgell Genedlaethol Cymru" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://hdl.handle.net/10107/PublicDomainMark" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Register of criminals apprehended by Cardiganshire Constabulary, 1897-1933 with physical descriptions of prisoners and details of previous convictions. Photographs are included of most of those sentenced between 1897 and 1909." + ] + } + } + ], + "logo": [ + { + "service": [ + { + "profile": " http://iiif.io/api/image/2/level1.json", + "id": " https://damsssl.llgc.org.uk/iiif/2.0/image/logo", + "type": "Service" + } + ], + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg" + } + ], + "type": "Manifest", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/manifest.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Llyfrgell Genedlaethol Cymru – The National Library of Wales" + ] + } + }, + "items": [ + { + "label": { + "@none": [ + "front cover" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389768.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389768", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389768.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64d80679-934e-4244-9fc4-2262ed0f1271" + } + ] + }, + { + "label": { + "@none": [ + "1 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389769.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389769.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389769.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389769", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389769.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b2432f7-afd8-45bd-abcb-05d913849d26" + } + ] + }, + { + "label": { + "@none": [ + "1 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389770.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389770.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389770.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389770", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389770.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84e57106-a48f-4a6b-a8b1-ad8f0c7ef61e" + } + ] + }, + { + "label": { + "@none": [ + "2 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389771.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389771.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389771.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389771", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389771.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/620864ca-fdab-4c46-8a15-7f58d8d8056e" + } + ] + }, + { + "label": { + "@none": [ + "2 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389772.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389772.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389772.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389772", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389772.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/957c58cb-2fa4-4a08-bb74-a3745a8f686f" + } + ] + }, + { + "label": { + "@none": [ + "3 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389773.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389773.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389773.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389773", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389773.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e903d4b-78ad-4fb9-ab73-fa995adc1d57" + } + ] + }, + { + "label": { + "@none": [ + "3 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389774.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389774.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389774.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389774", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389774.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2787cc8-9755-4b6d-a556-8efed9ffbfe7" + } + ] + }, + { + "label": { + "@none": [ + "4 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389775.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389775.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389775.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389775", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389775.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8432f3d7-f858-49a1-9463-b4d7cabfd74f" + } + ] + }, + { + "label": { + "@none": [ + "4 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389776.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389776.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389776.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389776", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389776.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5191182a-d15d-421f-865c-a40820443eab" + } + ] + }, + { + "label": { + "@none": [ + "5 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389777.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389777.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389777.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389777", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389777.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/878428a5-2d60-40d3-bd58-ed3cb7a8ce0e" + } + ] + }, + { + "label": { + "@none": [ + "5 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389778.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389778.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389778.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389778", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389778.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c822192a-8943-4538-b8a3-a97351fdcf11" + } + ] + }, + { + "label": { + "@none": [ + "6 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389779.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389779.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389779.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389779", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389779.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/20a24848-fda1-4fb2-b552-1f3bf896aef9" + } + ] + }, + { + "label": { + "@none": [ + "6 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389780.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389780.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389780.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389780", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389780.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c64c7a9-4697-4f3e-bf25-96101b47a367" + } + ] + }, + { + "label": { + "@none": [ + "7 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389781.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389781.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389781.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389781", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389781.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/66ee7054-858d-4ba7-adcf-b7b891ee90e8" + } + ] + }, + { + "label": { + "@none": [ + "7 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389782.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389782.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389782.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389782", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389782.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19cf1f40-2b1b-42c5-849f-d6408d824a44" + } + ] + }, + { + "label": { + "@none": [ + "8 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389783.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389783.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389783.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389783", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389783.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/402bbb84-085f-41cd-831a-ab32f6cbf17e" + } + ] + }, + { + "label": { + "@none": [ + "8 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389784.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389784.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389784.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389784", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389784.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72cd59e8-a0c3-4dec-a41b-3b27697901c7" + } + ] + }, + { + "label": { + "@none": [ + "9 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389785.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389785.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389785.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389785", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389785.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/77efba9c-e993-4f9d-9be8-d9a319deccb1" + } + ] + }, + { + "label": { + "@none": [ + "9 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389786.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389786.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389786.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389786", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389786.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae3bc186-5787-4fbe-9ebf-64ba4821d31a" + } + ] + }, + { + "label": { + "@none": [ + "10 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389787.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389787.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389787.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389787", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389787.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc55d0c4-5bc1-4ff4-b08d-259148eae750" + } + ] + }, + { + "label": { + "@none": [ + "10 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389788.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389788.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389788.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389788", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389788.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cd83f6ae-f29f-490f-91b3-592b5a224c51" + } + ] + }, + { + "label": { + "@none": [ + "11 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389789.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389789.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389789.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389789", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389789.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aca5d8a5-fb0f-49d5-ad54-5927776d1272" + } + ] + }, + { + "label": { + "@none": [ + "11 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389790.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389790.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389790.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389790", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389790.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8cf7a30b-ffc1-4def-8fb7-cdb0914df9d3" + } + ] + }, + { + "label": { + "@none": [ + "12 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389791.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389791.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389791.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389791", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389791.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61dc788d-102e-44f3-95ca-e02a1b5e1909" + } + ] + }, + { + "label": { + "@none": [ + "12 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389792.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389792.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389792.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389792", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389792.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/130329dc-7b14-473c-aa20-d34a5fa0a7a1" + } + ] + }, + { + "label": { + "@none": [ + "13 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389793.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389793.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389793.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389793", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389793.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba9b3374-2963-4648-b748-e514203b8d33" + } + ] + }, + { + "label": { + "@none": [ + "13 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389794.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389794.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389794.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389794", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389794.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8fc8ff7f-652d-44a2-a8db-17e6f8e10bef" + } + ] + }, + { + "label": { + "@none": [ + "14 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389795.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389795.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389795.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389795", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389795.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/139df885-d2df-424c-bb64-7377b243e5f4" + } + ] + }, + { + "label": { + "@none": [ + "14 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389796.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389796.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389796.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389796", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389796.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6089f70-4133-49dd-8bab-9e067552ccd2" + } + ] + }, + { + "label": { + "@none": [ + "15 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389797.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389797.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389797.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389797", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389797.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75f6cb26-ba16-4cde-9450-3cc9349205e9" + } + ] + }, + { + "label": { + "@none": [ + "15 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389798.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389798.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389798.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389798", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389798.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29e37dbc-ea73-4ffb-97d5-63afea79d616" + } + ] + }, + { + "label": { + "@none": [ + "16 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389799.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389799.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389799.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389799", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389799.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8eb93942-fd89-42f4-8cff-347b57131bec" + } + ] + }, + { + "label": { + "@none": [ + "16 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389800.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389800.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389800.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389800", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389800.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff99a54f-6479-46c9-bf85-eaeed8b4a6a8" + } + ] + }, + { + "label": { + "@none": [ + "17 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389801.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389801.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389801.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389801", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389801.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5dbd7440-aa2d-4e78-90b2-4a6cda9d97ef" + } + ] + }, + { + "label": { + "@none": [ + "17 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389802.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389802.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389802.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389802", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389802.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c80f4f1-1385-4024-9627-38f85a4b16d5" + } + ] + }, + { + "label": { + "@none": [ + "18 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389803.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389803.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389803.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389803", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389803.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4af60f98-0415-4316-be90-e493ff8ea265" + } + ] + }, + { + "label": { + "@none": [ + "18 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389804.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389804.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389804.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389804", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389804.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f308e2a-c89c-4fd6-a48b-1ad28b66c7a7" + } + ] + }, + { + "label": { + "@none": [ + "19 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389805.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389805.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389805.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389805", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389805.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7143a088-d1ae-461e-baac-0380b097d380" + } + ] + }, + { + "label": { + "@none": [ + "19 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389806.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389806.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389806.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389806", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389806.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4d53d0d-7b70-4fa8-8064-4acc675b1e80" + } + ] + }, + { + "label": { + "@none": [ + "20 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389807.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389807.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389807.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389807", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389807.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87681da4-d2cb-46f3-9026-fef72badc72f" + } + ] + }, + { + "label": { + "@none": [ + "20 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389808.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389808.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389808.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389808", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389808.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3dbbccdd-630d-4de9-902f-f0f50b524886" + } + ] + }, + { + "label": { + "@none": [ + "21 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389809.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389809.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389809.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389809", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389809.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b3ff38e5-1b09-4f82-9111-721156b7f17d" + } + ] + }, + { + "label": { + "@none": [ + "21 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389810.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389810.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389810.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389810", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389810.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d9ffbf4-f92b-48eb-b5a6-ee491911f848" + } + ] + }, + { + "label": { + "@none": [ + "22 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389811.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389811.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389811.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389811", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389811.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c365bcab-21ff-40de-99d8-35ff653142da" + } + ] + }, + { + "label": { + "@none": [ + "22 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389812.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389812.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389812.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389812", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389812.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1021d20-af70-47a0-8d53-41de8563043e" + } + ] + }, + { + "label": { + "@none": [ + "23 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389813.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389813.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389813.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389813", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389813.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/700d6bae-bec9-4e47-a0f9-d1594f7e962e" + } + ] + }, + { + "label": { + "@none": [ + "23 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389814.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389814.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389814.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389814", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389814.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d48364a-03b1-4999-b53f-f995607636a1" + } + ] + }, + { + "label": { + "@none": [ + "24 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389815.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389815.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389815.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389815", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389815.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5908c3eb-5c7a-41ee-9771-854633f140f7" + } + ] + }, + { + "label": { + "@none": [ + "24 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389816.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389816.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389816.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389816", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389816.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/908b5ca6-2c8f-4c36-ab5f-f65d6104353a" + } + ] + }, + { + "label": { + "@none": [ + "25 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389817.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389817.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389817.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389817", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389817.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dfea4a15-c8f2-4fa3-9f95-1cedc9a736c8" + } + ] + }, + { + "label": { + "@none": [ + "25 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389818.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389818.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389818.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389818", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389818.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25aa1717-25fa-4c7d-9de6-e27b0d21f8a6" + } + ] + }, + { + "label": { + "@none": [ + "26 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389819.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389819.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389819.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389819", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389819.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3bbb6ef5-0eb5-4955-8bca-11b508e3203a" + } + ] + }, + { + "label": { + "@none": [ + "26 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389820.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389820.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389820.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389820", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389820.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/704d1579-2983-4cf9-930e-afca3bff2cde" + } + ] + }, + { + "label": { + "@none": [ + "27 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389821.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389821.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389821.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389821", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389821.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90ecedd9-38ea-4f40-9e6e-f9ab73b93b93" + } + ] + }, + { + "label": { + "@none": [ + "27 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389822.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389822.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389822.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389822", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389822.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bccd077e-a11d-4b8d-8757-be77125b8c23" + } + ] + }, + { + "label": { + "@none": [ + "28 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389823.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389823.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389823.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389823", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389823.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50f4c688-9941-404f-ae7f-0d8c6b846486" + } + ] + }, + { + "label": { + "@none": [ + "28 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389824.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389824.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389824.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389824", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389824.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f66ff1f5-36c2-4e8d-9457-24e32d9266cb" + } + ] + }, + { + "label": { + "@none": [ + "29 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389825.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389825.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389825.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389825", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389825.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ca8c717-ce7d-4190-95bd-5e8159030907" + } + ] + }, + { + "label": { + "@none": [ + "29 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389826.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389826.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389826.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389826", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389826.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d418ff73-7a4d-48be-b8aa-d679bd09700c" + } + ] + }, + { + "label": { + "@none": [ + "30 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389827.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389827.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389827.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389827", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389827.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33aa90ac-131b-4a2b-92b5-02ca4179b416" + } + ] + }, + { + "label": { + "@none": [ + "30 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389828.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389828.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389828.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389828", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389828.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd9c9230-b912-4a7a-b499-37407c91c728" + } + ] + }, + { + "label": { + "@none": [ + "31 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389829.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389829.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389829.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389829", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389829.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5966e40-c0a9-448d-8aaa-f1fe50ecb0eb" + } + ] + }, + { + "label": { + "@none": [ + "31 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389830.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389830.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389830.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389830", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389830.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/678aeb64-2def-4481-b359-3dc302cd2bd2" + } + ] + }, + { + "label": { + "@none": [ + "32 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389831.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389831.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389831.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389831", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389831.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a13c7f7-3b8a-4c0a-b536-8acc3bceacfb" + } + ] + }, + { + "label": { + "@none": [ + "32 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389832.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389832.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389832.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389832", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389832.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c188f4a-454c-450d-93b9-4d00e2975256" + } + ] + }, + { + "label": { + "@none": [ + "33 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389833.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389833.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389833.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389833", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389833.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9ebeaec-1170-43d7-bfba-3e7733a32b32" + } + ] + }, + { + "label": { + "@none": [ + "33 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389834.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389834.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389834.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389834", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389834.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0019917-4a27-475f-bfcd-fda44dabcf56" + } + ] + }, + { + "label": { + "@none": [ + "34 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389835.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389835.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389835.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389835", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389835.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a02dec3-e4f6-48a5-9523-15286199df66" + } + ] + }, + { + "label": { + "@none": [ + "34 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389836.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389836.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389836.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389836", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389836.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91c3f7ec-6636-4225-9be4-3ef64641c42c" + } + ] + }, + { + "label": { + "@none": [ + "35 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389837.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389837.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389837.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389837", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389837.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ccef7f07-f4aa-4669-9ebf-6d57661378e8" + } + ] + }, + { + "label": { + "@none": [ + "35 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389838.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389838.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389838.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389838", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389838.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/16028e41-2eaf-4192-98e0-2c79a4f1f5ce" + } + ] + }, + { + "label": { + "@none": [ + "36 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389839.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389839.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389839.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389839", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389839.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a77ffbf-5ac6-4b02-9782-ab97672e104c" + } + ] + }, + { + "label": { + "@none": [ + "36 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389840.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389840.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389840.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389840", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389840.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dfd54817-9792-40e8-b6e1-528c9673f8fb" + } + ] + }, + { + "label": { + "@none": [ + "37 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389841.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389841.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389841.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389841", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389841.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e892bdf-6cc5-4573-a3ef-e5c059b941dc" + } + ] + }, + { + "label": { + "@none": [ + "37 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389842.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389842.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389842.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389842", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389842.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7285c080-c20e-4ad7-82db-db85065d2973" + } + ] + }, + { + "label": { + "@none": [ + "38 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389843.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389843.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389843.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389843", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389843.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/41da2073-afe3-4512-8f08-13a036828e04" + } + ] + }, + { + "label": { + "@none": [ + "38 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389844.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389844.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389844.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389844", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389844.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f703066-f605-4b6d-9d71-3b90d76c1b76" + } + ] + }, + { + "label": { + "@none": [ + "39 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389845.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389845.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389845.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389845", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389845.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1a6f041-4933-448c-8b10-b11f63db547e" + } + ] + }, + { + "label": { + "@none": [ + "39 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389846.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389846.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389846.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389846", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389846.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9266285a-a90d-431b-85bd-48ebf8a38517" + } + ] + }, + { + "label": { + "@none": [ + "40 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/784535/canvas/4389847.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/784535/annotation/4389847.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/784535/canvas/4389847.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389847", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/784535/res/4389847.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9df55165-7e7a-47f4-85b8-db44794086d9" + } + ] + }, + { + "label": { + "@none": [ + "40 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389848.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389848.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389848.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389848", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389848.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b83794da-7dfd-453f-92e5-ef1269e72050" + } + ] + }, + { + "label": { + "@none": [ + "41 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389849.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389849.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389849.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389849", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389849.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80842f40-48f5-4d61-a5e4-fce2036f3f9d" + } + ] + }, + { + "label": { + "@none": [ + "41 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389850.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389850.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389850.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389850", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389850.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b141c8d1-194e-403f-b8c0-25e568b32546" + } + ] + }, + { + "label": { + "@none": [ + "42 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389851.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389851.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389851.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389851", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389851.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/405c4884-2a44-44b2-bb1a-b10fbcf4ffd3" + } + ] + }, + { + "label": { + "@none": [ + "42 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389852.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389852.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389852.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389852", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389852.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/992c2958-3c9f-474a-9875-2e31fe3230b7" + } + ] + }, + { + "label": { + "@none": [ + "43 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389853.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389853.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389853.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389853", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389853.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c24b691-fdfe-48c4-bf20-d3932ec3abda" + } + ] + }, + { + "label": { + "@none": [ + "43 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389854.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389854.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389854.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389854", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389854.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6eeb8fbb-39ad-474f-a602-7fb19f850f94" + } + ] + }, + { + "label": { + "@none": [ + "44 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389855.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389855.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389855.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389855", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389855.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ff52297-b3b7-47a2-ad58-b680839d7667" + } + ] + }, + { + "label": { + "@none": [ + "44 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389856.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389856.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389856.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389856", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389856.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cbd0f675-3fe1-4e5d-88c7-0a7201ee2cef" + } + ] + }, + { + "label": { + "@none": [ + "45 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389857.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389857.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389857.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389857", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389857.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/531931df-592b-472f-8c87-1ceaf3e794b6" + } + ] + }, + { + "label": { + "@none": [ + "45 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389858.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389858.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389858.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389858", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389858.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/359180c4-9f58-4f8d-ad8f-414e58c4d404" + } + ] + }, + { + "label": { + "@none": [ + "46 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389859.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389859.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389859.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389859", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389859.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c37e224-5dda-471b-b47f-43158b3bf076" + } + ] + }, + { + "label": { + "@none": [ + "46 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389860.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389860.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389860.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389860", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389860.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2733111f-9261-40df-8829-5eaebddec2c1" + } + ] + }, + { + "label": { + "@none": [ + "47 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389861.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389861.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389861.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389861", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389861.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8ad6cb5f-125d-420b-a6a9-00f9b1d2fe00" + } + ] + }, + { + "label": { + "@none": [ + "47 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389862.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389862.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389862.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389862", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389862.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3181b621-67ba-43b7-aa61-02b60e7dd4cb" + } + ] + }, + { + "label": { + "@none": [ + "48 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389863.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389863.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389863.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389863", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389863.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a084c32b-a2d7-42d2-8397-e957d3cdfd5b" + } + ] + }, + { + "label": { + "@none": [ + "49 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389864.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389864.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389864.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389864", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389864.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd591d3a-d6d8-4b04-8aa3-677bd80a9cf0" + } + ] + }, + { + "label": { + "@none": [ + "49 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389865.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389865.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389865.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389865", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389865.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fce00431-8efa-4b67-8a15-21af3bbf7616" + } + ] + }, + { + "label": { + "@none": [ + "50 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389866.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389866.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389866.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389866", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389866.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8f48518-2312-4628-87cf-aa6f01bc13fb" + } + ] + }, + { + "label": { + "@none": [ + "50 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389867.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389867.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389867.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389867", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389867.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95049f5b-ff00-4b64-9016-a5081e0a3644" + } + ] + }, + { + "label": { + "@none": [ + "51 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389868.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389868.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389868.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389868", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389868.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b3e0add-f350-4297-823e-67549c44a9e7" + } + ] + }, + { + "label": { + "@none": [ + "51 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389869.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389869.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389869.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389869", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389869.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a1fb443-b2b7-42f6-87e2-1398695a4191" + } + ] + }, + { + "label": { + "@none": [ + "52 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389870.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389870.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389870.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389870", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389870.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6180161f-e802-46a5-9a13-c6535016bb35" + } + ] + }, + { + "label": { + "@none": [ + "52 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389871.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389871.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389871.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389871", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389871.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2c56caf-71da-48b3-af69-83451582ba97" + } + ] + }, + { + "label": { + "@none": [ + "53 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389872.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389872.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389872.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389872", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389872.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/710e4462-349d-467a-81bd-0bdf2fa36419" + } + ] + }, + { + "label": { + "@none": [ + "53 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389873.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389873.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389873.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389873", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389873.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c307dab6-e101-4af2-82f9-f6e96b1782a1" + } + ] + }, + { + "label": { + "@none": [ + "54 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389874.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389874.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389874.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389874", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389874.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7d6672a-5597-43fe-8865-9e2e09c9243f" + } + ] + }, + { + "label": { + "@none": [ + "54 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389875.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389875.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389875.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389875", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389875.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12644829-c0ad-44e8-8c41-3c0eae4d6ac5" + } + ] + }, + { + "label": { + "@none": [ + "55 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389876.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389876.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389876.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389876", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389876.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f43952e-6985-43d2-b9f2-ad1eefb423dd" + } + ] + }, + { + "label": { + "@none": [ + "55 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389877.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389877.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389877.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389877", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389877.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58df1e00-20e3-4453-ac2f-6c3a9050e698" + } + ] + }, + { + "label": { + "@none": [ + "56 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389878.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389878.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389878.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389878", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389878.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d9b1643-3c71-46a0-911d-10bb489e8d00" + } + ] + }, + { + "label": { + "@none": [ + "56 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389879.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389879.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389879.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389879", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389879.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9066497-91ff-4d01-b574-f85efcdebc9a" + } + ] + }, + { + "label": { + "@none": [ + "57 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389880.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389880.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389880.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389880", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389880.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a56d4f3c-44dd-4aa2-9b8c-005645526ce7" + } + ] + }, + { + "label": { + "@none": [ + "57 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389881.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389881.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389881.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389881", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389881.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c5ac22a-2d49-45bf-b883-f34699a525ba" + } + ] + }, + { + "label": { + "@none": [ + "58 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389882.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389882.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389882.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389882", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389882.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e0b519e-5aee-426b-bafe-c9f1d7d2bf8a" + } + ] + }, + { + "label": { + "@none": [ + "58 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389883.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389883.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389883.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389883", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389883.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce3d4fd1-b40c-40a5-9f9c-b05d156e919b" + } + ] + }, + { + "label": { + "@none": [ + "59 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389884.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389884.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389884.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389884", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389884.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/381a4268-01d7-4f30-af5b-085db65682c1" + } + ] + }, + { + "label": { + "@none": [ + "59 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389885.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389885.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389885.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389885", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389885.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47072232-9d0d-484d-8392-3c45506f0fa5" + } + ] + }, + { + "label": { + "@none": [ + "60 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389886.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389886.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389886.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389886", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389886.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b39b72c-0b9c-4297-8e22-3c820480d689" + } + ] + }, + { + "label": { + "@none": [ + "60 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389887.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389887.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389887.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389887", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389887.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c629ab88-fcf1-4838-bab7-3f16d31a6900" + } + ] + }, + { + "label": { + "@none": [ + "61 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389888.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389888.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389888.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389888", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389888.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f9015f0-4570-49b3-bbd2-052c31ddc38c" + } + ] + }, + { + "label": { + "@none": [ + "61 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389889.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389889.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389889.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389889", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389889.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47a6ac30-e519-4b4a-adf8-14eff07bbc4d" + } + ] + }, + { + "label": { + "@none": [ + "62 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389890.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389890.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389890.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389890", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389890.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a8ae773-c50b-4049-a389-6f227f9fa00d" + } + ] + }, + { + "label": { + "@none": [ + "62 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389891.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389891.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389891.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389891", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389891.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b93e2595-7ea3-4a9c-9a96-d1fcab3e27d0" + } + ] + }, + { + "label": { + "@none": [ + "63 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389892.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389892.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389892.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389892", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389892.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e0cacf3-be6d-4958-ac42-fac6dc01b781" + } + ] + }, + { + "label": { + "@none": [ + "63 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389893.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389893.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389893.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389893", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389893.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67a05529-a228-4744-b62f-30963bb7dae8" + } + ] + }, + { + "label": { + "@none": [ + "64 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389894.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389894.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389894.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389894", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389894.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff94d8b7-5081-4ce4-91e2-8862d6dabdab" + } + ] + }, + { + "label": { + "@none": [ + "64 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389895.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389895.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389895.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389895", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389895.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1983cd9a-a500-4898-8b25-a997a0c1784f" + } + ] + }, + { + "label": { + "@none": [ + "65 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389896.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389896.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389896.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389896", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389896.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ce7cec7-ca89-40d9-a36f-b5bd42f46526" + } + ] + }, + { + "label": { + "@none": [ + "65 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389897.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389897.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389897.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389897", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389897.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac511ad6-c1bc-4461-840d-2a138b0d0261" + } + ] + }, + { + "label": { + "@none": [ + "66 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389898.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389898.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389898.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389898", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389898.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a7d59c8a-75ac-48aa-9b38-04ae413bc170" + } + ] + }, + { + "label": { + "@none": [ + "66 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389899.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389899.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389899.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389899", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389899.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88a404d2-954d-4946-8e91-06b7b898d80e" + } + ] + }, + { + "label": { + "@none": [ + "67 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389900.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389900.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389900.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389900", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389900.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d9758054-1572-4adc-8151-c0707111f5cb" + } + ] + }, + { + "label": { + "@none": [ + "67 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389901.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389901.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389901.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389901", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389901.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acfaa1ef-bf4a-40f3-b8f0-956828dc9079" + } + ] + }, + { + "label": { + "@none": [ + "68 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389902.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389902.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389902.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389902", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389902.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4e1a0e9-ca20-4808-9dc3-483856dd915c" + } + ] + }, + { + "label": { + "@none": [ + "68 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389903.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389903.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389903.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389903", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389903.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72497c07-4cf4-4104-ac41-a10872e91255" + } + ] + }, + { + "label": { + "@none": [ + "69 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389904.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389904.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389904.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389904", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389904.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c33549cd-8574-405d-b55c-1b370a2f058e" + } + ] + }, + { + "label": { + "@none": [ + "69 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389905.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389905.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389905.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389905", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389905.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca0435af-1def-4105-b24e-3432212fa559" + } + ] + }, + { + "label": { + "@none": [ + "70 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389906.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389906.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389906.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389906", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389906.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0005faf5-fc90-48b5-b286-5b7483fe5d22" + } + ] + }, + { + "label": { + "@none": [ + "70 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389907.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389907.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389907.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389907", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389907.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a5bedbde-dd15-4095-b71e-f6845f4fd317" + } + ] + }, + { + "label": { + "@none": [ + "71 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389908.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389908.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389908.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389908", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389908.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2414353b-6739-425c-8c7b-7ecdd1b1f632" + } + ] + }, + { + "label": { + "@none": [ + "71 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389909.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389909.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389909.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389909", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389909.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bbdac2c8-b712-492f-9b98-8671174a86c2" + } + ] + }, + { + "label": { + "@none": [ + "72 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389910.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389910.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389910.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389910", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389910.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4567a701-ee92-4f61-8c60-97ca52bea71f" + } + ] + }, + { + "label": { + "@none": [ + "73 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389911.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389911.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389911.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389911", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389911.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b5da800-484d-4b09-8484-0867eed62c33" + } + ] + }, + { + "label": { + "@none": [ + "73 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389912.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389912.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389912.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389912", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389912.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c651dc0f-66a2-4b9b-b580-b939f1179e6e" + } + ] + }, + { + "label": { + "@none": [ + "74 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389913.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389913.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389913.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389913", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389913.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82494763-61ee-4192-9259-094e549502f4" + } + ] + }, + { + "label": { + "@none": [ + "74 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389914.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389914.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389914.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389914", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389914.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1462686-6a1e-40cf-ba7a-b4cffe3b4fe8" + } + ] + }, + { + "label": { + "@none": [ + "75 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389915.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389915.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389915.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389915", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389915.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/66f07211-3d35-4978-a323-6d4412dad0c5" + } + ] + }, + { + "label": { + "@none": [ + "75 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389916.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389916.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389916.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389916", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389916.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d9ebff7-55ac-4093-96a4-226448ac3bd4" + } + ] + }, + { + "label": { + "@none": [ + "76 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389917.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389917.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389917.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389917", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389917.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc18488a-f4f7-4b16-9d5f-18f2075e7900" + } + ] + }, + { + "label": { + "@none": [ + "76 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389918.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389918.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389918.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389918", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389918.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dbd4a73f-4148-4ce3-8919-fa1ca192112d" + } + ] + }, + { + "label": { + "@none": [ + "77 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389919.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389919.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389919.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389919", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389919.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b0076ef-d54b-4e15-8068-76c2edf744b2" + } + ] + }, + { + "label": { + "@none": [ + "77 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389920.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389920.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389920.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389920", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389920.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7a6c38cb-6a9e-45b0-82ef-806f0a4ec319" + } + ] + }, + { + "label": { + "@none": [ + "78 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389921.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389921.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389921.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389921", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389921.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2e8eca1-d833-4d98-b25f-19f0fb8a4293" + } + ] + }, + { + "label": { + "@none": [ + "78 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389922.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389922.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389922.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389922", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389922.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29c0bcac-0e28-4e4a-9656-f64044d51182" + } + ] + }, + { + "label": { + "@none": [ + "79 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389923.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389923.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389923.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389923", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389923.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1fa95e77-3268-413a-b047-5a4e2f209499" + } + ] + }, + { + "label": { + "@none": [ + "79 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389924.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389924.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389924.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389924", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389924.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6052d7e-40db-40a3-a57b-78ee5e702f53" + } + ] + }, + { + "label": { + "@none": [ + "80 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389925.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389925.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389925.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389925", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389925.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f0a85d5-864e-4977-b810-2e111ac41cc0" + } + ] + }, + { + "label": { + "@none": [ + "80 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389926.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389926.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389926.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389926", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389926.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d395abc-a7c3-45f9-830c-b83d3cb77cf1" + } + ] + }, + { + "label": { + "@none": [ + "81 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389927.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389927.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389927.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389927", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389927.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ada0ccd6-4feb-4e35-8c82-bc3124fe8aaa" + } + ] + }, + { + "label": { + "@none": [ + "81 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389928.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389928.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389928.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389928", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389928.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70e6537b-f3e8-4e1d-aa0a-8f489e4a08e3" + } + ] + }, + { + "label": { + "@none": [ + "82 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389929.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389929.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389929.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389929", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389929.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2fbf7dc-7375-4d44-9f1d-e6eda729403e" + } + ] + }, + { + "label": { + "@none": [ + "83 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389930.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389930.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389930.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389930", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389930.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8e2e87d-a71f-4753-8f6f-b5be2139daec" + } + ] + }, + { + "label": { + "@none": [ + "84 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389931.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389931.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389931.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389931", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389931.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10b8a339-e7df-4fe0-9d98-5c22d5ffce08" + } + ] + }, + { + "label": { + "@none": [ + "85 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389932.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389932.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389932.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389932", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389932.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43889b8c-0946-473f-897c-87666928ca7b" + } + ] + }, + { + "label": { + "@none": [ + "86 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389933.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389933.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389933.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389933", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389933.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87bff7c6-4996-40a6-bed1-aeb9ca3515ab" + } + ] + }, + { + "label": { + "@none": [ + "87 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389934.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389934.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389934.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389934", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389934.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/059c39ea-0e0b-438c-8df4-b052229fa5f2" + } + ] + }, + { + "label": { + "@none": [ + "88 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389935.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389935.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389935.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389935", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389935.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3a5782d-a920-4059-a7a2-7afc85331900" + } + ] + }, + { + "label": { + "@none": [ + "90 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389936.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389936.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389936.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389936", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389936.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d508702-2454-41fa-9bc4-5748ac0917c3" + } + ] + }, + { + "label": { + "@none": [ + "91 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389937.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389937.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389937.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389937", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389937.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6ca2fe76-9a39-408b-88fb-820117e08ed2" + } + ] + }, + { + "label": { + "@none": [ + "91 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389938.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389938.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389938.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389938", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389938.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a50f9bd8-648f-4f94-a838-07369a0fb717" + } + ] + }, + { + "label": { + "@none": [ + "92 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389939.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389939.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389939.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389939", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389939.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f8441f2a-1ad6-426b-951e-351f5d07b545" + } + ] + }, + { + "label": { + "@none": [ + "93 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389940.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389940.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389940.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389940", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389940.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbba6767-a96f-458a-a757-94758a88634a" + } + ] + }, + { + "label": { + "@none": [ + "93 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389941.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389941.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389941.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389941", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389941.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c9f4255-79f2-48b8-9a40-4c45be5418be" + } + ] + }, + { + "label": { + "@none": [ + "94 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389942.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389942.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389942.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389942", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389942.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32da2edf-f0f6-4726-942d-a91cd0d7e2d3" + } + ] + }, + { + "label": { + "@none": [ + "94 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389943.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389943.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389943.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389943", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389943.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/799522e8-1b6c-4fbb-97e4-a1e210bff8b9" + } + ] + }, + { + "label": { + "@none": [ + "95 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389944.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389944.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389944.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389944", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389944.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c28511cb-1540-44ee-9039-8dc077066b92" + } + ] + }, + { + "label": { + "@none": [ + "95 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389945.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389945.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389945.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389945", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389945.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/605c1f92-c884-459b-8193-b064655aadb2" + } + ] + }, + { + "label": { + "@none": [ + "96 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389946.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389946.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389946.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389946", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389946.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f0b1b2b-c290-4b05-9ba3-01cd6a81c915" + } + ] + }, + { + "label": { + "@none": [ + "96 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389947.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389947.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389947.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389947", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389947.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2cbbbd8e-6326-4cc6-8717-5935761a95e0" + } + ] + }, + { + "label": { + "@none": [ + "97 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389948.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389948.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389948.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389948", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389948.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0ab20bb-addc-4535-9b63-8880d5f4dbcd" + } + ] + }, + { + "label": { + "@none": [ + "97 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389949.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389949.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389949.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389949", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389949.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7bcaea4c-fc71-4d34-b442-adf6c04709b6" + } + ] + }, + { + "label": { + "@none": [ + "98 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389950.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389950.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389950.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389950", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389950.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43a9ee89-d348-4cb4-a209-19b2b356b2f7" + } + ] + }, + { + "label": { + "@none": [ + "98 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389951.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389951.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389951.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389951", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389951.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b09862b9-35dd-4577-98bc-1cdde0c452d5" + } + ] + }, + { + "label": { + "@none": [ + "99 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389952.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389952.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389952.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389952", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389952.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae951820-326e-452f-9077-c0f8eb0d1892" + } + ] + }, + { + "label": { + "@none": [ + "100 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389953.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389953.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389953.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389953", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389953.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8e59930-b3c4-479b-bf07-84afa6df6adf" + } + ] + }, + { + "label": { + "@none": [ + "100 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389954.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389954.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389954.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389954", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389954.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b814c8e8-b69c-468d-a1b4-52aa70f567fb" + } + ] + }, + { + "label": { + "@none": [ + "101 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389955.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389955.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389955.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389955", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389955.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef10fa82-8ff4-43b7-8549-546a628159d9" + } + ] + }, + { + "label": { + "@none": [ + "101 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389956.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389956.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389956.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389956", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389956.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69b8b2fb-cdbf-4a98-a1b8-af436dcf9060" + } + ] + }, + { + "label": { + "@none": [ + "102 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389957.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389957.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389957.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389957", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389957.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/465626fe-d1fa-4be5-a4b6-467450ebc747" + } + ] + }, + { + "label": { + "@none": [ + "102 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389958.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389958.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389958.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389958", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389958.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01750028-e2f0-4661-87b0-194d976f7b6d" + } + ] + }, + { + "label": { + "@none": [ + "103 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389959.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389959.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389959.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389959", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389959.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0e42311-85ec-42fa-af35-9304236a7652" + } + ] + }, + { + "label": { + "@none": [ + "103 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389960.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389960.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389960.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389960", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389960.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3ed5d44-62f0-420c-9b75-afbbda91f6b1" + } + ] + }, + { + "label": { + "@none": [ + "104 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389961.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389961.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389961.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389961", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389961.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef351972-399f-4079-91dd-b253f2b178e5" + } + ] + }, + { + "label": { + "@none": [ + "104 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389962.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389962.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389962.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389962", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389962.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4eb53d45-7459-4552-87e2-902dec5b9850" + } + ] + }, + { + "label": { + "@none": [ + "105 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389963.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389963.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389963.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389963", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389963.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23fc74f3-8e6f-47ca-b238-93a313163315" + } + ] + }, + { + "label": { + "@none": [ + "106 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389964.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389964.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389964.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389964", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389964.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68ec2064-76ea-4e54-8ea9-028a3d9917ab" + } + ] + }, + { + "label": { + "@none": [ + "106 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389965.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389965.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389965.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389965", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389965.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3a2b594-4bb1-4315-839e-e5c7c6ff5a4c" + } + ] + }, + { + "label": { + "@none": [ + "107 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389966.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389966.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389966.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389966", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389966.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e9a88c6-ec23-4c00-8bfa-900ecc70164a" + } + ] + }, + { + "label": { + "@none": [ + "109 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389967.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389967.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389967.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389967", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389967.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a499e8c9-2a49-4215-80d6-238550e8b3c5" + } + ] + }, + { + "label": { + "@none": [ + "109 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389968.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389968.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389968.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389968", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389968.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95d805b4-34d5-451f-a1a2-49d466e5f77a" + } + ] + }, + { + "label": { + "@none": [ + "110 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389969.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389969.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389969.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389969", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389969.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6ebd05db-09bd-4427-96f5-c576f604da66" + } + ] + }, + { + "label": { + "@none": [ + "110 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389970.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389970.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389970.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389970", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389970.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc94afec-e0f2-4b9e-9f0e-a00d5cd613c8" + } + ] + }, + { + "label": { + "@none": [ + "111 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389971.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389971.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389971.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389971", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389971.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c792c5b-83d2-4a24-9e6a-17ac03f056e4" + } + ] + }, + { + "label": { + "@none": [ + "111 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389972.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389972.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389972.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389972", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389972.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24c338b3-d027-46db-959c-fa66d2a203e4" + } + ] + }, + { + "label": { + "@none": [ + "112 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389973.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389973.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389973.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389973", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389973.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3886db9-e6ee-4381-96ee-440826680692" + } + ] + }, + { + "label": { + "@none": [ + "112 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389974.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389974.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389974.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389974", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389974.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebee5c0d-b10c-4b75-9ba8-d601d2652b29" + } + ] + }, + { + "label": { + "@none": [ + "113 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389975.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389975.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389975.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389975", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389975.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dcafcf78-5739-4163-a7aa-bf94d2e5532d" + } + ] + }, + { + "label": { + "@none": [ + "113 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389976.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389976.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389976.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389976", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389976.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c818ad1-cd78-45d5-89bb-cd72ae0f6a9d" + } + ] + }, + { + "label": { + "@none": [ + "114 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389977.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389977.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389977.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389977", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389977.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/495b28de-7e8c-4eed-980b-e5271af5b43f" + } + ] + }, + { + "label": { + "@none": [ + "114 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389978.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389978.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389978.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389978", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389978.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4afe80b-ef76-4dae-8f0d-5e7440198700" + } + ] + }, + { + "label": { + "@none": [ + "115 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389979.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389979.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389979.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389979", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389979.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/993a6f8f-13f8-47b1-8222-096ba4241a3c" + } + ] + }, + { + "label": { + "@none": [ + "115 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389980.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389980.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389980.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389980", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389980.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67ea2332-f9aa-4228-a71a-92d4a519f02e" + } + ] + }, + { + "label": { + "@none": [ + "237 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389981.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389981.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389981.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389981", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389981.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd32ffd6-ea79-4c18-a8fd-6c3c1557739b" + } + ] + }, + { + "label": { + "@none": [ + "unlabeled" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389982.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389982.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389982.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389982", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389982.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58a766d8-420d-41ad-bd2f-c37c8757ef15" + } + ] + }, + { + "label": { + "@none": [ + "unlabeled" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389983.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389983.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389983.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389983", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389983.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c914dbb7-11f7-46b3-be6f-59c9df263801" + } + ] + }, + { + "label": { + "@none": [ + "unlabeled" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389984.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389984.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389984.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389984", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389984.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad0ead80-d800-4502-925d-39eb734f3bd2" + } + ] + }, + { + "label": { + "@none": [ + "239 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389985.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389985.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389985.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389985", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389985.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d1955b3-4b9d-464c-80f4-d5f7a3a3f558" + } + ] + }, + { + "label": { + "@none": [ + "back cover" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389986.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389986.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389986.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389986", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389986.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61c06da1-77d3-4b9c-bfae-31cff884a665" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_nlw_newspaper_manifest": { + "label": { + "@none": [ + "Cambrian (1804-01-28)" + ] + }, + "navDate": "1804-01-28T00:00:00Z", + "metadata": [ + { + "label": { + "en": [ + "Publisher" + ], + "cy-GB": [ + "Cyhoeddwr" + ] + }, + "value": { + "@none": [ + "T. Jenkins" + ] + } + }, + { + "label": { + "@none": [ + "Place of Publication" + ] + }, + "value": { + "@none": [ + "Swansea" + ] + } + }, + { + "label": { + "en": [ + "Frequency" + ], + "cy-GB": [ + "Amlder" + ] + }, + "value": { + "@none": [ + "Weekly" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "eng" + ] + } + }, + { + "label": { + "@none": [ + "Subject" + ] + }, + "value": { + "@none": [ + "Swansea (Wales) Newspapers" + ] + } + }, + { + "label": { + "en": [ + "Repository" + ], + "cy-GB": [ + "Ystorfa" + ] + }, + "value": { + "en": [ + "This content has been digitised by The National Library of Wales" + ], + "cy-GB": [ + "Digidwyd y cynnwys hwn gan Lyfrgell Gendlaethol Cymru" + ] + } + } + ], + "logo": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg" + } + ], + "seeAlso": [ + { + "format": "application/rdf+xml", + "profile": "http://www.europeana.eu/schemas/edm/", + "type": "Dataset", + "id": "http://hdl.handle.net/10107/3320640" + } + ], + "structures": [ + { + "label": { + "@none": [ + "TO THE PUBLIC." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "ON the first appearance of a New Paper be-Cyfore that august Tribunal which is ultimately to fix its destiny, Custom exacts a disclosure of its claim to notice: obedient to. her" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle1", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=540,5040,3306,18510", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json" + } + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle2", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=3834,4983,13134,18528", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json" + } + }, + { + "label": { + "@none": [ + "LONDON." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "___THURSDAY, Jan. 19. THE invasion of this country by the French has for some time been the general topic of .. conversation, and various rumours are con" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle3", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=582,555,16413,22638", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle3.json" + } + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle4", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=13773,9642,3387,13467", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle4.json" + } + }, + { + "label": { + "@none": [ + "-THE -" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "m The difficulties attending the first publications of a Newspaper being inconceivably great, we trust they will operate in extenuation of whatever errors and imperfections may be observed. Maturity will speedily" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle5", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=525,525,9993,22614", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle5.json" + } + }, + { + "label": { + "@none": [ + "Family Notices" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Family Notices" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle6", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7173,14520,3303,6357", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle6.json" + } + }, + { + "label": { + "@none": [ + "HIGH WATER ON SWANSEA BAR" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Detailed Lists, Results and Guides" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle7", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7209,20913,3120,1470", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle7.json" + } + }, + { + "label": { + "@none": [ + "TO CORRESPONDENTS." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "The Parody from Gray in our next. Communications from our Holywell Correspondent will always be acceptable. We have, for the present, omitted his last favour, on account of the extraordinary mildness of" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle8", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7218,22359,3222,714", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle8.json" + } + }, + { + "label": { + "@none": [ + "COUNTRY MARKETS. I" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Detailed Lists, Results and Guides" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle9", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10401,540,3360,15036", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle9.json" + } + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle10", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10377,546,6693,22560", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle10.json" + } + }, + { + "label": { + "@none": [ + "ODE FOR THE NEW YEAR." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "WHEN, at the Despot's dread command, Bridg'd Hellespont his myriads bore From servile Asia's peopled strand To Graecia's and to Freedom's share—" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle11", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,744,3213,9366", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle11.json" + } + }, + { + "label": { + "@none": [ + "THE CURATE.—A FRAGMENT." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "O'ER the pale embers of a-dying fire, His little lampe fed with but little oile, The Curate sat (for scantie was his hire) ;And ruminated sad the morrow's toil." + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle12", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=510,10398,3210,8079", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle12.json" + } + }, + { + "label": { + "@none": [ + "VOLUNTEERS.\"" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Copy of a circular letter _from Mr. Secretary . Yorke to the Lieutenants in the several counties in Great Britain :-My Lord, \" Whitehall, Jan. 14, 1804." + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle13", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,576,16377,20817", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle13.json" + } + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle14", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=660,21486,16311,1770", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle14.json" + } + } + ], + "type": "Manifest", + "id": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "partOf": [ + { + "id": "http://dams.llgc.org.uk/iiif/newspapers/3320639.json", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "[1]" + ] + }, + "height": 7905, + "width": 5826, + "type": "Canvas", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "annotations": [ + { + "label": { + "@none": [ + "TO THE PUBLIC." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART1.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json" + } + ] + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART2.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json" + } + ] + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320641.json", + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320641", + "type": "ImageService2" + } + ], + "height": 7905, + "width": 5826, + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320641/image/full/512,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3be76ef-08c2-4785-af95-9fbdfe9f51c4" + } + ] + }, + { + "label": { + "@none": [ + "[2]" + ] + }, + "height": 7905, + "width": 5826, + "type": "Canvas", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642", + "annotations": [ + { + "label": { + "@none": [ + "LONDON." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320642/annotation/list/ART3.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle3.json" + } + ] + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320642/annotation/list/ART4.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle4.json" + } + ] + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320642.json", + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320642", + "type": "ImageService2" + } + ], + "height": 7905, + "width": 5826, + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320642/image/full/512,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9cf25dca-c464-4aad-b2d2-93bd48c5c592" + } + ] + }, + { + "label": { + "@none": [ + "[3]" + ] + }, + "height": 7905, + "width": 5826, + "type": "Canvas", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643", + "annotations": [ + { + "label": { + "@none": [ + "-THE -" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART5.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle5.json" + } + ] + }, + { + "label": { + "@none": [ + "Family Notices" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART6.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle6.json" + } + ] + }, + { + "label": { + "@none": [ + "HIGH WATER ON SWANSEA BAR" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART7.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle7.json" + } + ] + }, + { + "label": { + "@none": [ + "TO CORRESPONDENTS." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART8.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle8.json" + } + ] + }, + { + "label": { + "@none": [ + "COUNTRY MARKETS. I" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART9.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle9.json" + } + ] + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART10.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle10.json" + } + ] + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320643.json", + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320643", + "type": "ImageService2" + } + ], + "height": 7905, + "width": 5826, + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320643/image/full/512,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ac0e970-0982-47a4-8c15-58e96fea5b61" + } + ] + }, + { + "label": { + "@none": [ + "[4]" + ] + }, + "height": 7905, + "width": 5826, + "type": "Canvas", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644", + "annotations": [ + { + "label": { + "@none": [ + "ODE FOR THE NEW YEAR." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320644/annotation/list/ART11.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle11.json" + } + ] + }, + { + "label": { + "@none": [ + "THE CURATE.—A FRAGMENT." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320644/annotation/list/ART12.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle12.json" + } + ] + }, + { + "label": { + "@none": [ + "VOLUNTEERS.\"" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320644/annotation/list/ART13.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle13.json" + } + ] + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320644/annotation/list/ART14.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle14.json" + } + ] + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320644.json", + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320644", + "type": "ImageService2" + } + ], + "height": 7905, + "width": 5826, + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320644/image/full/512,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86e66f91-8c5e-4754-82f7-94ddfc168c97" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_princeton_manifest": { + "label": { + "@none": [ + "Dada (Zurich, Switzerland), 3" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Dada (Zurich, Switzerland)" + ] + } + }, + { + "label": { + "@none": [ + "display-date" + ] + }, + "value": { + "@none": [ + "Décembre 1918" + ] + } + }, + { + "label": { + "@none": [ + "part" + ] + }, + "value": { + "@none": [ + "3" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "a license" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "a description" + ] + } + } + ], + "structures": [ + { + "label": { + "@none": [ + "Table of Contents" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page10", + "type": "Canvas" + }, + { + "label": { + "@none": [ + "Untitled Text" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c001", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "MANIFESTE DADA 1918." + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c003", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "SOPRA UN QUADRO CUBISTA" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c007", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Regard" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c009", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Avant l'heure" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c012", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "SALIVE AMÉRICAINE" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c013", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Bois de E. PRAMPOLINI" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c014", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "ABRI" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c045", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "LA JOIE DES SEPT COULEURS: (Fragment)" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c015", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "CRAYON BLEU: Poème à trois voix simultanées" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c019", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Guillaume Apollinaire" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c020", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "BOIS de H. RICHTER" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c021", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Bâton" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c022", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "3 gravures sur bois par H. ARP" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c028", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "GUILLAUME APOLLINAIRE" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c029", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "circuit total par la lune et par la couleur" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c031", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Gravure originale de MARCEL JANCO." + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c032", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "à Kisling" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Bulletin" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033a", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Untitled Image" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c034", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Untitled Image" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c035", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "LE MARIN" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c036", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "CALENDRIER" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c038", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "COW-BOY" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c039", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c042", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c043", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c044", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c046", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c047", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Ad for Editions SIC" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c048", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Ad for Tzara's 25 Poemes" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c049", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + } + ] + } + ], + "type": "Manifest", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by the Blue Mountain Project at Princeton University" + ] + } + }, + "partOf": [ + { + "id": "within URI", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "OUTSIDE_FRONT_COVER" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bbc2832b-6fa7-4d05-8de0-3bb522aa2d10", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2cdd64c-716f-4917-bb4c-413ce9b9573a" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2e9eaab4-5d38-4dd3-add9-27d5955c0262", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0002.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0002.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/21ef56da-2ff6-44a1-925e-220453884f75" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/51534a81-aa87-457d-aa2b-3ae4448b9d79", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0003.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0003.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00f7a84f-6e34-4bca-90c6-d6836ffce758" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb2de485-2983-489d-aecc-25b7dc288b07", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0004.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0004.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65b020ac-3519-488f-9a47-16100c9f7f06" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2373072e-fc2f-497e-a888-3011fbd5fa12", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0005.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0005.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e29f55d2-ec12-4f98-a822-3cf7489e2374" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c8bbf57e-b8b7-4e68-8413-2c87fa47843e", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0006.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0006.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2db69114-0280-4394-8d16-287373ae3994" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c36303d4-c583-4952-81ba-09804ef53d38", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0007.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0007.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5766a5dd-5d6c-4395-86fe-91df83f2c237" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd3bf853-b3ec-4bfb-abbc-095ba355aa95", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0008.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0008.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19bda006-f7ac-461a-ad80-06ebe8d681ad" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7fe7b6dd-4ad2-4db4-b21f-42922a34c08e", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0009.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0009.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/321e630d-9591-4fc7-a36f-44a2547d08b7" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page10", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7891d599-f85d-4f28-a0d5-a7b9a816cd88", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0010.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0010.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe990d3a-3076-4c49-be2b-b80e4f37a0f9" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0494d3c0-ab23-4b05-bccb-77bab6020d2a", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0011.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0011.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/da26514b-a0ff-49da-bf4d-1091614dc63d" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4d45b878-e8ce-4d76-9386-242c9e7d1528", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0012.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0012.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb7ddabb-b4ad-49f6-9b8f-a6ceb44d32c4" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dea63650-7b77-43a0-8b36-f162372da89f", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0013.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0013.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55f824a8-3506-4afe-8181-150064405d5d" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f240c864-7182-47a2-a714-94aac8721e18", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0014.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0014.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55b11ace-75a4-4a39-8021-a42c40d112ba" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0faa6a66-ac04-45c6-8901-5277403e9528", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0015.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0015.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad9fbd47-721a-4764-b468-f03f427ba65e" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/21499dc1-d889-4bc4-8266-cb8d5a12c3a2", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0016.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0016.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5026391-212b-412b-a7d9-06aa78b203dd" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_purl_stanford_edu_qm670kv1873_iiif_manifest": { + "label": { + "@none": [ + "Walters Ms. W.168, Book of Hours" + ] + }, + "logo": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette/full/400,/0/default.jpg" + } + ], + "seeAlso": [ + { + "format": "application/mods+xml", + "type": "Dataset", + "id": "https://purl.stanford.edu/qm670kv1873.mods" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Available Online" + ] + }, + "value": { + "@none": [ + "https://purl.stanford.edu/qm670kv1873" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Walters Ms. W.168, Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Calendar" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Office of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Mass of the Virgin" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Gospel sequences" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Obsecro te" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "O intermerata" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Stabat Mater" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Prayer" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Seven Last Words of Christ" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Hours of the Virgin, Use of Rome" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Long Hours of the Holy Spirit" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Short Hours of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Seven Penitential Psalms" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Litany and one collect" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Office of the Dead" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Suffrages" + ] + } + }, + { + "label": { + "@none": [ + "Contributor" + ] + }, + "value": { + "@none": [ + "Masters of Zweder van Culemborg (artist)" + ] + } + }, + { + "label": { + "@none": [ + "Contributor" + ] + }, + "value": { + "@none": [ + "Style of Willem Vrelant (artist)" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This fine illuminated Book of Hours was produced in two stages in the second and third quarters of the fifteenth century. The manuscript contains eleven full-page miniatures and twenty historiated initials. The first stage of production includes a section attributed to the Masters of Zweder van Culemborg and the calendar (fols. 3r-14v, 52v-211v), while additional prayers illustrated in the style of the workshop of Willem Vrelant were added later in the fifteenth century (fols. 16r-50v, 213r-223r), presumably when the book was bound in its present binding. The Hours of the Virgin is for the Use of Rome. The Use of the Office of the Dead is unidentified, but the calendar is for the Use of Utrecht. The two separate parts of the manuscript were bound together in Flanders. The sections of W.168 attributed to the Masters of Zweder van Culemborg have been compared to Utrecht, Utrecht University Ms. 1037; Cambridge, Fitzwilliam Museum James Ms. 141; the second hand in New York, Pierpont Morgan Library Ms. M.87; Stockholm, Royal Library A 226, and Philadelphia, Free Library Lewis Ms. 88. \n For full description, see http://www.thedigitalwalters.org/Data/WaltersManuscripts/html/W168/description.html" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "The primary language in this manuscript is Latin." + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Calendar" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Office of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Mass of the Virgin" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Gospel sequences" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Obsecro te" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "O intermerata" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Stabat Mater" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Prayer" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Seven Last Words of Christ" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Hours of the Virgin, Use of Rome" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Long Hours of the Holy Spirit" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Short Hours of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Seven Penitential Psalms" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Litany and one collect" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Office of the Dead" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Suffrages" + ] + } + }, + { + "label": { + "@none": [ + "Format" + ] + }, + "value": { + "@none": [ + "parchment" + ] + } + }, + { + "label": { + "@none": [ + "Format" + ] + }, + "value": { + "@none": [ + "image/jpeg" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"D,\" fol. 16r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"I,\" fol. 23r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"O,\" fol. 34v" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniatures on fols. 52v, 76v, 81v, 85v, 90v, 94v, and 102v; historiated initial \"D,\" fol. 53r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 108v; historiated initial \"D,\" fol. 109r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Eleven full-page miniatures edged in gold and white-streaked blue/rose; Zweder Master sections feature five historiated initials (1 to 9 lines high); Vrelant Master sections feature fifteen historiated initials (8 lines high), as well as ornamental initials (1 to 4 lines high); borders decorated as in Zweder Master sections; floral sprays often found in margins; rubrics in red; text in black ink" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 128v; historiated initial \"D,\" fol. 129r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 148v; historiated initial \"D,\" fol. 149r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 166v; historiated initial \"D,\" fol. 167r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initials on fols. 213r, 213v, 214v, 215v, 216v, 217v, 218v, 221r, 222r, and 222v" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 16r Crucifixion Historiated initial \"D,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 23r Madonna and Child enthroned Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 34v Lamentation Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 52v Betrayal Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 53r Madonna and Child in half-length, \"clothed in the sun\" Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 76v Christ before Pilate Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 81v Flagellation Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 85v Christ carrying the Cross Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 90v Crucifixion Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 94v Deposition Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 102v Entombment Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 108v Trinity Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 109r Pentecost Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 128v Man of Sorrows, surrounded by the Arma Christi Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 129r Nativity Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 148v Last Judgement Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 149r Christ holding a globe and blessing Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 166v Funeral Mass Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 167r Three female souls in purgatory Historiated initial \"D,\" 8 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 213r St. John the Baptist Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 213v St. James Major Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 214v St. Christopher Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 215v St. Sebastian Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 216v St. Adrian Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 217v St. George Historiated initial \"G,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 218v St. Ghislain Historiated initial \"S,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 219r St. Catherine Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 220r St. Barbara Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 221r St. Apollonia Historiated initial \"V,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 222r St. Margaret Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 222v St. Anne teaching the Virgin to read Historiated initial \"C,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1425-1450" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Second quarter of the 15th century (ca. 1430-35), with additions ca. 1460" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Created in two phases, with the original part made ca. 1430-35 and the second part made in the late fifteenth century; calendar for Utrecht suggests original site of production" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Libraire Morgand no. 26084, nineteenth century" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Walters Art Museum, 1931, by Henry Walters bequest" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Walters Manuscripts" + ] + } + }, + { + "label": { + "@none": [ + "PublishDate" + ] + }, + "value": { + "@none": [ + "2018-03-23T23:32:55Z" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This fine illuminated Book of Hours was produced in two stages in the second and third quarters of the fifteenth century. The manuscript contains eleven full-page miniatures and twenty historiated initials. The first stage of production includes a section attributed to the Masters of Zweder van Culemborg and the calendar (fols. 3r-14v, 52v-211v), while additional prayers illustrated in the style of the workshop of Willem Vrelant were added later in the fifteenth century (fols. 16r-50v, 213r-223r), presumably when the book was bound in its present binding. The Hours of the Virgin is for the Use of Rome. The Use of the Office of the Dead is unidentified, but the calendar is for the Use of Utrecht. The two separate parts of the manuscript were bound together in Flanders. The sections of W.168 attributed to the Masters of Zweder van Culemborg have been compared to Utrecht, Utrecht University Ms. 1037; Cambridge, Fitzwilliam Museum James Ms. 141; the second hand in New York, Pierpont Morgan Library Ms. M.87; Stockholm, Royal Library A 226, and Philadelphia, Free Library Lewis Ms. 88. \n For full description, see http://www.thedigitalwalters.org/Data/WaltersManuscripts/html/W168/description.html" + ] + } + } + ], + "thumbnail": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/!400,400/0/default.jpg" + } + ], + "type": "Manifest", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "All Walters manuscript images and descriptions provided here are copyrighted © The Walters Art Museum." + ] + } + }, + "items": [ + { + "label": { + "@none": [ + "Upper board outside" + ] + }, + "height": 2236, + "width": 1732, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_1", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2236, + "width": 1732, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fd76287-bc78-4a4b-9f43-eb3eee89b038" + } + ] + }, + { + "label": { + "@none": [ + "Upper board inside" + ] + }, + "height": 2220, + "width": 1632, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_2", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2220, + "width": 1632, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000002_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000002_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23576f50-40ec-467c-a903-a3c6dfe32590" + } + ] + }, + { + "label": { + "@none": [ + "fol. 1r" + ] + }, + "height": 2064, + "width": 1502, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_3", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1502, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000003_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000003_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b6a9f0ba-9cc5-44b2-8f41-f3748d8769e6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 1v" + ] + }, + "height": 2098, + "width": 1444, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_4", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1444, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000004_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000004_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38777328-0d90-4765-91ac-6be23b8bd2b3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 2r" + ] + }, + "height": 2043, + "width": 1439, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_5", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2043, + "width": 1439, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000005_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000005_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1475a1e-ea0c-4007-af2b-530d9122ff68" + } + ] + }, + { + "label": { + "@none": [ + "fol. 2v" + ] + }, + "height": 2072, + "width": 1447, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_6", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1447, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000006_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000006_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/238297dd-a830-4edc-ab06-1ca6da46229c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 3r" + ] + }, + "height": 2093, + "width": 1436, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_7", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000007_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000007_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/30312564-ffbe-4154-98cb-85f0d5b83f22" + } + ] + }, + { + "label": { + "@none": [ + "fol. 3v" + ] + }, + "height": 2106, + "width": 1424, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_8", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000008_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000008_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac9f37e9-7f49-4192-81fb-d7867874687f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 4r" + ] + }, + "height": 2106, + "width": 1431, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_9", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1431, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000009_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000009_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0dfd1b81-b71b-4f00-a561-6fd681a61073" + } + ] + }, + { + "label": { + "@none": [ + "fol. 4v" + ] + }, + "height": 2098, + "width": 1426, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_10", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_10", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1426, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000010_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000010_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f949208-083f-4468-8924-207f1533f4ee" + } + ] + }, + { + "label": { + "@none": [ + "fol. 5r" + ] + }, + "height": 2101, + "width": 1429, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_11", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1429, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000011_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000011_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc6eac69-c04d-43b5-bd7e-3f8dc28687d9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 5v" + ] + }, + "height": 2077, + "width": 1452, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_12", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_12", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1452, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000012_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000012_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58e2fee8-a106-40fc-b672-699a6cea9da3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 6r" + ] + }, + "height": 2106, + "width": 1431, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_13", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_13", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_13", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1431, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000013_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000013_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f079296-9175-41bd-97c6-8e74c28db484" + } + ] + }, + { + "label": { + "@none": [ + "fol. 6v" + ] + }, + "height": 2108, + "width": 1421, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_14", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1421, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000014_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000014_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e02092c-cef3-4eb0-90c2-17a5171ddc52" + } + ] + }, + { + "label": { + "@none": [ + "fol. 7r" + ] + }, + "height": 2103, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_15", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_15", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_15", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000015_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000015_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ffc70bc-61f1-4ca4-a2d5-dce06b005f0e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 7v" + ] + }, + "height": 2051, + "width": 1400, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_16", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_16", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_16", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000016_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000016_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36f08c44-2733-47b0-98a3-13e943011532" + } + ] + }, + { + "label": { + "@none": [ + "fol. 8r" + ] + }, + "height": 2098, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_17", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_17", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_17", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000017_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000017_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4a38b44-85d4-45ce-87c5-195e4229824d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 8v" + ] + }, + "height": 2059, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_18", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_18", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_18", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000018_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000018_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3392bc63-0a19-4ca8-b096-a0a2a3f4ac38" + } + ] + }, + { + "label": { + "@none": [ + "fol. 9r" + ] + }, + "height": 2113, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_19", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_19", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_19", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000019_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000019_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/349905c8-e849-42e6-adbc-b8723595ef4d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 9v" + ] + }, + "height": 2048, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_20", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_20", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_20", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000020_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000020_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c218c30c-0ec2-44c2-986a-f8584ba8fca5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 10r" + ] + }, + "height": 2103, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_21", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_21", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_21", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000021_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000021_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f107ecfc-1903-469e-bc6d-de2e752e0810" + } + ] + }, + { + "label": { + "@none": [ + "fol. 10v" + ] + }, + "height": 2064, + "width": 1405, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_22", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_22", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_22", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1405, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000022_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000022_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cff6e8a5-09bf-420f-b00a-445840c3070f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 11r" + ] + }, + "height": 2093, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_23", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_23", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_23", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000023_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000023_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e94d10cb-bf2e-4d43-a274-dc7294ea7412" + } + ] + }, + { + "label": { + "@none": [ + "fol. 11v" + ] + }, + "height": 2064, + "width": 1382, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_24", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_24", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_24", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1382, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000024_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000024_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae50590f-cb92-4cd1-b160-b87f370d78b7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 12r" + ] + }, + "height": 2105, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_25", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_25", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_25", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000025_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000025_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ca34279-db00-424a-aa25-41e838562423" + } + ] + }, + { + "label": { + "@none": [ + "fol. 12v" + ] + }, + "height": 2069, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_26", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_26", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_26", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000026_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000026_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4767e8e8-716f-4315-a96d-0f7c5dcc758e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 13r" + ] + }, + "height": 2108, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_27", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_27", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_27", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000027_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000027_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d9d7d11-a82a-4a6d-9c25-b9f8e9d5795d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 13v" + ] + }, + "height": 2059, + "width": 1398, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_28", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_28", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_28", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1398, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000028_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000028_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d32ce799-5c2a-4813-886d-6e915e1876b8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 14r" + ] + }, + "height": 2051, + "width": 1411, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_29", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_29", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_29", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1411, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000029_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000029_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9fd67d26-6a1f-4ee3-b115-6e885428f760" + } + ] + }, + { + "label": { + "@none": [ + "fol. 14v" + ] + }, + "height": 2065, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_30", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_30", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_30", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2065, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000030_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000030_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/427cd030-3f66-4888-9b4c-33eb601349e5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 15r" + ] + }, + "height": 2085, + "width": 1421, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_31", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_31", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_31", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1421, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000031_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000031_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63480171-0309-4eae-bcb3-cdcba3096d5d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 15v" + ] + }, + "height": 2051, + "width": 1421, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_32", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_32", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_32", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1421, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000032_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000032_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7091002b-6943-4800-9468-194042b8b667" + } + ] + }, + { + "label": { + "@none": [ + "fol. 16r" + ] + }, + "height": 2106, + "width": 1419, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_33", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_33", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_33", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1419, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000033_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000033_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/674e3dd9-c5f8-4c52-ad0a-abe2f1edcea2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 16v" + ] + }, + "height": 2072, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_34", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_34", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_34", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000034_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000034_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf0d6b1d-6b05-45a1-85e4-6b1175155150" + } + ] + }, + { + "label": { + "@none": [ + "fol. 17r" + ] + }, + "height": 2088, + "width": 1419, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_35", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_35", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_35", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 1419, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000035_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000035_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b62f990-2204-4e5f-9ca9-690dae44b4ea" + } + ] + }, + { + "label": { + "@none": [ + "fol. 17v" + ] + }, + "height": 2041, + "width": 1382, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_36", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_36", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_36", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2041, + "width": 1382, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000036_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000036_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65fe3714-b2a1-4314-a911-3e4e71139300" + } + ] + }, + { + "label": { + "@none": [ + "fol. 18r" + ] + }, + "height": 2101, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_37", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_37", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_37", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000037_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000037_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e53e846-db2f-409b-adeb-aa21de93bdda" + } + ] + }, + { + "label": { + "@none": [ + "fol. 18v" + ] + }, + "height": 2051, + "width": 1390, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_38", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_38", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_38", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1390, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000038_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000038_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb2bc1e0-11f9-4123-acc3-077cbc0fb4d2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 19r" + ] + }, + "height": 2108, + "width": 1426, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_39", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_39", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_39", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1426, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000039_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000039_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5050bf4-c2ab-4f82-b548-c9b9f91b618d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 19v" + ] + }, + "height": 2069, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_40", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_40", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_40", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000040_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000040_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e7f9577-9a22-4a61-a0ee-03e02d213026" + } + ] + }, + { + "label": { + "@none": [ + "fol. 20r" + ] + }, + "height": 2105, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_41", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_41", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_41", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000041_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000041_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/448b9104-d7ac-4719-92b7-c2be432fe965" + } + ] + }, + { + "label": { + "@none": [ + "fol. 20v" + ] + }, + "height": 2051, + "width": 1410, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_42", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_42", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_42", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1410, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000042_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000042_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/322b89d9-9c78-4322-8393-15db137b4935" + } + ] + }, + { + "label": { + "@none": [ + "fol. 21r" + ] + }, + "height": 2101, + "width": 1410, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_43", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_43", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_43", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1410, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000043_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000043_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4263610-ccf5-411b-9db2-454e4c906f06" + } + ] + }, + { + "label": { + "@none": [ + "fol. 21v" + ] + }, + "height": 2053, + "width": 1411, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_44", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_44", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_44", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2053, + "width": 1411, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000044_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000044_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b08c56ef-fb33-4146-a336-5d2109596a4e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 22r" + ] + }, + "height": 2100, + "width": 1390, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_45", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_45", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_45", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1390, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000045_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000045_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52d037a3-6b95-473b-aa2d-2d2112929678" + } + ] + }, + { + "label": { + "@none": [ + "fol. 22v" + ] + }, + "height": 2072, + "width": 1410, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_46", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_46", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_46", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1410, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000046_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000046_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4050996-3103-49e6-a1b8-51227d14c27a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 23r" + ] + }, + "height": 2105, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_47", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_47", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_47", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000047_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000047_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fc28d7f-c5ff-4316-97b6-34abc19a22d1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 23v" + ] + }, + "height": 2070, + "width": 1379, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_48", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_48", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_48", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2070, + "width": 1379, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000048_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000048_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e09dd098-e105-462b-8c31-bf3d16c8d168" + } + ] + }, + { + "label": { + "@none": [ + "fol. 24r" + ] + }, + "height": 2103, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_49", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_49", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_49", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000049_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000049_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9fc934c-56c8-494d-8052-c59669382c79" + } + ] + }, + { + "label": { + "@none": [ + "fol. 24v" + ] + }, + "height": 2056, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_50", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_50", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_50", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000050_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000050_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d0e84a1-97d8-42e6-af9d-9bd45d955694" + } + ] + }, + { + "label": { + "@none": [ + "fol. 25r" + ] + }, + "height": 2100, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_51", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_51", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_51", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000051_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000051_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f87f969a-19fa-4719-ad59-075169810398" + } + ] + }, + { + "label": { + "@none": [ + "fol. 25v" + ] + }, + "height": 2083, + "width": 1414, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_52", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_52", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_52", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2083, + "width": 1414, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000052_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000052_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09b44277-e20f-40f5-bfb2-b80f54988938" + } + ] + }, + { + "label": { + "@none": [ + "fol. 26r" + ] + }, + "height": 2054, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_53", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_53", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_53", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000053_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000053_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed2ba1d8-c5ad-4bb4-b3ee-af350d214130" + } + ] + }, + { + "label": { + "@none": [ + "fol. 26v" + ] + }, + "height": 2046, + "width": 1405, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_54", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_54", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_54", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2046, + "width": 1405, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000054_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000054_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2821948-6d2f-4593-b549-61137bb7a03f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 27r" + ] + }, + "height": 2041, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_55", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_55", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_55", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2041, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000055_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000055_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5db8011e-9195-440d-86a4-a36530ff4120" + } + ] + }, + { + "label": { + "@none": [ + "fol. 27v" + ] + }, + "height": 2063, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_56", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_56", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_56", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2063, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000056_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000056_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2adfd027-eb74-46bb-a5ef-e82804726d1a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 28r" + ] + }, + "height": 2061, + "width": 1372, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_57", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_57", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_57", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000057_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000057_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35ed70c3-35c6-41ba-9b82-df2203547f34" + } + ] + }, + { + "label": { + "@none": [ + "fol. 28v" + ] + }, + "height": 2061, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_58", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_58", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_58", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000058_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000058_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e300d47-48d8-494d-8935-454daf8f94eb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 29r" + ] + }, + "height": 2034, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_59", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_59", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_59", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2034, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000059_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000059_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/033da1fc-6b32-4d7c-8384-2223ea57e2f6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 29v" + ] + }, + "height": 2048, + "width": 1382, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_60", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_60", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_60", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1382, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000060_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000060_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d549eaf-7da0-4f7a-947a-c1c257b4f153" + } + ] + }, + { + "label": { + "@none": [ + "fol. 30r" + ] + }, + "height": 2093, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_61", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_61", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_61", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000061_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000061_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3da2d963-f5b0-4c23-93fd-22d437a6914b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 30v" + ] + }, + "height": 2064, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_62", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_62", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_62", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000062_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000062_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/624fc6ec-e5dd-4acb-b3e4-7d6de2146ebe" + } + ] + }, + { + "label": { + "@none": [ + "fol. 31r" + ] + }, + "height": 2113, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_63", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_63", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_63", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000063_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000063_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e95009b-4ecf-45e1-be33-16a7528b32b5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 31v" + ] + }, + "height": 2066, + "width": 1374, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_64", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_64", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_64", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1374, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000064_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000064_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/db1d1b99-ca19-4be2-b47f-7f0542593e10" + } + ] + }, + { + "label": { + "@none": [ + "fol. 32r" + ] + }, + "height": 2033, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_65", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_65", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_65", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2033, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000065_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000065_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/849f866c-3df7-46e5-8b8b-1e14de8b4594" + } + ] + }, + { + "label": { + "@none": [ + "fol. 32v" + ] + }, + "height": 2059, + "width": 1369, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_66", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_66", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_66", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1369, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000066_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000066_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/232f32ec-c55f-4bcb-9b07-adf109b2dd36" + } + ] + }, + { + "label": { + "@none": [ + "fol. 33r" + ] + }, + "height": 2039, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_67", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_67", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_67", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2039, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000067_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000067_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/632533cf-868e-4c24-9300-7c3ec660eefc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 33v" + ] + }, + "height": 2071, + "width": 1388, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_68", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_68", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_68", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000068_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000068_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/535a4e98-3b97-43bf-a312-779734a7db08" + } + ] + }, + { + "label": { + "@none": [ + "fol. 34r" + ] + }, + "height": 2038, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_69", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_69", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_69", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2038, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000069_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000069_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23c7e16c-2ff0-4b44-9068-02c9d06ccbe1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 34v" + ] + }, + "height": 2064, + "width": 1374, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_70", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_70", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_70", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1374, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000070_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000070_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a30c4b55-1d97-4037-bef6-a1a495664ca8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 35r" + ] + }, + "height": 2038, + "width": 1324, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_71", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_71", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_71", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2038, + "width": 1324, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000071_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000071_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c7531d4-a957-4753-bcac-d5729a8bb386" + } + ] + }, + { + "label": { + "@none": [ + "fol. 35v" + ] + }, + "height": 2048, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_72", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_72", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_72", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000072_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000072_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/269e87c4-68d8-4a29-af56-5d1d0833025d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 36r" + ] + }, + "height": 2051, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_73", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_73", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_73", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000073_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000073_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d7246d6-a09d-4d6c-ae14-642f8bd9f332" + } + ] + }, + { + "label": { + "@none": [ + "fol. 36v" + ] + }, + "height": 2073, + "width": 1375, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_74", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_74", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_74", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2073, + "width": 1375, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000074_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000074_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2775cb1-707e-4f4b-afcd-4285d4a8c167" + } + ] + }, + { + "label": { + "@none": [ + "fol. 37r" + ] + }, + "height": 2062, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_75", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_75", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_75", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000075_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000075_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62eebf0d-dbfe-46e6-a211-35aac9306883" + } + ] + }, + { + "label": { + "@none": [ + "fol. 37v" + ] + }, + "height": 2059, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_76", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_76", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_76", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000076_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000076_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22e076e4-6356-4b03-9316-b482f9396938" + } + ] + }, + { + "label": { + "@none": [ + "fol. 38r" + ] + }, + "height": 2067, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_77", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_77", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_77", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000077_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000077_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50c26c87-2dad-49b9-8e8d-b703245760b9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 38v" + ] + }, + "height": 2061, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_78", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_78", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_78", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000078_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000078_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19d405dd-4fb2-4866-9800-60aea017a482" + } + ] + }, + { + "label": { + "@none": [ + "fol. 39r" + ] + }, + "height": 2048, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_79", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_79", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_79", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000079_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000079_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3bfc3c3d-554c-48c0-a169-093da8e53cbc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 39v" + ] + }, + "height": 2056, + "width": 1370, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_80", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_80", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_80", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1370, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000080_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000080_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0bcd987-7bc3-4e3d-ab37-0f9cc0614d55" + } + ] + }, + { + "label": { + "@none": [ + "fol. 40r" + ] + }, + "height": 2077, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_81", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_81", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_81", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000081_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000081_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd080627-0478-4989-b44f-4bc04cf89f5b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 40v" + ] + }, + "height": 2069, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_82", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_82", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_82", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000082_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000082_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/155df376-bb3c-4707-9ed7-5578ee580964" + } + ] + }, + { + "label": { + "@none": [ + "fol. 41r" + ] + }, + "height": 2038, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_83", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_83", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_83", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2038, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000083_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000083_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd819f63-62ff-4e25-a82d-da1fd8ac90d6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 41v" + ] + }, + "height": 2067, + "width": 1374, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_84", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_84", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_84", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1374, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000084_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000084_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0bddb4b5-ed3c-49ba-908e-eea2fbb03647" + } + ] + }, + { + "label": { + "@none": [ + "fol. 42r" + ] + }, + "height": 2056, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_85", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_85", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_85", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000085_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000085_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/203293b7-ebd6-49ee-bae5-a16d4b902f73" + } + ] + }, + { + "label": { + "@none": [ + "fol. 42v" + ] + }, + "height": 2067, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_86", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_86", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_86", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000086_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000086_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad5ab7c5-54c0-48cf-848d-3cfc422a4317" + } + ] + }, + { + "label": { + "@none": [ + "fol. 43r" + ] + }, + "height": 2056, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_87", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_87", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_87", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000087_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000087_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4bc44b6d-1303-48d5-b54b-f93e9bdf08a0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 43v" + ] + }, + "height": 2069, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_88", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_88", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_88", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000088_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000088_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b228f3c2-f668-46fc-858b-6dd12150e513" + } + ] + }, + { + "label": { + "@none": [ + "fol. 44r" + ] + }, + "height": 2056, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_89", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_89", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_89", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000089_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000089_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ffdefb5-00b3-4843-9338-f9e6a534d1ed" + } + ] + }, + { + "label": { + "@none": [ + "fol. 44v" + ] + }, + "height": 2074, + "width": 1383, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_90", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_90", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_90", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1383, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000090_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000090_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3dfda40-cc7b-461f-95fe-08ece6ceacc3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 45r" + ] + }, + "height": 2034, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_91", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_91", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_91", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2034, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000091_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000091_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d55e0ab3-26dc-43c3-b663-843f7d962496" + } + ] + }, + { + "label": { + "@none": [ + "fol. 45v" + ] + }, + "height": 2040, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_92", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_92", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_92", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2040, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000092_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000092_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a717e0b-d10f-4d51-a470-5538d7748279" + } + ] + }, + { + "label": { + "@none": [ + "fol. 46r" + ] + }, + "height": 2027, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_93", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_93", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_93", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2027, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000093_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000093_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e1a4c961-1239-4af9-a833-3704a9a458cc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 46v" + ] + }, + "height": 2043, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_94", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_94", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_94", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2043, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000094_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000094_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2af11213-a7fc-4414-b3f1-e77ff3233bde" + } + ] + }, + { + "label": { + "@none": [ + "fol. 47r" + ] + }, + "height": 2053, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_95", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_95", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_95", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2053, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000095_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000095_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5c85f82-176f-433f-89a6-2a624e5a5b74" + } + ] + }, + { + "label": { + "@none": [ + "fol. 47v" + ] + }, + "height": 2051, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_96", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_96", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_96", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000096_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000096_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60d1b29e-ce59-4a17-9fec-cd208a4a7bc8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 48r" + ] + }, + "height": 2051, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_97", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_97", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_97", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000097_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000097_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3460fa61-ee2d-416a-b387-54674b2899c0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 48v" + ] + }, + "height": 2079, + "width": 1366, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_98", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_98", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_98", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2079, + "width": 1366, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000098_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000098_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc49aaf9-fe7f-4211-93ea-5eb8800c5eb6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 49r" + ] + }, + "height": 2048, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_99", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_99", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_99", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000099_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000099_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b7d4263c-8bb4-4933-83ad-3cb4286c4aa6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 49v" + ] + }, + "height": 2056, + "width": 1369, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_100", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_100", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_100", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1369, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000100_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000100_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5c379d3-7fe3-4961-8dbe-75ed5f693f0c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 50r" + ] + }, + "height": 2048, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_101", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_101", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_101", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000101_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000101_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5de1990-a59a-4ac9-a6ba-b85ff07f9b1e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 50v" + ] + }, + "height": 2048, + "width": 1379, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_102", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_102", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_102", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1379, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000102_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000102_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9db789c6-8a28-4c29-be71-c6e22e4ed66c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 51r" + ] + }, + "height": 2059, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_103", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_103", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_103", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000103_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000103_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e6d6f76-62e8-46b6-8124-eb817092c8a6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 51v" + ] + }, + "height": 2042, + "width": 1376, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_104", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_104", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_104", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2042, + "width": 1376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000104_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000104_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b279145-0c29-45b0-8863-75320f14a702" + } + ] + }, + { + "label": { + "@none": [ + "fol. 52r" + ] + }, + "height": 2043, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_105", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_105", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_105", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2043, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000105_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000105_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4684f5d5-905b-4f62-aaf8-052b6a8542d0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 52v" + ] + }, + "height": 2067, + "width": 1377, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_106", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_106", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_106", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1377, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000106_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000106_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1c27149-1ca8-4bf9-835a-82d803ae5429" + } + ] + }, + { + "label": { + "@none": [ + "fol. 53r" + ] + }, + "height": 2054, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_107", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_107", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_107", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000107_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000107_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef6cd2c6-fc78-4489-a8d4-68b7007f07a1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 53v" + ] + }, + "height": 2101, + "width": 1408, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_108", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_108", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_108", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1408, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000108_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000108_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4307f4b-d912-48a4-b687-498824e9710b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 54r" + ] + }, + "height": 2061, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_109", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_109", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_109", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000109_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000109_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a59609fd-67f8-45cc-bcbf-3580cbc04df7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 54v" + ] + }, + "height": 2043, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_110", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_110", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_110", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2043, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000110_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000110_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/873134a7-734f-4967-a9ec-10697add960d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 55r" + ] + }, + "height": 2067, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_111", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_111", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_111", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000111_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000111_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fb6d93e-a19f-4eba-8e50-d2ca557fc097" + } + ] + }, + { + "label": { + "@none": [ + "fol. 55v" + ] + }, + "height": 2061, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_112", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_112", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_112", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000112_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000112_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d33dd64-2227-456d-b30a-4dc996bc1510" + } + ] + }, + { + "label": { + "@none": [ + "fol. 56r" + ] + }, + "height": 2101, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_113", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_113", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_113", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000113_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000113_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d20636c-9943-4420-acdd-13b1dc397c60" + } + ] + }, + { + "label": { + "@none": [ + "fol. 56v" + ] + }, + "height": 2060, + "width": 1376, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_114", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_114", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_114", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2060, + "width": 1376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000114_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000114_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/968a5967-db44-4c17-8299-edba1c159c36" + } + ] + }, + { + "label": { + "@none": [ + "fol. 57r" + ] + }, + "height": 2098, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_115", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_115", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_115", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000115_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000115_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5493ffda-54fa-44ee-872b-6b385dad21fa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 57v" + ] + }, + "height": 2051, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_116", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_116", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_116", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000116_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000116_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be609e8f-5990-45ed-9487-a6e155a6a32d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 58r" + ] + }, + "height": 2095, + "width": 1342, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_117", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_117", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_117", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1342, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000117_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000117_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37ed30cb-30a5-4852-9a95-b3218e6fed4d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 58v" + ] + }, + "height": 2103, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_118", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_118", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_118", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000118_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000118_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/49207254-2c7c-48d4-9823-738b22ca27d7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 59r" + ] + }, + "height": 2093, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_119", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_119", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_119", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000119_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000119_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9fbdc9fd-16cb-44d4-b93d-09b09cbf9064" + } + ] + }, + { + "label": { + "@none": [ + "fol. 59v" + ] + }, + "height": 2081, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_120", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_120", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_120", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000120_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000120_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef493270-a006-455c-a247-70e96232451f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 60r" + ] + }, + "height": 2093, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_121", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_121", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_121", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000121_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000121_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/386a05ba-773a-4eb9-a25e-317f9417c388" + } + ] + }, + { + "label": { + "@none": [ + "fol. 60v" + ] + }, + "height": 2059, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_122", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_122", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_122", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000122_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000122_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0350dac1-e391-4f9e-8775-d86dfb1fe412" + } + ] + }, + { + "label": { + "@none": [ + "fol. 61r" + ] + }, + "height": 2100, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_123", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_123", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_123", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000123_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000123_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca27b355-08b2-4b2c-a56e-1d11cb3557c6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 61v" + ] + }, + "height": 2051, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_124", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_124", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_124", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000124_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000124_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/029947fa-38e0-4007-bd6f-01ba3fa08ffc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 62r" + ] + }, + "height": 2095, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_125", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_125", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_125", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000125_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000125_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a9b095e-7f4a-48a3-a69a-97bc8f75dbd4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 62v" + ] + }, + "height": 2069, + "width": 1355, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_126", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_126", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_126", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000126_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000126_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b6efb4b7-271f-496d-a797-8458c00ea80d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 63r" + ] + }, + "height": 2103, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_127", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_127", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_127", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000127_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000127_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b07ac76a-f745-4f18-984f-30123bdfd68e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 63v" + ] + }, + "height": 2067, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_128", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_128", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_128", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000128_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000128_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae5ff221-6639-446b-9e23-4bdcecfeee60" + } + ] + }, + { + "label": { + "@none": [ + "fol. 64r" + ] + }, + "height": 2098, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_129", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_129", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_129", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000129_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000129_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0c8dc21-896d-48ff-9b27-90ecb38503fa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 64v" + ] + }, + "height": 2064, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_130", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_130", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_130", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000130_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000130_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf878d94-dd5c-46ad-93eb-0a3e18788b3b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 65r" + ] + }, + "height": 2119, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_131", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_131", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_131", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2119, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000131_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000131_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b72b8ad-81b4-44d8-985c-80d2266bb822" + } + ] + }, + { + "label": { + "@none": [ + "fol. 65v" + ] + }, + "height": 2060, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_132", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_132", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_132", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2060, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000132_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000132_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f14bd7fc-b069-4428-a660-593151586822" + } + ] + }, + { + "label": { + "@none": [ + "fol. 66r" + ] + }, + "height": 2114, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_133", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_133", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_133", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2114, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000133_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000133_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94a1319d-2f26-4a24-a4e0-6701dbb5a45e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 66v" + ] + }, + "height": 2051, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_134", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_134", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_134", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000134_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000134_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a45e39c6-1f23-46f9-8d35-178bce703432" + } + ] + }, + { + "label": { + "@none": [ + "fol. 67r" + ] + }, + "height": 2106, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_135", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_135", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_135", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000135_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000135_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87bd03dc-1623-42be-97f7-0cd3e5054e88" + } + ] + }, + { + "label": { + "@none": [ + "fol. 67v" + ] + }, + "height": 2046, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_136", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_136", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_136", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2046, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000136_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000136_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2d08f7a-86bd-4115-ba50-5110610b8fba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 68r" + ] + }, + "height": 2103, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_137", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_137", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_137", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000137_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000137_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa0b2332-92d4-4068-91a2-5e5324d6280b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 68v" + ] + }, + "height": 2048, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_138", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_138", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_138", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000138_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000138_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a921a665-870d-4e17-9aaa-54bceb0b6a97" + } + ] + }, + { + "label": { + "@none": [ + "fol. 69r" + ] + }, + "height": 2116, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_139", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_139", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_139", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000139_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000139_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7aca0fe3-b176-41ba-a209-1382543ee7fa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 69v" + ] + }, + "height": 2054, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_140", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_140", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_140", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000140_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000140_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ed5dfe8-cf95-4e52-9034-cf21499d9365" + } + ] + }, + { + "label": { + "@none": [ + "fol. 70r" + ] + }, + "height": 2129, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_141", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_141", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_141", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2129, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000141_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000141_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/da39967d-db7a-4985-9bcc-80c1364dba90" + } + ] + }, + { + "label": { + "@none": [ + "fol. 70v" + ] + }, + "height": 2064, + "width": 1372, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_142", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_142", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_142", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000142_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000142_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92089389-2051-4485-ad16-c67efce9b944" + } + ] + }, + { + "label": { + "@none": [ + "fol. 71r" + ] + }, + "height": 2113, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_143", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_143", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_143", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000143_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000143_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/757cb879-1081-4f62-b491-154364535f29" + } + ] + }, + { + "label": { + "@none": [ + "fol. 71v" + ] + }, + "height": 2054, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_144", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_144", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_144", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000144_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000144_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/044d7d4a-fa30-4bc8-90f0-6312a29793d5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 72r" + ] + }, + "height": 2056, + "width": 1306, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_145", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_145", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_145", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1306, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000145_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000145_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b0ea72f-5458-4002-8b95-7f7d3a4da070" + } + ] + }, + { + "label": { + "@none": [ + "fol. 72v" + ] + }, + "height": 2069, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_146", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_146", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_146", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000146_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000146_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81328c63-9dcd-4dae-aa8a-acfe54b33994" + } + ] + }, + { + "label": { + "@none": [ + "fol. 73r" + ] + }, + "height": 2067, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_147", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_147", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_147", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000147_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000147_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1818141a-24c0-48f0-9eed-65720dc5416b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 73v" + ] + }, + "height": 2069, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_148", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_148", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_148", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000148_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000148_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10ce3685-b9e4-4fff-966f-cf7f3a9942e3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 74r" + ] + }, + "height": 2108, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_149", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_149", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_149", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000149_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000149_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01b13dfe-b672-49d4-b2a4-9c82034fc241" + } + ] + }, + { + "label": { + "@none": [ + "fol. 74v" + ] + }, + "height": 2059, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_150", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_150", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_150", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000150_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000150_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/74610e06-2c81-4199-9333-44c1b954a4cb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 75r" + ] + }, + "height": 2092, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_151", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_151", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_151", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2092, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000151_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000151_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92c26548-05a7-4b31-8653-f299a8d4ef29" + } + ] + }, + { + "label": { + "@none": [ + "fol. 75v" + ] + }, + "height": 2059, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_152", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_152", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_152", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000152_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000152_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7e355c7-7e1a-46bb-b188-4d4e648fca6c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 76r" + ] + }, + "height": 2103, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_153", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_153", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_153", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000153_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000153_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b565298c-693a-44d7-b731-0b94806f49b7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 76v" + ] + }, + "height": 2051, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_154", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_154", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_154", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000154_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000154_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29f3a78c-e397-4b49-8144-b11847f35914" + } + ] + }, + { + "label": { + "@none": [ + "fol. 77r" + ] + }, + "height": 2101, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_155", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_155", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_155", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000155_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000155_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8961e58b-c175-4d28-bcbc-bd7d47cca3d8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 77v" + ] + }, + "height": 2061, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_156", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_156", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_156", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000156_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000156_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a547874-9197-416b-81db-24ae614aaafa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 78r" + ] + }, + "height": 2088, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_157", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_157", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_157", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000157_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000157_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b677fb91-a0ef-4519-bc6d-2efcaa6c82c1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 78v" + ] + }, + "height": 2062, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_158", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_158", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_158", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000158_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000158_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7a3bd8c0-9056-46a0-aa16-ff8d7a034187" + } + ] + }, + { + "label": { + "@none": [ + "fol. 79r" + ] + }, + "height": 2101, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_159", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_159", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_159", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000159_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000159_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/014046ab-9a89-4f91-bae6-6e9d8604d8c2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 79v" + ] + }, + "height": 2074, + "width": 1355, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_160", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_160", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_160", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000160_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000160_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc862677-4b7e-49eb-9cd4-06185aa1ec84" + } + ] + }, + { + "label": { + "@none": [ + "fol. 80r" + ] + }, + "height": 2098, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_161", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_161", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_161", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000161_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000161_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/125ec955-3333-40fb-a0f2-2f546ceb8443" + } + ] + }, + { + "label": { + "@none": [ + "fol. 80v" + ] + }, + "height": 2054, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_162", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_162", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_162", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000162_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000162_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e758d759-60fa-4689-9156-b8fbd264c199" + } + ] + }, + { + "label": { + "@none": [ + "fol. 81r" + ] + }, + "height": 2095, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_163", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_163", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_163", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000163_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000163_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9825469-044e-4c85-a533-46a2ff8112fd" + } + ] + }, + { + "label": { + "@none": [ + "fol. 81v" + ] + }, + "height": 2054, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_164", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_164", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_164", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000164_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000164_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce1af023-5d35-4ea2-8dc0-69b8f73c768e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 82r" + ] + }, + "height": 2098, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_165", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_165", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_165", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000165_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000165_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d0bfc9e4-32bc-4e0c-8f66-4122255b48e4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 82v" + ] + }, + "height": 2066, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_166", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_166", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_166", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000166_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000166_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/516aebd0-7531-425f-a7ef-6dd36ba0686f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 83r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_167", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_167", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_167", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000167_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000167_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/02eafd3d-ae14-4c7f-bcaf-1cb445db3468" + } + ] + }, + { + "label": { + "@none": [ + "fol. 83v" + ] + }, + "height": 2046, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_168", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_168", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_168", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2046, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000168_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000168_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fc0fcbf-2cb1-4986-843a-8fddbfeecf7c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 84r" + ] + }, + "height": 2111, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_169", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_169", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_169", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000169_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000169_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55350736-0972-4841-bb0f-9f7e95275864" + } + ] + }, + { + "label": { + "@none": [ + "fol. 84v" + ] + }, + "height": 2072, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_170", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_170", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_170", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000170_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000170_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00fb3b00-f67d-4b1e-ab3c-14e55cb9d6ab" + } + ] + }, + { + "label": { + "@none": [ + "fol. 85r" + ] + }, + "height": 2108, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_171", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_171", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_171", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000171_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000171_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2b18f4e3-008e-4417-b2ed-32a2af84b951" + } + ] + }, + { + "label": { + "@none": [ + "fol. 85v" + ] + }, + "height": 2062, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_172", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_172", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_172", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000172_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000172_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72ab008f-e9f1-4b05-ad63-e70566552e68" + } + ] + }, + { + "label": { + "@none": [ + "fol. 86r" + ] + }, + "height": 2101, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_173", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_173", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_173", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000173_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000173_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad18230a-e81e-4044-92fc-f8fbae508c5a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 86v" + ] + }, + "height": 2030, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_174", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_174", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_174", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2030, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000174_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000174_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dfac2595-31c7-4767-b460-8b9aed02c01a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 87r" + ] + }, + "height": 2085, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_175", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_175", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_175", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000175_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000175_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c69f80f3-c9e8-4f57-80b6-3bd547f56302" + } + ] + }, + { + "label": { + "@none": [ + "fol. 87v" + ] + }, + "height": 2051, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_176", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_176", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_176", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000176_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000176_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/427acb05-a3f7-4d9e-abfd-aa971ea6396a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 88r" + ] + }, + "height": 2079, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_177", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_177", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_177", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2079, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000177_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000177_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/46c09e3d-e413-4e58-a87d-d572687e69a6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 88v" + ] + }, + "height": 2082, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_178", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_178", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_178", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000178_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000178_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42be033b-609b-4cc4-b7f0-1b364ba6d565" + } + ] + }, + { + "label": { + "@none": [ + "fol. 89r" + ] + }, + "height": 2098, + "width": 1314, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_179", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_179", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_179", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1314, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000179_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000179_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42b0a961-b469-43d1-96ff-de778455ff60" + } + ] + }, + { + "label": { + "@none": [ + "fol. 89v" + ] + }, + "height": 2070, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_180", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_180", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_180", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2070, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000180_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000180_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a939d70e-0392-4265-96cb-6532ddf84e63" + } + ] + }, + { + "label": { + "@none": [ + "fol. 90r" + ] + }, + "height": 2106, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_181", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_181", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_181", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000181_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000181_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05cef06c-dd30-42a7-87ff-2955e0705150" + } + ] + }, + { + "label": { + "@none": [ + "fol. 90v" + ] + }, + "height": 2062, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_182", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_182", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_182", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000182_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000182_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/74ed5667-3627-44bf-9483-51932f8875f3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 91r" + ] + }, + "height": 2116, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_183", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_183", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_183", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000183_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000183_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8a4bc02c-a51e-4617-b3d7-6f69982802f8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 91v" + ] + }, + "height": 2082, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_184", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_184", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_184", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000184_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000184_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7cd02452-6383-4906-9d35-0241f0819c79" + } + ] + }, + { + "label": { + "@none": [ + "fol. 92r" + ] + }, + "height": 2113, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_185", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_185", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_185", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000185_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000185_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0c27dbdc-93f4-4a0a-ad25-d67701e72b0d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 92v" + ] + }, + "height": 2060, + "width": 1319, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_186", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_186", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_186", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2060, + "width": 1319, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000186_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000186_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7097a98b-313e-47c8-866f-1e4c437813af" + } + ] + }, + { + "label": { + "@none": [ + "fol. 93r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_187", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_187", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_187", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000187_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000187_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c13e5e34-5a8a-48b1-a899-bbf1c1a2b0cf" + } + ] + }, + { + "label": { + "@none": [ + "fol. 93v" + ] + }, + "height": 2077, + "width": 1366, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_188", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_188", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_188", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1366, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000188_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000188_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/455ab701-eb0d-4c0e-a400-ee788bd4c83c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 94r" + ] + }, + "height": 2116, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_189", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_189", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_189", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000189_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000189_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dcd37114-712d-4bd5-a02e-3c9c124857fa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 94v" + ] + }, + "height": 2077, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_190", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_190", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_190", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000190_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000190_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f86bd2dd-df5d-4ae1-8d74-29fac733f47c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 95r" + ] + }, + "height": 2108, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_191", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_191", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_191", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000191_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000191_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad4b4d1d-dc67-4830-b141-dcaa32d8355f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 95v" + ] + }, + "height": 2059, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_192", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_192", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_192", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000192_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000192_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a831c20-274d-46b3-840f-18ebeb80287d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 96r" + ] + }, + "height": 2095, + "width": 1342, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_193", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_193", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_193", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1342, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000193_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000193_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2be7a71f-15c1-4239-b354-1fdace56ff3c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 96v" + ] + }, + "height": 2056, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_194", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_194", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_194", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000194_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000194_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/752e360e-fec4-405c-ae28-616b2792ab6c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 97r" + ] + }, + "height": 2104, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_195", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_195", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_195", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2104, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000195_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000195_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b99fe5e9-41c5-4513-8b22-bca2c1e8cefa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 97v" + ] + }, + "height": 2056, + "width": 1324, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_196", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_196", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_196", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1324, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000196_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000196_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09d3ac7c-10f2-4109-a710-70adf52ae618" + } + ] + }, + { + "label": { + "@none": [ + "fol. 98r" + ] + }, + "height": 2111, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_197", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_197", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_197", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000197_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000197_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14eb8821-c6fc-4ca3-9ca9-c77ecd99c8e8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 98v" + ] + }, + "height": 2048, + "width": 1316, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_198", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_198", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_198", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000198_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000198_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60d4449d-83c0-4dfd-b58e-b4564fcf2c6a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 99r" + ] + }, + "height": 2103, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_199", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_199", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_199", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000199_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000199_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a973d19b-1e61-4120-a6be-06c873425b85" + } + ] + }, + { + "label": { + "@none": [ + "fol. 99v" + ] + }, + "height": 2074, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_200", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_200", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_200", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000200_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000200_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ef670ec-d705-4e65-ab83-25354b2a1350" + } + ] + }, + { + "label": { + "@none": [ + "fol. 100r" + ] + }, + "height": 2069, + "width": 1324, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_201", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_201", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_201", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1324, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000201_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000201_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7faf52ca-dcdc-4c35-ab7e-794b0b4e4c1e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 100v" + ] + }, + "height": 2069, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_202", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_202", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_202", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000202_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000202_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e029e192-44af-46e5-9618-94d614697c67" + } + ] + }, + { + "label": { + "@none": [ + "fol. 101r" + ] + }, + "height": 2099, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_203", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_203", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_203", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2099, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000203_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000203_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68b6fc52-241e-4d91-b301-3314df43c3e4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 101v" + ] + }, + "height": 2085, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_204", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_204", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_204", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000204_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000204_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4687ade-452a-4beb-ab1f-9849dc8e27ba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 102r" + ] + }, + "height": 2066, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_205", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_205", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_205", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000205_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000205_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33b3e379-ced3-4f43-bcae-ce07e91c370f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 102v" + ] + }, + "height": 2049, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_206", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_206", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_206", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2049, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000206_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000206_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/840be702-3828-44a4-9e4f-3242ad4a047a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 103r" + ] + }, + "height": 2111, + "width": 1359, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_207", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_207", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_207", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1359, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000207_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000207_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1221449d-5ab4-4159-acb3-1dc3932e9b38" + } + ] + }, + { + "label": { + "@none": [ + "fol. 103v" + ] + }, + "height": 2055, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_208", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_208", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_208", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2055, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000208_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000208_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fd32d30-bfd5-4f8b-aaa7-3705b58a7753" + } + ] + }, + { + "label": { + "@none": [ + "fol. 104r" + ] + }, + "height": 2103, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_209", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_209", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_209", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000209_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000209_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef88f866-e5ab-47c4-a867-1313ce96cb4f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 104v" + ] + }, + "height": 2058, + "width": 1357, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_210", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_210", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_210", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1357, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000210_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000210_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d40e84c-37d9-4cb9-a9cd-77a49bc9eaac" + } + ] + }, + { + "label": { + "@none": [ + "fol. 105r" + ] + }, + "height": 2071, + "width": 1333, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_211", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_211", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_211", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1333, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000211_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000211_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48c9db7d-e828-4d84-af43-9eef4f290f2f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 105v" + ] + }, + "height": 2067, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_212", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_212", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_212", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000212_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000212_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75f7a2d3-5b30-4907-be02-ddfc8c9f6207" + } + ] + }, + { + "label": { + "@none": [ + "fol. 106r" + ] + }, + "height": 2069, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_213", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_213", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_213", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000213_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000213_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0de4c15-7248-4f97-a32e-79fc8bfdc917" + } + ] + }, + { + "label": { + "@none": [ + "fol. 106v" + ] + }, + "height": 2048, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_214", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_214", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_214", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000214_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000214_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e69a7f4b-6350-4c55-aa3f-83f71cbc45ea" + } + ] + }, + { + "label": { + "@none": [ + "fol. 107r" + ] + }, + "height": 2085, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_215", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_215", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_215", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000215_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000215_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b50f840-7e5a-4d30-8866-6d539425390e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 107v" + ] + }, + "height": 2048, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_216", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_216", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_216", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000216_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000216_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1cf62406-81d5-46dc-a5d5-9520290d36f8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 108r" + ] + }, + "height": 2071, + "width": 1318, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_217", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_217", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_217", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1318, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000217_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000217_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad7d5187-9377-4850-8c12-4a1b54d01590" + } + ] + }, + { + "label": { + "@none": [ + "fol. 108v" + ] + }, + "height": 2068, + "width": 1346, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_218", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_218", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_218", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2068, + "width": 1346, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000218_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000218_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8f36925-5eb1-4a95-b48f-c288f52e98d3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 109r" + ] + }, + "height": 2103, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_219", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_219", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_219", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000219_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000219_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d512ff46-1409-45ea-8ddb-d5ea07af7c4e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 109v" + ] + }, + "height": 2072, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_220", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_220", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_220", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000220_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000220_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e410867-88a0-47b8-b56a-423a32e49f98" + } + ] + }, + { + "label": { + "@none": [ + "fol. 110r" + ] + }, + "height": 2108, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_221", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_221", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_221", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000221_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000221_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/889798fa-8974-4ce7-af37-a0e034f3e3cc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 110v" + ] + }, + "height": 2067, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_222", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_222", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_222", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000222_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000222_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa07f58f-0622-47c8-92ec-da6a33b0e15f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 111r" + ] + }, + "height": 2103, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_223", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_223", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_223", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000223_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000223_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/637c682a-dc73-40fd-98d5-1780372d9930" + } + ] + }, + { + "label": { + "@none": [ + "fol. 111v" + ] + }, + "height": 2059, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_224", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_224", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_224", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000224_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000224_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/adc3f0b7-4eb5-4027-aa77-379ffbe67b6d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 112r" + ] + }, + "height": 2098, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_225", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_225", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_225", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000225_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000225_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a4221e7-7943-454c-a5a9-a72378ffa3b9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 112v" + ] + }, + "height": 2054, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_226", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_226", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_226", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000226_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000226_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d0ed0f9-a930-446b-9933-136bdd97b16c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 113r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_227", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_227", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_227", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000227_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000227_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4f1a67a-21bd-427b-83cf-28e838acb325" + } + ] + }, + { + "label": { + "@none": [ + "fol. 113v" + ] + }, + "height": 2077, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_228", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_228", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_228", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000228_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000228_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2dd98be6-4d87-4743-9b41-fed8bedde157" + } + ] + }, + { + "label": { + "@none": [ + "fol. 114r" + ] + }, + "height": 2101, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_229", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_229", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_229", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000229_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000229_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e86288eb-f7b1-40df-9d37-f205c6c80599" + } + ] + }, + { + "label": { + "@none": [ + "fol. 114v" + ] + }, + "height": 2048, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_230", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_230", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_230", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000230_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000230_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ec293ba-b84b-4a00-9d30-45211bb768b1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 115r" + ] + }, + "height": 2108, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_231", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_231", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_231", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000231_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000231_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9432430-1d3c-4622-b6ce-c2d4f7c26f52" + } + ] + }, + { + "label": { + "@none": [ + "fol. 115v" + ] + }, + "height": 2090, + "width": 1366, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_232", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_232", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_232", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1366, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000232_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000232_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4cfb0134-df04-41c3-b925-e6cda381d239" + } + ] + }, + { + "label": { + "@none": [ + "fol. 116r" + ] + }, + "height": 2069, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_233", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_233", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_233", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000233_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000233_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/196838e4-e455-44e7-ba38-eae9670cc335" + } + ] + }, + { + "label": { + "@none": [ + "fol. 116v" + ] + }, + "height": 2085, + "width": 1324, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_234", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_234", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_234", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1324, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000234_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000234_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c58bb79b-6009-49f1-8dc9-184e755780cd" + } + ] + }, + { + "label": { + "@none": [ + "fol. 117r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_235", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_235", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_235", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000235_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000235_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15c5cbd3-35f6-4d71-b39c-6763074df303" + } + ] + }, + { + "label": { + "@none": [ + "fol. 117v" + ] + }, + "height": 2091, + "width": 1370, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_236", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_236", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_236", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2091, + "width": 1370, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000236_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000236_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/daf6776b-35ee-49b6-b89b-e15c43dceca6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 118r" + ] + }, + "height": 2112, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_237", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_237", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_237", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2112, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000237_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000237_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85829b7d-6f42-4f17-94a1-c68448886f38" + } + ] + }, + { + "label": { + "@none": [ + "fol. 118v" + ] + }, + "height": 2077, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_238", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_238", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_238", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000238_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000238_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63ef5f31-fb13-4cac-9034-e60fde7b21af" + } + ] + }, + { + "label": { + "@none": [ + "fol. 119r" + ] + }, + "height": 2103, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_239", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_239", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_239", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000239_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000239_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a94ea73f-562f-4726-bb02-bfd7b84ba402" + } + ] + }, + { + "label": { + "@none": [ + "fol. 119v" + ] + }, + "height": 2074, + "width": 1329, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_240", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_240", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_240", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1329, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000240_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000240_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3293e29-68f5-4a4d-b91a-3c04309cbffe" + } + ] + }, + { + "label": { + "@none": [ + "fol. 120r" + ] + }, + "height": 2108, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_241", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_241", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_241", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000241_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000241_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a08b2390-8a9c-45a4-ae84-a8c5f5ec0f2d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 120v" + ] + }, + "height": 2089, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_242", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_242", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_242", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2089, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000242_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000242_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67fa7591-8ded-48f0-9be5-53521ec1dd3e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 121r" + ] + }, + "height": 2121, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_243", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_243", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_243", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2121, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000243_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000243_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4eae7dc8-e786-4a16-a1ef-61d1eba03cf0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 121v" + ] + }, + "height": 2082, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_244", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_244", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_244", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000244_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000244_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8bd3ab9a-95b4-4437-997b-b16cc45fbdfb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 122r" + ] + }, + "height": 2098, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_245", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_245", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_245", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000245_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000245_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a7d516e1-d843-4d13-beb2-7448c2a5259b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 122v" + ] + }, + "height": 2090, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_246", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_246", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_246", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000246_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000246_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e984f45e-dca4-47f3-8470-42cecb8f31b8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 123r" + ] + }, + "height": 2108, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_247", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_247", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_247", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000247_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000247_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c643c41a-fc53-49bf-9792-1c2c2c6dcbbc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 123v" + ] + }, + "height": 2085, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_248", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_248", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_248", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000248_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000248_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b06f9f48-e364-48fc-bc64-1a6f525c1b45" + } + ] + }, + { + "label": { + "@none": [ + "fol. 124r" + ] + }, + "height": 2121, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_249", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_249", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_249", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2121, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000249_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000249_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/357af3ca-1b9d-4eb5-b50b-1d698944c92e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 124v" + ] + }, + "height": 2067, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_250", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_250", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_250", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000250_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000250_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54d96fca-9796-4594-b673-68ea5b919868" + } + ] + }, + { + "label": { + "@none": [ + "fol. 125r" + ] + }, + "height": 2106, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_251", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_251", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_251", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000251_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000251_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5cb8e71-9743-4ed3-81f7-42aed24ede60" + } + ] + }, + { + "label": { + "@none": [ + "fol. 125v" + ] + }, + "height": 2088, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_252", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_252", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_252", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000252_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000252_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c695ce62-b1ec-407a-95e2-e122bcfdea70" + } + ] + }, + { + "label": { + "@none": [ + "fol. 126r" + ] + }, + "height": 2085, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_253", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_253", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_253", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000253_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000253_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a5506b7-474d-4cc9-aa0c-4d1d464f5857" + } + ] + }, + { + "label": { + "@none": [ + "fol. 126v" + ] + }, + "height": 2071, + "width": 1359, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_254", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_254", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_254", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1359, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000254_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000254_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75e15d99-9430-4f53-ace1-4de62111c9b4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 127r" + ] + }, + "height": 2064, + "width": 1313, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_255", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_255", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_255", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1313, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000255_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000255_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cfb24772-f132-431e-9be3-6cb7a0dcfcf0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 127v" + ] + }, + "height": 2097, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_256", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_256", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_256", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2097, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000256_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000256_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70166c4f-4137-432b-b5a0-654fa30ece19" + } + ] + }, + { + "label": { + "@none": [ + "fol. 128r" + ] + }, + "height": 2105, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_257", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_257", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_257", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000257_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000257_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/efac2479-3a8a-407c-8906-81b7e6d684ff" + } + ] + }, + { + "label": { + "@none": [ + "fol. 128v" + ] + }, + "height": 2095, + "width": 1362, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_258", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_258", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_258", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1362, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000258_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000258_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93d653ca-c6d5-44eb-9838-ec31c5479699" + } + ] + }, + { + "label": { + "@none": [ + "fol. 129r" + ] + }, + "height": 2062, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_259", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_259", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_259", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000259_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000259_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0682df1-7d2d-4732-b7af-4d7552fe6198" + } + ] + }, + { + "label": { + "@none": [ + "fol. 129v" + ] + }, + "height": 2081, + "width": 1346, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_260", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_260", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_260", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1346, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000260_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000260_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/abf5e971-598a-46de-aaf3-c7ceb1c92046" + } + ] + }, + { + "label": { + "@none": [ + "fol. 130r" + ] + }, + "height": 2105, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_261", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_261", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_261", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000261_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000261_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6360a05d-b502-41fe-bc10-168b809ce9bb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 130v" + ] + }, + "height": 2090, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_262", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_262", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_262", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000262_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000262_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe1e25f9-63c2-4ceb-bfef-804af8167aa1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 131r" + ] + }, + "height": 2058, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_263", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_263", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_263", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000263_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000263_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7fc322a6-327d-4ac5-938d-3bb3016df6ba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 131v" + ] + }, + "height": 2079, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_264", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_264", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_264", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2079, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000264_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000264_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ad1851b-a6b9-4c6d-a837-cb5f013df669" + } + ] + }, + { + "label": { + "@none": [ + "fol. 132r" + ] + }, + "height": 2101, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_265", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_265", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_265", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000265_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000265_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/78d06702-4738-4f56-afff-72db46dd7ea4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 132v" + ] + }, + "height": 2080, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_266", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_266", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_266", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000266_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000266_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/370b3ac1-4334-4bd8-a51c-4f3b1e8c3d4f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 133r" + ] + }, + "height": 2100, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_267", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_267", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_267", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000267_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000267_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7944ec2a-6f35-4573-a77e-59361d593a3d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 133v" + ] + }, + "height": 2067, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_268", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_268", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_268", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000268_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000268_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7cbd737-e802-405a-b0ac-d484e61f438d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 134r" + ] + }, + "height": 2103, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_269", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_269", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_269", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000269_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000269_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65152c4d-c4c2-4a40-9d44-c770efcbbf87" + } + ] + }, + { + "label": { + "@none": [ + "fol. 134v" + ] + }, + "height": 2074, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_270", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_270", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_270", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000270_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000270_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9137b33-a9c3-47d6-a168-c4d8e1f3ca70" + } + ] + }, + { + "label": { + "@none": [ + "fol. 135r" + ] + }, + "height": 2097, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_271", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_271", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_271", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2097, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000271_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000271_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/626157ac-d3a3-4d05-b42e-50ede15c8e09" + } + ] + }, + { + "label": { + "@none": [ + "fol. 135v" + ] + }, + "height": 2082, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_272", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_272", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_272", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000272_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000272_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f9833dd-01ac-4081-a810-fab156fcf88e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 136r" + ] + }, + "height": 2116, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_273", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_273", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_273", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000273_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000273_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f072fc6-00df-4164-9e5b-0c964bec7bd4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 136v" + ] + }, + "height": 2080, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_274", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_274", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_274", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000274_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000274_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f12e7eb-d42e-4cd7-91ad-f93f2b568578" + } + ] + }, + { + "label": { + "@none": [ + "fol. 137r" + ] + }, + "height": 2111, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_275", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_275", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_275", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000275_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000275_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/308a6a4d-27e1-4a61-8899-ac6f37db629d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 137v" + ] + }, + "height": 2075, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_276", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_276", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_276", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000276_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000276_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3dd92b80-509d-4f8f-b853-92224b43139e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 138r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_277", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_277", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_277", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000277_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000277_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef4ea391-ee99-4e29-b8e3-f176fda45014" + } + ] + }, + { + "label": { + "@none": [ + "fol. 138v" + ] + }, + "height": 2075, + "width": 1346, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_278", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_278", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_278", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1346, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000278_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000278_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87e10a89-b594-4cfc-876f-b28723886a49" + } + ] + }, + { + "label": { + "@none": [ + "fol. 139r" + ] + }, + "height": 2112, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_279", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_279", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_279", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2112, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000279_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000279_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f8dc148a-69f3-472e-8272-0a36d59441f9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 139v" + ] + }, + "height": 2075, + "width": 1317, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_280", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_280", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_280", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1317, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000280_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000280_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b17f33a9-f9da-4217-8f80-70eb6a323ca5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 140r" + ] + }, + "height": 2111, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_281", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_281", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_281", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000281_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000281_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59af3123-0c7d-4371-b91a-efa6486d7b3a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 140v" + ] + }, + "height": 2095, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_282", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_282", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_282", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000282_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000282_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e4b5566-6468-479d-b039-3a127ac1ec67" + } + ] + }, + { + "label": { + "@none": [ + "fol. 141r" + ] + }, + "height": 2069, + "width": 1319, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_283", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_283", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_283", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1319, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000283_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000283_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/654c937a-a04f-4cbb-bb2a-a91efc6741a8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 141v" + ] + }, + "height": 2069, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_284", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_284", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_284", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000284_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000284_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea4a75ce-eba9-4fc7-81e7-80a00d28a998" + } + ] + }, + { + "label": { + "@none": [ + "fol. 142r" + ] + }, + "height": 2098, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_285", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_285", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_285", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000285_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000285_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6215a8d4-d149-46ca-9143-90a50141ce46" + } + ] + }, + { + "label": { + "@none": [ + "fol. 142v" + ] + }, + "height": 2082, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_286", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_286", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_286", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000286_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000286_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/341a52a8-74b9-48d1-9e70-12bf48582e2b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 143r" + ] + }, + "height": 2083, + "width": 1313, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_287", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_287", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_287", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2083, + "width": 1313, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000287_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000287_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37be9f45-782c-473c-83a7-f6ac7e966dfb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 143v" + ] + }, + "height": 2087, + "width": 1334, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_288", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_288", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_288", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2087, + "width": 1334, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000288_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000288_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7445a1a3-f531-464a-866b-c6f3ac19e824" + } + ] + }, + { + "label": { + "@none": [ + "fol. 144r" + ] + }, + "height": 2105, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_289", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_289", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_289", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000289_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000289_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a84619b-7632-4bf3-ab63-ea374efc2916" + } + ] + }, + { + "label": { + "@none": [ + "fol. 144v" + ] + }, + "height": 2080, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_290", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_290", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_290", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000290_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000290_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62f5bc85-eafe-4d48-8a89-a32bc2ece298" + } + ] + }, + { + "label": { + "@none": [ + "fol. 145r" + ] + }, + "height": 2116, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_291", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_291", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_291", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000291_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000291_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/71cc5c3a-561f-4dc0-abbd-98490fd55a15" + } + ] + }, + { + "label": { + "@none": [ + "fol. 145v" + ] + }, + "height": 2093, + "width": 1344, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_292", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_292", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_292", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1344, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000292_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000292_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ab24406-9b0c-495b-be79-646b4a314e25" + } + ] + }, + { + "label": { + "@none": [ + "fol. 146r" + ] + }, + "height": 2080, + "width": 1354, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_293", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_293", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_293", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1354, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000293_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000293_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94d10ce5-aca0-4fb5-a1db-ccf30d07c7d8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 146v" + ] + }, + "height": 2093, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_294", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_294", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_294", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000294_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000294_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/883d3050-2ede-4c9c-ae63-9f803a3e4507" + } + ] + }, + { + "label": { + "@none": [ + "fol. 147r" + ] + }, + "height": 2093, + "width": 1312, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_295", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_295", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_295", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1312, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000295_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000295_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2d0de1a-4be8-4dd1-a89a-b4f97cadc2ed" + } + ] + }, + { + "label": { + "@none": [ + "fol. 147v" + ] + }, + "height": 2088, + "width": 1333, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_296", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_296", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_296", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 1333, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000296_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000296_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a89bb7e6-c80c-4380-be0a-6eda1f88fa68" + } + ] + }, + { + "label": { + "@none": [ + "fol. 148r" + ] + }, + "height": 2093, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_297", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_297", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_297", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000297_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000297_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f047f9cb-5e18-4e72-9320-be794054fa07" + } + ] + }, + { + "label": { + "@none": [ + "fol. 148v" + ] + }, + "height": 2081, + "width": 1365, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_298", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_298", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_298", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1365, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000298_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000298_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/595f7dd8-c27e-4dfd-8915-23975c9d93b8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 149r" + ] + }, + "height": 2048, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_299", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_299", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_299", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000299_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000299_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b7d34a2-c4e9-4523-a9b8-da326ac294c6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 149v" + ] + }, + "height": 2065, + "width": 1318, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_300", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_300", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_300", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2065, + "width": 1318, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000300_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000300_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17d4b503-261e-4fbd-a385-4193ccb37f8e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 150r" + ] + }, + "height": 2064, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_301", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_301", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_301", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000301_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000301_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff0912fc-c973-4bcf-8fdd-0cd6cace80c1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 150v" + ] + }, + "height": 2061, + "width": 1331, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_302", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_302", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_302", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1331, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000302_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000302_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e1e1b910-6ca3-4ed6-8850-74df09b08fb0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 151r" + ] + }, + "height": 2090, + "width": 1366, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_303", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_303", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_303", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1366, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000303_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000303_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82678f2b-84bd-47b4-a7f0-48318c0dbfe2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 151v" + ] + }, + "height": 2086, + "width": 1336, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_304", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_304", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_304", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2086, + "width": 1336, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000304_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000304_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/283fbd60-5b95-45c4-9c4b-e0d46dcf0c02" + } + ] + }, + { + "label": { + "@none": [ + "fol. 152r" + ] + }, + "height": 2111, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_305", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_305", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_305", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000305_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000305_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/154f6ecc-3d85-491b-8650-ddb64521503e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 152v" + ] + }, + "height": 2068, + "width": 1315, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_306", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_306", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_306", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2068, + "width": 1315, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000306_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000306_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9df1eb5-171b-4cca-a012-5ee52dc18f85" + } + ] + }, + { + "label": { + "@none": [ + "fol. 153r" + ] + }, + "height": 2100, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_307", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_307", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_307", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000307_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000307_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/30f5b4a8-99bb-413d-b3f8-99cbd06fecae" + } + ] + }, + { + "label": { + "@none": [ + "fol. 153v" + ] + }, + "height": 2066, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_308", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_308", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_308", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000308_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000308_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31c5a353-579c-4aa3-8acc-87eca52f2214" + } + ] + }, + { + "label": { + "@none": [ + "fol. 154r" + ] + }, + "height": 2095, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_309", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_309", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_309", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000309_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000309_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dbaf2d25-8774-494e-ab67-208034fdb3e0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 154v" + ] + }, + "height": 2074, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_310", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_310", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_310", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000310_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000310_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c65cb452-1998-4e8d-b6ba-39dbd2a2feba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 155r" + ] + }, + "height": 2111, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_311", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_311", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_311", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000311_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000311_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22e188d8-9511-4c4a-85a0-515453cb3ce7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 155v" + ] + }, + "height": 2069, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_312", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_312", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_312", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000312_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000312_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d90ae4de-0842-4052-bd79-b8c2a006606f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 156r" + ] + }, + "height": 2098, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_313", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_313", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_313", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000313_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000313_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d35ec94d-8c6c-47df-8731-0c2959654f0d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 156v" + ] + }, + "height": 2069, + "width": 1316, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_314", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_314", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_314", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000314_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000314_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44d8fc1e-d536-4d53-9675-b7808073a5f4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 157r" + ] + }, + "height": 2103, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_315", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_315", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_315", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000315_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000315_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/694b6713-457c-4e6f-8d72-55622f5afb5d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 157v" + ] + }, + "height": 2077, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_316", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_316", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_316", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000316_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000316_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83cb81bc-28ed-42fd-bf71-8cad2f39192e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 158r" + ] + }, + "height": 2101, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_317", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_317", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_317", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000317_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000317_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15144d00-41cb-49a6-8375-3df0a4ef2e22" + } + ] + }, + { + "label": { + "@none": [ + "fol. 158v" + ] + }, + "height": 2074, + "width": 1316, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_318", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_318", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_318", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000318_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000318_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23c5313e-1154-4904-996f-624c24be6507" + } + ] + }, + { + "label": { + "@none": [ + "fol. 159r" + ] + }, + "height": 2103, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_319", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_319", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_319", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000319_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000319_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb57804d-e10f-4e3a-bfad-740db3b4f125" + } + ] + }, + { + "label": { + "@none": [ + "fol. 159v" + ] + }, + "height": 2080, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_320", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_320", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_320", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000320_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000320_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c191b46c-cd38-429a-bdee-6ee070f410f5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 160r" + ] + }, + "height": 2111, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_321", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_321", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_321", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000321_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000321_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b523d425-a64b-4fb7-8351-c53d4e7bc5d1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 160v" + ] + }, + "height": 2085, + "width": 1312, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_322", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_322", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_322", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1312, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000322_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000322_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6765a7d5-eb69-4b48-b486-82252fe01b7d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 161r" + ] + }, + "height": 2072, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_323", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_323", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_323", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000323_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000323_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8dc2c756-56a3-42e6-bcab-60691425ba3e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 161v" + ] + }, + "height": 2075, + "width": 1314, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_324", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_324", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_324", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1314, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000324_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000324_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bcf34bf-c16f-4b6a-b751-95948cfda6a4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 162r" + ] + }, + "height": 2064, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_325", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_325", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_325", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000325_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000325_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/da1da2cc-edd9-4bd6-b77e-083270f9c8e3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 162v" + ] + }, + "height": 2069, + "width": 1304, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_326", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_326", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_326", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000326_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000326_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd3a48bd-2335-4d40-980e-820c373ecbb7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 163r" + ] + }, + "height": 2087, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_327", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_327", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_327", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2087, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000327_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000327_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/957319fe-a0e4-4814-8df8-9f0bd41ebc21" + } + ] + }, + { + "label": { + "@none": [ + "fol. 163v" + ] + }, + "height": 2066, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_328", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_328", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_328", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000328_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000328_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf38286e-b70a-47a0-9276-4f16310e82e6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 164r" + ] + }, + "height": 2103, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_329", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_329", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_329", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000329_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000329_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/262be52a-100c-4fad-8c42-9958f74a61d6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 164v" + ] + }, + "height": 2072, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_330", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_330", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_330", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000330_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000330_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68328c7c-d17c-4c73-b0d4-a20232bcb1a5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 165r" + ] + }, + "height": 2103, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_331", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_331", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_331", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000331_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000331_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f80b3294-1bea-4982-927b-6d8986b33b43" + } + ] + }, + { + "label": { + "@none": [ + "fol. 165v" + ] + }, + "height": 2072, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_332", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_332", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_332", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000332_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000332_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82079b33-a3f8-4311-a11c-90cd49f37486" + } + ] + }, + { + "label": { + "@none": [ + "fol. 166r" + ] + }, + "height": 2066, + "width": 1317, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_333", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_333", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_333", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1317, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000333_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000333_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/864d8e32-cca3-4b37-a9ba-a4920b88a586" + } + ] + }, + { + "label": { + "@none": [ + "fol. 166v" + ] + }, + "height": 2069, + "width": 1319, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_334", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_334", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_334", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1319, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000334_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000334_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0495e6ba-4996-47a1-8c2b-2c681bbc609d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 167r" + ] + }, + "height": 2096, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_335", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_335", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_335", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2096, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000335_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000335_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edf35f96-8c29-4f8e-b501-94a1a022ff92" + } + ] + }, + { + "label": { + "@none": [ + "fol. 167v" + ] + }, + "height": 2077, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_336", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_336", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_336", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000336_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000336_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fadbf231-bf34-46bb-8395-6489babb3952" + } + ] + }, + { + "label": { + "@none": [ + "fol. 168r" + ] + }, + "height": 2103, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_337", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_337", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_337", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000337_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000337_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd302527-e670-4d6f-ae13-9d33b4c1ea0b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 168v" + ] + }, + "height": 2072, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_338", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_338", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_338", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000338_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000338_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87c217f1-8c08-4297-9442-008aee2bb525" + } + ] + }, + { + "label": { + "@none": [ + "fol. 169r" + ] + }, + "height": 2101, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_339", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_339", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_339", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000339_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000339_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/777083d5-0e25-4c32-be73-690b7ee1c4f6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 169v" + ] + }, + "height": 2082, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_340", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_340", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_340", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000340_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000340_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ca2ef16-c72a-48e2-8ea2-a1538a1bbb75" + } + ] + }, + { + "label": { + "@none": [ + "fol. 170r" + ] + }, + "height": 2090, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_341", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_341", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_341", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000341_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000341_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61e76ddb-6268-4144-950f-cfdeaa4649c0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 170v" + ] + }, + "height": 2056, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_342", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_342", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_342", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000342_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000342_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b46f9a7-2bf4-4e76-be0a-f12873a31392" + } + ] + }, + { + "label": { + "@none": [ + "fol. 171r" + ] + }, + "height": 2095, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_343", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_343", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_343", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000343_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000343_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96f2b05f-2f21-4d02-8f46-79c8e3961249" + } + ] + }, + { + "label": { + "@none": [ + "fol. 171v" + ] + }, + "height": 2072, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_344", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_344", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_344", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000344_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000344_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52e98cb6-5dfe-4bb3-a639-65762b5929cd" + } + ] + }, + { + "label": { + "@none": [ + "fol. 172r" + ] + }, + "height": 2103, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_345", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_345", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_345", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000345_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000345_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1aca67ab-813b-4617-b9fb-92acc3a1e5f3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 172v" + ] + }, + "height": 2077, + "width": 1311, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_346", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_346", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_346", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1311, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000346_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000346_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/afaa5a08-3371-43c7-9dcd-fd5f6714fea4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 173r" + ] + }, + "height": 2106, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_347", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_347", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_347", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000347_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000347_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1631c977-ff02-4526-b364-ba4c0774f197" + } + ] + }, + { + "label": { + "@none": [ + "fol. 173v" + ] + }, + "height": 2076, + "width": 1298, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_348", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_348", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_348", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2076, + "width": 1298, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000348_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000348_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ee92d03-1aa0-4faf-a44d-4e357bb076aa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 174r" + ] + }, + "height": 2103, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_349", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_349", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_349", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000349_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000349_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1dfd886c-052f-4c1e-891a-4ffb3bcc613e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 174v" + ] + }, + "height": 2081, + "width": 1326, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_350", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_350", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_350", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1326, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000350_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000350_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92f275c1-43c5-4037-a12e-3954a30ad634" + } + ] + }, + { + "label": { + "@none": [ + "fol. 175r" + ] + }, + "height": 2095, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_351", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_351", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_351", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000351_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000351_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/695bf292-b531-4f4f-a7a0-1ec7deca8175" + } + ] + }, + { + "label": { + "@none": [ + "fol. 175v" + ] + }, + "height": 2059, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_352", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_352", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_352", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000352_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000352_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f4fbe21-3114-45c5-ac12-d61084b2eef3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 176r" + ] + }, + "height": 2105, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_353", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_353", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_353", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000353_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000353_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40612596-3ce6-4260-a36f-db54c276d53f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 176v" + ] + }, + "height": 2073, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_354", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_354", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_354", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2073, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000354_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000354_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7cd7b812-2b53-43e1-8384-069989502f0d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 177r" + ] + }, + "height": 2056, + "width": 1352, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_355", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_355", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_355", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000355_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000355_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/055cf8d3-2d7d-446c-bfa4-a337640bce41" + } + ] + }, + { + "label": { + "@none": [ + "fol. 177v" + ] + }, + "height": 2092, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_356", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_356", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_356", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2092, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000356_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000356_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7b6f5fb-3d07-4f0f-b58d-d45420cf2841" + } + ] + }, + { + "label": { + "@none": [ + "fol. 178r" + ] + }, + "height": 2106, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_357", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_357", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_357", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000357_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000357_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b9c8cb9-11e4-4e1c-af32-1e6bdbf45278" + } + ] + }, + { + "label": { + "@none": [ + "fol. 178v" + ] + }, + "height": 2072, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_358", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_358", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_358", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000358_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000358_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10fd6a90-63bc-4465-b43a-539f236f3c16" + } + ] + }, + { + "label": { + "@none": [ + "fol. 179r" + ] + }, + "height": 2052, + "width": 1352, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_359", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_359", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_359", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2052, + "width": 1352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000359_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000359_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b3e088d-8f62-4b3e-a6c9-9791b423aa43" + } + ] + }, + { + "label": { + "@none": [ + "fol. 179v" + ] + }, + "height": 2102, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_360", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_360", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_360", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2102, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000360_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000360_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e8c4b9d4-546b-43f2-bdea-3db78123d426" + } + ] + }, + { + "label": { + "@none": [ + "fol. 180r" + ] + }, + "height": 2085, + "width": 1342, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_361", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_361", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_361", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1342, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000361_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000361_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11810f0d-9064-4661-b83a-eb9033e85925" + } + ] + }, + { + "label": { + "@none": [ + "fol. 180v" + ] + }, + "height": 2093, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_362", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_362", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_362", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000362_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000362_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/533216c0-a833-4770-9818-18fc432793e8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 181r" + ] + }, + "height": 2100, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_363", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_363", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_363", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000363_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000363_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b35e9b64-9f90-4ff7-99d8-19554fc99a00" + } + ] + }, + { + "label": { + "@none": [ + "fol. 181v" + ] + }, + "height": 2106, + "width": 1346, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_364", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_364", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_364", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1346, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000364_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000364_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6975d83f-672e-4475-8fd2-5d331a809051" + } + ] + }, + { + "label": { + "@none": [ + "fol. 182r" + ] + }, + "height": 2093, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_365", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_365", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_365", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000365_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000365_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65397402-c38c-44f3-9773-a6523b6ba3cf" + } + ] + }, + { + "label": { + "@none": [ + "fol. 182v" + ] + }, + "height": 2077, + "width": 1342, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_366", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_366", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_366", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1342, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000366_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000366_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ff5dcd7-b8b2-4034-99ef-debbec601dec" + } + ] + }, + { + "label": { + "@none": [ + "fol. 183r" + ] + }, + "height": 2103, + "width": 1355, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_367", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_367", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_367", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000367_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000367_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f02833aa-d1e5-4cd9-956d-3c3d8030ca00" + } + ] + }, + { + "label": { + "@none": [ + "fol. 183v" + ] + }, + "height": 2081, + "width": 1376, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_368", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_368", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_368", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000368_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000368_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05b37b95-33bb-4192-ba31-24f2c2b520a0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 184r" + ] + }, + "height": 2103, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_369", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_369", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_369", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000369_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000369_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/56720321-c6cb-4c82-be1b-5f00951bc26b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 184v" + ] + }, + "height": 2059, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_370", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_370", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_370", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000370_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000370_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/445a0a11-6763-4b73-8da5-a0f7f225d6f5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 185r" + ] + }, + "height": 2113, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_371", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_371", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_371", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000371_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000371_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/447d046f-fb6f-46d7-955e-aaa76f5f6c40" + } + ] + }, + { + "label": { + "@none": [ + "fol. 185v" + ] + }, + "height": 2056, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_372", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_372", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_372", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000372_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000372_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4aa136b6-893b-4fe8-8f8d-a46c449d50c6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 186r" + ] + }, + "height": 2108, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_373", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_373", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_373", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000373_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000373_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/20ecf0ed-4bb4-4dfd-8bec-61dd35c8b264" + } + ] + }, + { + "label": { + "@none": [ + "fol. 186v" + ] + }, + "height": 2059, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_374", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_374", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_374", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000374_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000374_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f333e01-5b59-4bd2-bc51-fa7f1dd81dbf" + } + ] + }, + { + "label": { + "@none": [ + "fol. 187r" + ] + }, + "height": 2108, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_375", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_375", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_375", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000375_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000375_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3030ebe8-19e4-4e99-a8b9-4acaae627aed" + } + ] + }, + { + "label": { + "@none": [ + "fol. 187v" + ] + }, + "height": 2072, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_376", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_376", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_376", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000376_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000376_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11747962-88ef-4902-a225-57526e969705" + } + ] + }, + { + "label": { + "@none": [ + "fol. 188r" + ] + }, + "height": 2093, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_377", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_377", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_377", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000377_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000377_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4310b4b9-f8ec-4825-9a6f-9b49fc056b7d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 188v" + ] + }, + "height": 2073, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_378", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_378", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_378", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2073, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000378_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000378_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7a7b2dbd-cf6c-4272-af4f-06f76475d2a0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 189r" + ] + }, + "height": 2111, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_379", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_379", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_379", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000379_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000379_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e963e1d-156f-46e7-91d6-86df67e81159" + } + ] + }, + { + "label": { + "@none": [ + "fol. 189v" + ] + }, + "height": 2061, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_380", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_380", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_380", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000380_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000380_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0101eddd-46be-475a-914c-f56b88fd12cf" + } + ] + }, + { + "label": { + "@none": [ + "fol. 190r" + ] + }, + "height": 2100, + "width": 1369, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_381", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_381", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_381", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1369, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000381_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000381_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bfa73959-79d2-4e4c-8eec-7f77eadc132b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 190v" + ] + }, + "height": 2072, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_382", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_382", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_382", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000382_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000382_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b239e9ed-baab-494d-9601-784c83dc76e2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 191r" + ] + }, + "height": 2090, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_383", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_383", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_383", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000383_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000383_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b965e5fa-dfde-4820-9818-464715099008" + } + ] + }, + { + "label": { + "@none": [ + "fol. 191v" + ] + }, + "height": 2082, + "width": 1376, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_384", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_384", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_384", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000384_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000384_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b34cadaf-daaf-4de3-af5b-ca1e000e71f8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 192r" + ] + }, + "height": 2097, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_385", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_385", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_385", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2097, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000385_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000385_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/354b6223-ee29-4774-bfcc-561c4a017fa6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 192v" + ] + }, + "height": 2075, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_386", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_386", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_386", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000386_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000386_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b66f3f95-53f7-40c9-bc0a-7385595b43fd" + } + ] + }, + { + "label": { + "@none": [ + "fol. 193r" + ] + }, + "height": 2103, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_387", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_387", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_387", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000387_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000387_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93baed3a-5465-4a2c-9059-5c8769266077" + } + ] + }, + { + "label": { + "@none": [ + "fol. 193v" + ] + }, + "height": 2085, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_388", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_388", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_388", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000388_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000388_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/910a811d-0917-41c4-a89f-358f8fcf6153" + } + ] + }, + { + "label": { + "@none": [ + "fol. 194r" + ] + }, + "height": 2098, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_389", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_389", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_389", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000389_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000389_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fb99812-2341-46d5-8657-11d1a42f10b2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 194v" + ] + }, + "height": 2072, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_390", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_390", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_390", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000390_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000390_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8efc2725-ab09-406e-b0e4-7b89f91d9470" + } + ] + }, + { + "label": { + "@none": [ + "fol. 195r" + ] + }, + "height": 2103, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_391", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_391", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_391", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000391_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000391_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2cb02ea9-de08-42c1-ab8d-a7db46e3d806" + } + ] + }, + { + "label": { + "@none": [ + "fol. 195v" + ] + }, + "height": 2069, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_392", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_392", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_392", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000392_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000392_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4b08ae8-2112-4eee-ad56-f5c7b516a121" + } + ] + }, + { + "label": { + "@none": [ + "fol. 196r" + ] + }, + "height": 2111, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_393", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_393", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_393", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000393_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000393_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bbd643c2-5f6e-4e65-87a4-1e92f0d74fc8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 196v" + ] + }, + "height": 2069, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_394", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_394", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_394", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000394_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000394_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/49f41074-d792-49a3-9c8e-d8686aaf1819" + } + ] + }, + { + "label": { + "@none": [ + "fol. 197r" + ] + }, + "height": 2048, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_395", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_395", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_395", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000395_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000395_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b222076-3f49-4b4c-8788-3042bab0c355" + } + ] + }, + { + "label": { + "@none": [ + "fol. 197v" + ] + }, + "height": 2103, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_396", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_396", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_396", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000396_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000396_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e096968-2a5a-4da3-81da-93f7e2af0d25" + } + ] + }, + { + "label": { + "@none": [ + "fol. 198r" + ] + }, + "height": 2062, + "width": 1392, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_397", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_397", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_397", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1392, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000397_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000397_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f56fae5-92d6-4ea6-904e-23b6956a76f4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 198v" + ] + }, + "height": 2101, + "width": 1384, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_398", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_398", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_398", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1384, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000398_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000398_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebaf7af3-22bb-42fe-8584-89fe314a5dce" + } + ] + }, + { + "label": { + "@none": [ + "fol. 199r" + ] + }, + "height": 2066, + "width": 1384, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_399", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_399", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_399", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1384, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000399_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000399_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37c2ae44-c020-4a69-9ee5-3a8ee16cc656" + } + ] + }, + { + "label": { + "@none": [ + "fol. 199v" + ] + }, + "height": 2090, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_400", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_400", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_400", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000400_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000400_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa6e27bd-b5dc-48d7-a1a4-dc8e0f9685b6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 200r" + ] + }, + "height": 2053, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_401", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_401", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_401", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2053, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000401_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000401_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91e2c83d-1272-44ef-a5e9-7717d5106a75" + } + ] + }, + { + "label": { + "@none": [ + "fol. 200v" + ] + }, + "height": 2114, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_402", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_402", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_402", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2114, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000402_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000402_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ad244b8-fbdc-498b-bdae-bea1f0702173" + } + ] + }, + { + "label": { + "@none": [ + "fol. 201r" + ] + }, + "height": 2072, + "width": 1372, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_403", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_403", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_403", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000403_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000403_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5a6ebb8-70a4-4e2d-85cc-576835855fc3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 201v" + ] + }, + "height": 2124, + "width": 1384, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_404", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_404", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_404", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2124, + "width": 1384, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000404_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000404_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80802953-ea54-4bcf-b5ad-bfda9244c437" + } + ] + }, + { + "label": { + "@none": [ + "fol. 202r" + ] + }, + "height": 2059, + "width": 1379, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_405", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_405", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_405", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1379, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000405_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000405_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65f185b3-9a89-4542-8b8f-e69c1aa12f5b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 202v" + ] + }, + "height": 2127, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_406", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_406", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_406", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2127, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000406_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000406_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c58e8469-b205-48b6-b50d-3f9c5048654e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 203r" + ] + }, + "height": 2077, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_407", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_407", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_407", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000407_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000407_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8662d92b-1136-42db-9427-5145e4ceff41" + } + ] + }, + { + "label": { + "@none": [ + "fol. 203v" + ] + }, + "height": 2111, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_408", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_408", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_408", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000408_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000408_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ef582d6-ed31-43e6-b0ca-240a389e9a7b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 204r" + ] + }, + "height": 2050, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_409", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_409", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_409", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2050, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000409_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000409_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0c93090-5fef-4951-b326-5c81c3a91d2a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 204v" + ] + }, + "height": 2111, + "width": 1405, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_410", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_410", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_410", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1405, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000410_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000410_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54da32c7-4b48-4906-be6f-682efcd893e3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 205r" + ] + }, + "height": 2068, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_411", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_411", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_411", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2068, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000411_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000411_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/258fcab2-ac01-4838-b6fe-1925193595c4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 205v" + ] + }, + "height": 2116, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_412", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_412", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_412", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000412_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000412_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/794f3599-bd79-48f4-a3ce-6391eb5d97a8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 206r" + ] + }, + "height": 2066, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_413", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_413", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_413", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000413_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000413_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7f2fe3b-4863-4955-8805-4f76f24faf7f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 206v" + ] + }, + "height": 2116, + "width": 1405, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_414", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_414", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_414", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1405, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000414_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000414_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f56ca3ee-a36b-4877-ac50-408b062f2eec" + } + ] + }, + { + "label": { + "@none": [ + "fol. 207r" + ] + }, + "height": 2060, + "width": 1368, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_415", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_415", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_415", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2060, + "width": 1368, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000415_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000415_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7850308f-beee-4058-95ae-87812c5f84ba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 207v" + ] + }, + "height": 2063, + "width": 1414, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_416", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_416", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_416", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2063, + "width": 1414, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000416_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000416_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b02aa9c8-186a-4e91-a9b5-e217ecc887ed" + } + ] + }, + { + "label": { + "@none": [ + "fol. 208r" + ] + }, + "height": 2048, + "width": 1367, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_417", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_417", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_417", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1367, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000417_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000417_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e6820ab5-11f4-45ab-a800-11d4c910ebf9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 208v" + ] + }, + "height": 2089, + "width": 1422, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_418", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_418", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_418", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2089, + "width": 1422, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000418_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000418_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a98a27e-b189-4920-8606-823b53a00a0d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 209r" + ] + }, + "height": 2058, + "width": 1372, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_419", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_419", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_419", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000419_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000419_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a4b086c-6227-43a0-b019-27779cf23ce4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 209v" + ] + }, + "height": 2098, + "width": 1432, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_420", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_420", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_420", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1432, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000420_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000420_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bcad875b-939d-417f-8f7a-e66776a1dd2a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 210r" + ] + }, + "height": 2058, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_421", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_421", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_421", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000421_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000421_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5169118b-df72-4a6b-993d-f6e26729c8f8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 210v" + ] + }, + "height": 2119, + "width": 1415, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_422", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_422", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_422", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2119, + "width": 1415, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000422_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000422_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8ec21bf4-48ea-4552-9ffc-e74f699c5470" + } + ] + }, + { + "label": { + "@none": [ + "fol. 211r" + ] + }, + "height": 2092, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_423", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_423", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_423", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2092, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000423_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000423_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4bf66dfb-d79e-4356-b031-318b9dacbf94" + } + ] + }, + { + "label": { + "@none": [ + "fol. 211v" + ] + }, + "height": 2101, + "width": 1402, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_424", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_424", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_424", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1402, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000424_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000424_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25ccb33f-b12d-4ae0-9fde-6def543ded6d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 212r" + ] + }, + "height": 2103, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_425", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_425", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_425", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000425_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000425_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0b20a49-66bb-4b23-b629-b9e2008fdad0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 212v" + ] + }, + "height": 2064, + "width": 1434, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_426", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_426", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_426", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1434, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000426_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000426_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68c25658-2f49-442b-9d76-6e0307a18a4b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 213r" + ] + }, + "height": 2048, + "width": 1388, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_427", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_427", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_427", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000427_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000427_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80f882b4-279e-4c2e-af56-d435f9c41cef" + } + ] + }, + { + "label": { + "@none": [ + "fol. 213v" + ] + }, + "height": 2071, + "width": 1425, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_428", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_428", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_428", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1425, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000428_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000428_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/679a64a5-ffc0-47de-9a64-1f7afb200c57" + } + ] + }, + { + "label": { + "@none": [ + "fol. 214r" + ] + }, + "height": 2070, + "width": 1447, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_429", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_429", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_429", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2070, + "width": 1447, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000429_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000429_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39527a46-154f-43d5-aede-21b4c04eb2d0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 214v" + ] + }, + "height": 2089, + "width": 1448, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_430", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_430", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_430", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2089, + "width": 1448, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000430_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000430_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/892fa17d-c150-477a-8455-d86a86440bf5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 215r" + ] + }, + "height": 2072, + "width": 1460, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_431", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_431", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_431", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000431_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000431_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18b53953-da90-4e0a-9e1a-8f83c92fec91" + } + ] + }, + { + "label": { + "@none": [ + "fol. 215v" + ] + }, + "height": 2101, + "width": 1408, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_432", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_432", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_432", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1408, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000432_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000432_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93b30978-d3c4-4260-bf84-55a9365ded1b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 216r" + ] + }, + "height": 2079, + "width": 1465, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_433", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_433", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_433", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2079, + "width": 1465, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000433_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000433_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8c06324-e7d7-4bca-9b5c-ddc5ad721d17" + } + ] + }, + { + "label": { + "@none": [ + "fol. 216v" + ] + }, + "height": 2064, + "width": 1442, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_434", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_434", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_434", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000434_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000434_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a8f5a8a-fefb-4083-8bff-41eb539c8142" + } + ] + }, + { + "label": { + "@none": [ + "fol. 217r" + ] + }, + "height": 2059, + "width": 1472, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_435", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_435", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_435", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000435_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000435_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2655cdd4-42f4-4174-b543-7394b147b683" + } + ] + }, + { + "label": { + "@none": [ + "fol. 217v" + ] + }, + "height": 2075, + "width": 1419, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_436", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_436", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_436", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1419, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000436_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000436_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e52fbff5-0800-4f61-a099-5a1d115c1de3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 218r" + ] + }, + "height": 2080, + "width": 1452, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_437", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_437", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_437", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1452, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000437_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000437_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee004a21-7077-468d-9f77-48d928377dfb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 218v" + ] + }, + "height": 2077, + "width": 1455, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_438", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_438", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_438", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1455, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000438_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000438_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a5b42f9-73ed-4318-bc56-534ecfd81eec" + } + ] + }, + { + "label": { + "@none": [ + "fol. 219r" + ] + }, + "height": 2057, + "width": 1442, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_439", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_439", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_439", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2057, + "width": 1442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000439_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000439_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50a4356a-8878-4395-9b73-19eaefd25f47" + } + ] + }, + { + "label": { + "@none": [ + "fol. 219v" + ] + }, + "height": 2077, + "width": 1447, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_440", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_440", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_440", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1447, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000440_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000440_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2eb4a2cf-0185-4706-876a-1a9f376a9605" + } + ] + }, + { + "label": { + "@none": [ + "fol. 220r" + ] + }, + "height": 2062, + "width": 1453, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_441", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_441", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_441", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1453, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000441_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000441_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d39e2fd-421c-4662-845d-ce2a0c5562e1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 220v" + ] + }, + "height": 2085, + "width": 1447, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_442", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_442", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_442", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1447, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000442_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000442_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d05bce6c-5781-4e27-827c-24b64c9a074b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 221r" + ] + }, + "height": 2059, + "width": 1463, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_443", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_443", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_443", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1463, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000443_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000443_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0f777c3-d867-423c-ad04-ebefc25893ca" + } + ] + }, + { + "label": { + "@none": [ + "fol. 221v" + ] + }, + "height": 2116, + "width": 1473, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_444", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_444", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_444", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1473, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000444_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000444_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a4bf39fd-2151-42e5-a246-e75e61e73fc4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 222r" + ] + }, + "height": 2036, + "width": 1429, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_445", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_445", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_445", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2036, + "width": 1429, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000445_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000445_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63de173e-bcd9-423c-929f-76ec2fa6d804" + } + ] + }, + { + "label": { + "@none": [ + "fol. 222v" + ] + }, + "height": 2075, + "width": 1463, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_446", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_446", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_446", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1463, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000446_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000446_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a7b471b1-3d46-4ed4-a232-795b3c790233" + } + ] + }, + { + "label": { + "@none": [ + "fol. 223r" + ] + }, + "height": 2058, + "width": 1470, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_447", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_447", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_447", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1470, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000447_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000447_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98c2ae14-4201-46b7-a4fd-7404e114ff86" + } + ] + }, + { + "label": { + "@none": [ + "fol. 223v" + ] + }, + "height": 2074, + "width": 1488, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_448", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_448", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_448", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1488, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000448_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000448_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b63232ca-b72b-4250-b14e-e75c9572fa52" + } + ] + }, + { + "label": { + "@none": [ + "Back flyleaf i, r" + ] + }, + "height": 2053, + "width": 1507, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_449", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_449", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_449", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2053, + "width": 1507, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000449_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000449_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a462a03-d210-470e-9a9d-65a209375143" + } + ] + }, + { + "label": { + "@none": [ + "Back flyleaf i, v" + ] + }, + "height": 2082, + "width": 1494, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_450", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_450", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_450", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1494, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000450_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000450_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e8ed414-bb0c-494b-a272-6ae9ec4fb094" + } + ] + }, + { + "label": { + "@none": [ + "Back flyleaf ii, r" + ] + }, + "height": 2048, + "width": 1520, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_451", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_451", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_451", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1520, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000451_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000451_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d7a07cb6-b3d4-4bf5-af16-35152a039aab" + } + ] + }, + { + "label": { + "@none": [ + "Back flyleaf ii, v" + ] + }, + "height": 2106, + "width": 1491, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_452", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_452", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_452", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1491, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000452_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000452_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88a4dad8-d5a2-4649-8907-d9d40f143fab" + } + ] + }, + { + "label": { + "@none": [ + "Lower board inside" + ] + }, + "height": 2271, + "width": 2162, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_453", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_453", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_453", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2271, + "width": 2162, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000453_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000453_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7acb4529-e498-4870-b525-99a551a1853f" + } + ] + }, + { + "label": { + "@none": [ + "Lower board outside" + ] + }, + "height": 2256, + "width": 2212, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_454", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_454", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_454", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2256, + "width": 2212, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000454_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000454_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1809ceae-e930-4a30-86a0-61bae2102f8d" + } + ] + }, + { + "label": { + "@none": [ + "Spine" + ] + }, + "height": 2597, + "width": 1062, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_455", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_455", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_455", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2597, + "width": 1062, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000455_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000455_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab5bfdec-68ca-4a26-adb1-e7f8adb71f98" + } + ] + }, + { + "label": { + "@none": [ + "Fore-edge" + ] + }, + "height": 2553, + "width": 971, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_456", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_456", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_456", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2553, + "width": 971, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000456_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000456_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99db4bef-406c-4f20-baed-40394a41f6be" + } + ] + }, + { + "label": { + "@none": [ + "Head" + ] + }, + "height": 1012, + "width": 2388, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_457", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_457", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_457", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 1012, + "width": 2388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000457_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000457_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b7949157-a2eb-498d-9837-db311f8c00f3" + } + ] + }, + { + "label": { + "@none": [ + "Tail" + ] + }, + "height": 1044, + "width": 2433, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_458", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_458", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_458", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 1044, + "width": 2433, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000458_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000458_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67866021-74cb-4728-b118-eaa6c9935277" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_www_e_codices_unifr_ch_metadata_iiif_csg_0730_manifest": { + "label": { + "@none": [ + "St. Gallen, Stiftsbibliothek, Cod. Sang. 730" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "St. Gallen" + ] + } + }, + { + "label": { + "@none": [ + "Collection Name" + ] + }, + "value": { + "@none": [ + "Stiftsbibliothek" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "Cod. Sang. 730" + ] + } + }, + { + "label": { + "@none": [ + "Document Type" + ] + }, + "value": { + "@none": [ + "Manuscript" + ] + } + }, + { + "label": { + "@none": [ + "DOI" + ] + }, + "value": { + "@none": [ + "10.5076/e-codices-csg-0730" + ] + } + }, + { + "label": { + "@none": [ + "Title (English)" + ] + }, + "value": { + "@none": [ + "Edictum Rothari (Veterum Fragmentorum Tomus III)" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "Parchment" + ] + } + }, + { + "label": { + "@none": [ + "Place of Origin (English)" + ] + }, + "value": { + "@none": [ + "Bobbio (?)" + ] + } + }, + { + "label": { + "@none": [ + "Date of Origin (English)" + ] + }, + "value": { + "@none": [ + "670/680" + ] + } + }, + { + "label": { + "@none": [ + "Number of Pages" + ] + }, + "value": { + "@none": [ + "88" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "20.5 x 14 cm" + ] + } + }, + { + "label": { + "@none": [ + "Online Since" + ] + }, + "value": { + "@none": [ + "2009-07-31" + ] + } + }, + { + "label": { + "@none": [ + "Summary (English)" + ] + }, + "value": { + "@none": [ + "The incompletely preserved Edictum Rothari is the oldest extant copy of the early medieval law of the Lombards as decreed by King Rothari (636-652) in 643. This earliest known copy, dating from 670/680 and originating in Bobbio (?) has been preserved only as fragments divided between the Abbey Library of St. Gall, the Badische Landesbibliothek Karlsruhe, the Zentralbibliothek in Zurich and the Zurich cantonal archives. The largest portion of the fragments, which were bound together in the present volume by Abbey Librarian Ildefons von Arx in 1822, is found at the Abbey Library of St. Gall. In 1972, the fragmental parchment leaves of the Edictum Rothari owned by the Abbey Library of St. Gall were rebound into a new volume, in a fashion that does not exactly follow conservational guidelines, together with black and white photos of the fragments that are in Karlsruhe and Zurich. The photos were then removed from this by restorer Martin Strebel in 2008. At the same time, this manuscript, which is significant to the history of law, was rebound using the latest book restoration techniques, thanks to the Friends of the Abbey Library of St. Gall, which covered the costs of the work." + ] + } + }, + { + "label": { + "@none": [ + "Persons" + ] + }, + "value": { + "@none": [ + "Librarian: Arx, Ildefons von; Author: Rothari, Langobardenreich, König" + ] + } + }, + { + "label": { + "@none": [ + "Century" + ] + }, + "value": { + "@none": [ + "7th century" + ] + } + }, + { + "label": { + "@none": [ + "Text Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "en": [ + "The incompletely preserved Edictum Rothari is the oldest extant copy of the early medieval law of the Lombards as decreed by King Rothari (636-652) in 643. This earliest known copy, dating from 670/680 and originating in Bobbio (?) has been preserved only as fragments divided between the Abbey Library of St. Gall, the Badische Landesbibliothek Karlsruhe, the Zentralbibliothek in Zurich and the Zurich cantonal archives. The largest portion of the fragments, which were bound together in the present volume by Abbey Librarian Ildefons von Arx in 1822, is found at the Abbey Library of St. Gall. In 1972, the fragmental parchment leaves of the Edictum Rothari owned by the Abbey Library of St. Gall were rebound into a new volume, in a fashion that does not exactly follow conservational guidelines, together with black and white photos of the fragments that are in Karlsruhe and Zurich. The photos were then removed from this by restorer Martin Strebel in 2008. At the same time, this manuscript, which is significant to the history of law, was rebound using the latest book restoration techniques, thanks to the Friends of the Abbey Library of St. Gall, which covered the costs of the work." + ] + } + } + ], + "logo": [ + { + "id": "https://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "Image" + } + ], + "service": [ + { + "profile": "https://www.w3.org/ns/webmention", + "label": "e-codices Webmention Service", + "id": "https://www.e-codices.unifr.ch/webmention/receive", + "type": "Service" + } + ], + "seeAlso": [ + { + "@format": "application/tei+xml", + "type": "Dataset", + "id": "https://www.e-codices.unifr.ch/xml/tei_published/csg-0730.xml" + } + ], + "type": "Manifest", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "e-codices - Virtual Manuscript Library of Switzerland" + ] + } + }, + "homepage": { + "id": "https://www.e-codices.ch/en/list/one/csg/0730", + "type": "Text" + }, + "partOf": [ + { + "id": "https://www.e-codices.ch/en/list/csg", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "Front cover" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e001.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e001.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e001.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f412715c-49df-4d0e-bc01-63d1a098565a" + } + ] + }, + { + "label": { + "@none": [ + "Front paste-down" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e005.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e005.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e005.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e005.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e005.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac2f8962-1711-46af-88ef-ce4802794f83" + } + ] + }, + { + "label": { + "@none": [ + "V1" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_000a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_000a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_000a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c71372c-f16c-41c4-a175-e634b95045ce" + } + ] + }, + { + "label": { + "@none": [ + "V2" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_000b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_000b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_000b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0976be72-5be1-4c34-be66-3b7330494265" + } + ] + }, + { + "label": { + "@none": [ + "V3" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_000c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_000c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_000c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c238b50e-3c23-4329-a1b4-79bc711fe8cd" + } + ] + }, + { + "label": { + "@none": [ + "V4" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_000d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_000d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_000d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ff9bc31-6a1d-49e8-9483-8d804ca113e1" + } + ] + }, + { + "label": { + "@none": [ + "1" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_001.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_001.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_001.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_001.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_001.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/900513b3-8cdd-4638-8666-afa3a5b021c2" + } + ] + }, + { + "label": { + "@none": [ + "2" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_002.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_002.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_002.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_002.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_002.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/28b5a1e6-7127-43c9-a78d-9d292b18709b" + } + ] + }, + { + "label": { + "@none": [ + "3" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_003.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_003.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_003.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_003.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_003.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b47a794-dad5-46a7-921e-c6b8fbf63a0e" + } + ] + }, + { + "label": { + "@none": [ + "4" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_004.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_004.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_004.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_004.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_004.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/016b52a6-ba33-489b-9f92-73f1fb4b3716" + } + ] + }, + { + "label": { + "@none": [ + "5" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_005.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_005.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_005.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_005.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_005.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5961b4a4-4698-4dbc-8df4-860b3ba5697a" + } + ] + }, + { + "label": { + "@none": [ + "6" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_006.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_006.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_006.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_006.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_006.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/950d1024-bf23-47d6-bf89-c9624f700d3b" + } + ] + }, + { + "label": { + "@none": [ + "7" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_007.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_007.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_007.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_007.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_007.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75ba7619-9821-4207-bac4-2271419ffd23" + } + ] + }, + { + "label": { + "@none": [ + "8" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_008.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_008.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_008.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_008.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_008.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc3290a5-b510-442a-944d-e2898b8900b9" + } + ] + }, + { + "label": { + "@none": [ + "9" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_009.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_009.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_009.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_009.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_009.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1205ec82-fd8a-4ee5-a3fd-de79bd950e99" + } + ] + }, + { + "label": { + "@none": [ + "10" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_010.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_010.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_010.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_010.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_010.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67747f87-7e40-45a1-a3fa-b03eb1f3365c" + } + ] + }, + { + "label": { + "@none": [ + "11" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_011.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_011.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_011.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_011.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_011.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa35b425-dcf5-46a5-8d39-f36ed6c67086" + } + ] + }, + { + "label": { + "@none": [ + "12" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_012.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_012.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_012.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_012.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_012.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce6084e9-ebe9-450b-b08f-adde7c2e8ce4" + } + ] + }, + { + "label": { + "@none": [ + "13" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_013.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_013.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_013.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_013.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_013.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5200117e-f570-4d4a-8557-f5d9ba15e76a" + } + ] + }, + { + "label": { + "@none": [ + "14" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_014.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_014.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_014.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_014.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_014.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a44727a9-77c6-4470-9e1e-3684bf704f15" + } + ] + }, + { + "label": { + "@none": [ + "15" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_015.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_015.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_015.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_015.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_015.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a3feac72-61b5-4638-98be-8936f32ed268" + } + ] + }, + { + "label": { + "@none": [ + "16" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_016.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_016.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_016.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_016.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_016.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14dfe2a8-b585-499f-b421-82ec350be7d2" + } + ] + }, + { + "label": { + "@none": [ + "17" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_017.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_017.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_017.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_017.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_017.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10ae256d-a321-4d9c-b66d-4c36f41a4dc0" + } + ] + }, + { + "label": { + "@none": [ + "18" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_018.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_018.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_018.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_018.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_018.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8315b55a-bdbc-4e62-b372-19a5455a626c" + } + ] + }, + { + "label": { + "@none": [ + "19" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_019.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_019.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_019.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_019.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_019.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3cc62f44-486a-4a22-90cb-1021f33b3793" + } + ] + }, + { + "label": { + "@none": [ + "20" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_020.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_020.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_020.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_020.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_020.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d48b12d-5e8e-4d0b-8d53-c1c438541812" + } + ] + }, + { + "label": { + "@none": [ + "21" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_021.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_021.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_021.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_021.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_021.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85668f45-a758-4d1f-ac20-42fb68fcdf7e" + } + ] + }, + { + "label": { + "@none": [ + "22" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_022.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_022.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_022.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_022.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_022.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/989cdcc1-fd94-4ed2-8c8c-a948b2087d6a" + } + ] + }, + { + "label": { + "@none": [ + "23" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_023.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_023.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_023.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_023.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_023.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb7d06b1-f28e-46bf-986a-999ce63dbec5" + } + ] + }, + { + "label": { + "@none": [ + "24" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_024.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_024.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_024.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_024.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_024.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1eed0eda-b6c5-4624-b9aa-c08dceda7b1a" + } + ] + }, + { + "label": { + "@none": [ + "25" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_025.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_025.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_025.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_025.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_025.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e766a93-20b7-489c-9630-cac74a4ad8c3" + } + ] + }, + { + "label": { + "@none": [ + "26" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_026.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_026.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_026.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce38b08a-d34d-4c4a-ae86-033a4c5468a2" + } + ] + }, + { + "label": { + "@none": [ + "26a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_026a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_026a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_026a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c4ed544-ba08-41b5-9885-8f686e9df22f" + } + ] + }, + { + "label": { + "@none": [ + "26b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_026b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_026b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_026b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8da5cb0f-e199-476f-99ae-70e2022d41b9" + } + ] + }, + { + "label": { + "@none": [ + "27" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_027.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_027.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_027.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_027.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_027.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b4b1bc3-2f42-4fb1-9078-5fc1f2d9161c" + } + ] + }, + { + "label": { + "@none": [ + "28" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/016f5e3a-b000-44a4-8dc7-52a82e5367e5" + } + ] + }, + { + "label": { + "@none": [ + "28a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d4b197ee-eb24-4633-8ac3-3034912aa50c" + } + ] + }, + { + "label": { + "@none": [ + "28b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd0e5540-bfc7-4585-85d2-8d529503fd14" + } + ] + }, + { + "label": { + "@none": [ + "28c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8c7c86a-1d2a-4b98-8a8b-9d9da476fe1f" + } + ] + }, + { + "label": { + "@none": [ + "28d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3f68a5c2-a246-441a-9890-b16ec1315d2e" + } + ] + }, + { + "label": { + "@none": [ + "29" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_029.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_029.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_029.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_029.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_029.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f169e2d9-d8dd-4c1e-a516-15bc4c16b806" + } + ] + }, + { + "label": { + "@none": [ + "30" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73b8f474-0045-426b-b709-c32f1a241e31" + } + ] + }, + { + "label": { + "@none": [ + "30a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a66f49e-e131-467f-9711-075c8d864758" + } + ] + }, + { + "label": { + "@none": [ + "30b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60fc7a96-34f0-424a-b7c1-fbf0eb0070dc" + } + ] + }, + { + "label": { + "@none": [ + "30c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a463fc3-bd98-4328-841d-29d50cb86f9c" + } + ] + }, + { + "label": { + "@none": [ + "30d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44e0b060-ed02-4e1f-9689-ea4585e46793" + } + ] + }, + { + "label": { + "@none": [ + "30e" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030e.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030e.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030e.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d321112f-8022-4f40-8a46-f743bf4a6e00" + } + ] + }, + { + "label": { + "@none": [ + "30f" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030f.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030f.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030f.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73fbab59-f26e-436c-9859-5df2c5cf80a7" + } + ] + }, + { + "label": { + "@none": [ + "31" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_031.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_031.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_031.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_031.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_031.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bb13436-f2f1-4145-9378-a15cfc9cfe5e" + } + ] + }, + { + "label": { + "@none": [ + "32" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d374d88d-a117-4065-84de-d80ac230d759" + } + ] + }, + { + "label": { + "@none": [ + "32a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/515a4acd-a74b-4865-a9a5-259047e5c0c9" + } + ] + }, + { + "label": { + "@none": [ + "32b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac918507-e312-4f7a-8383-f2c80ad9382d" + } + ] + }, + { + "label": { + "@none": [ + "32c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3b67707d-b599-4261-9e48-a98179497a7e" + } + ] + }, + { + "label": { + "@none": [ + "32d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c3961003-871f-439b-bdb5-175f3837c51b" + } + ] + }, + { + "label": { + "@none": [ + "33" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_033.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_033.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_033.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_033.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_033.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7f6f8d53-2a37-4306-a632-6aa469966eb7" + } + ] + }, + { + "label": { + "@none": [ + "34" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43cda489-200a-48da-8117-3bb81e2f1a43" + } + ] + }, + { + "label": { + "@none": [ + "34a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e7e0bea-7760-487f-9ee2-d0c734b97693" + } + ] + }, + { + "label": { + "@none": [ + "34b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64abb778-dba9-402a-9a62-8e6ca1898844" + } + ] + }, + { + "label": { + "@none": [ + "34c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7b90845-294f-4705-9e3a-a9eb2fd9d665" + } + ] + }, + { + "label": { + "@none": [ + "34d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/395b57ca-a926-493c-b2b5-eb73689a2548" + } + ] + }, + { + "label": { + "@none": [ + "34e" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034e.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034e.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034e.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b7a494c5-59eb-41d1-acb0-5384ab452e79" + } + ] + }, + { + "label": { + "@none": [ + "34f" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034f.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034f.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034f.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14d76836-5109-43c7-ab84-81c49924c757" + } + ] + }, + { + "label": { + "@none": [ + "34g" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034g.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034g.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034g.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034g.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034g.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c65d4ccc-1c38-4a01-9e72-1157e19dd754" + } + ] + }, + { + "label": { + "@none": [ + "34h" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034h.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034h.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034h.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034h.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034h.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0ef3193-f3aa-4c90-acf0-ac05f527d8c9" + } + ] + }, + { + "label": { + "@none": [ + "35" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_035.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_035.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_035.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_035.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_035.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e7ab1e6-adad-474b-8909-9844581b6297" + } + ] + }, + { + "label": { + "@none": [ + "36" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_036.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_036.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_036.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_036.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_036.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/517c56c4-7cdc-4f01-97a0-ce7699167197" + } + ] + }, + { + "label": { + "@none": [ + "37" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_037.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_037.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_037.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_037.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_037.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff1d1766-f770-41e1-8c37-3cf99de5e381" + } + ] + }, + { + "label": { + "@none": [ + "38" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_038.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_038.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_038.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_038.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_038.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3911df77-8342-43b7-8a61-9cb3b17876ab" + } + ] + }, + { + "label": { + "@none": [ + "39" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_039.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_039.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_039.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_039.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_039.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbaf6331-f13a-449d-9d46-f3d2baceffc1" + } + ] + }, + { + "label": { + "@none": [ + "40" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_040.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_040.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_040.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_040.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_040.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8165ea6f-9502-4453-8d01-952dd1815831" + } + ] + }, + { + "label": { + "@none": [ + "41" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_041.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_041.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_041.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_041.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_041.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e8b2f53-99db-4306-9abf-8df83b459dc8" + } + ] + }, + { + "label": { + "@none": [ + "42" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_042.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_042.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_042.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_042.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_042.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2f7ddc9-b982-48bc-935b-e92012283573" + } + ] + }, + { + "label": { + "@none": [ + "43" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_043.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_043.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_043.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_043.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_043.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a83fdcb-95c5-478d-b6b2-c4fe52e046d0" + } + ] + }, + { + "label": { + "@none": [ + "44" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_044.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_044.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_044.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_044.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_044.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e88d17a-9555-4024-a9c6-012864a2f037" + } + ] + }, + { + "label": { + "@none": [ + "45" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_045.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_045.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_045.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_045.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_045.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2de1317d-2a12-4600-aa54-6e7586c2e6d9" + } + ] + }, + { + "label": { + "@none": [ + "46" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_046.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_046.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_046.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_046.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_046.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3cc02e96-7146-4b04-875e-013875db1954" + } + ] + }, + { + "label": { + "@none": [ + "47" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_047.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_047.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_047.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_047.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_047.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef2bdb85-13fc-4ce7-9bb6-32633728fc6e" + } + ] + }, + { + "label": { + "@none": [ + "48" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_048.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_048.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_048.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_048.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_048.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/653aa487-6708-44e2-ab3a-549f7c41224c" + } + ] + }, + { + "label": { + "@none": [ + "49" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_049.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_049.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_049.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_049.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_049.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/defd5238-657a-415f-a05f-a3d3b726acde" + } + ] + }, + { + "label": { + "@none": [ + "50" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_050.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_050.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_050.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_050.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_050.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa9f3fef-806a-4b7f-8d4c-fcddd360510c" + } + ] + }, + { + "label": { + "@none": [ + "51" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_051.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_051.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_051.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_051.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_051.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68eee971-319f-4b8d-9f02-e2663cda6ecb" + } + ] + }, + { + "label": { + "@none": [ + "52" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_052.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_052.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_052.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_052.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_052.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9dbad81b-b0d2-4328-bf9b-a6520aa5c256" + } + ] + }, + { + "label": { + "@none": [ + "53" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_053.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_053.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_053.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_053.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_053.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c366394-e149-46eb-982f-95f3fabc7566" + } + ] + }, + { + "label": { + "@none": [ + "54" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_054.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_054.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_054.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_054.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_054.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/907bdd7c-3a19-48ad-ad7a-39bf2f56a831" + } + ] + }, + { + "label": { + "@none": [ + "55" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_055.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_055.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_055.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_055.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_055.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a462a660-0eb6-4ee2-833b-c5eb188e0a45" + } + ] + }, + { + "label": { + "@none": [ + "56" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_056.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_056.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_056.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_056.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_056.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a89243fb-be62-46fc-a647-e47b22cfbbd2" + } + ] + }, + { + "label": { + "@none": [ + "57" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_057.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_057.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_057.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_057.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_057.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d0433fe-f345-44d7-9c0c-b01d7d51d38e" + } + ] + }, + { + "label": { + "@none": [ + "58" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_058.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_058.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_058.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_058.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_058.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b689a587-e846-4aeb-a149-ef83245f6c31" + } + ] + }, + { + "label": { + "@none": [ + "59" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_059.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_059.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_059.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_059.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_059.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a59f54bc-46d0-4ffa-a135-a7186891d801" + } + ] + }, + { + "label": { + "@none": [ + "60" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_060.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_060.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_060.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_060.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_060.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/02d93351-69b9-44f2-b1e5-eaf4380ddcbe" + } + ] + }, + { + "label": { + "@none": [ + "61" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_061.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_061.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_061.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_061.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_061.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df16b5c8-6d5f-44e3-86e1-484ae9955794" + } + ] + }, + { + "label": { + "@none": [ + "62" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca1de533-6db0-42dd-9760-b7a11416b0b6" + } + ] + }, + { + "label": { + "@none": [ + "62a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98e0390d-0fd8-4776-ae2d-5c4a89455a77" + } + ] + }, + { + "label": { + "@none": [ + "62b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/079d95bf-2b62-4ec8-aced-a680f325b8f5" + } + ] + }, + { + "label": { + "@none": [ + "62c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5884b3dd-fd6b-4eab-b155-3ff5caa8d1ef" + } + ] + }, + { + "label": { + "@none": [ + "62d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24d9b35c-04d3-405e-bf96-f80a6a9ca26c" + } + ] + }, + { + "label": { + "@none": [ + "62e" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062e.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062e.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062e.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/462f83cc-a818-4d32-a018-bbbe9541342c" + } + ] + }, + { + "label": { + "@none": [ + "62f" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062f.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062f.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062f.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee285964-86cb-46b4-a090-449e37fe83e8" + } + ] + }, + { + "label": { + "@none": [ + "62g" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062g.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062g.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062g.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062g.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062g.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5b0045d-2b17-4264-bd51-2a3da6edf883" + } + ] + }, + { + "label": { + "@none": [ + "62h" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062h.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062h.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062h.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062h.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062h.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/953dce8e-0268-49fa-9ae9-b569a6889389" + } + ] + }, + { + "label": { + "@none": [ + "62i" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062i.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062i.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062i.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062i.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062i.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef6a5f65-0da4-4a6e-99e9-0e01ca6bcc74" + } + ] + }, + { + "label": { + "@none": [ + "62j" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062j.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062j.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062j.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062j.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062j.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a5ba30b0-9798-43d8-94e4-c4d6cb3ea476" + } + ] + }, + { + "label": { + "@none": [ + "63" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_063.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_063.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_063.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_063.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_063.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef550498-b692-4c17-a516-f5dc8e170c8a" + } + ] + }, + { + "label": { + "@none": [ + "64" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_064.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_064.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_064.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_064.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_064.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce48e720-8f1d-4403-a044-4f5ed42b7f3c" + } + ] + }, + { + "label": { + "@none": [ + "65" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_065.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_065.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_065.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_065.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_065.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f91b13e6-d9c4-4f66-ad98-bcfa886ab1c8" + } + ] + }, + { + "label": { + "@none": [ + "66" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_066.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_066.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_066.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_066.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_066.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51084065-946c-45ec-a8ee-fcbaef340323" + } + ] + }, + { + "label": { + "@none": [ + "67" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_067.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_067.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_067.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_067.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_067.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d18ed372-2445-46e7-8f32-2f112f8fe438" + } + ] + }, + { + "label": { + "@none": [ + "68" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_068.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_068.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_068.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_068.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_068.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/933bbb73-80b2-467a-8174-235f9575c99b" + } + ] + }, + { + "label": { + "@none": [ + "69" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_069.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_069.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_069.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_069.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_069.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60664e2a-3487-40a4-a054-3d9710c6335a" + } + ] + }, + { + "label": { + "@none": [ + "70" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_070.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_070.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_070.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_070.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_070.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6442e2fa-cbe8-4a8f-bebb-4994c9012c99" + } + ] + }, + { + "label": { + "@none": [ + "71" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_071.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_071.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_071.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_071.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_071.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6670ce7-667c-4886-9173-a393ea2c3415" + } + ] + }, + { + "label": { + "@none": [ + "72" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_072.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_072.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_072.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_072.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_072.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e040c09b-0378-4bed-9377-93ce4f51c99c" + } + ] + }, + { + "label": { + "@none": [ + "73" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_073.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_073.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_073.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_073.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_073.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e0816e0-682d-44a4-a35e-484890a04a42" + } + ] + }, + { + "label": { + "@none": [ + "74" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_074.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_074.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_074.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_074.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_074.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/376bcfc8-33b8-483b-ad3a-054e6a1316a8" + } + ] + }, + { + "label": { + "@none": [ + "Rear paste-down" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e006.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e006.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e006.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e006.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e006.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4f366bf-b269-48ea-9288-fd48408a54c7" + } + ] + }, + { + "label": { + "@none": [ + "Back cover" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e003.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e003.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e003.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e003.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e003.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b40b8d2b-5cbd-4522-a253-39351b84aaa2" + } + ] + }, + { + "label": { + "@none": [ + "Spine" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e002.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e002.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e002.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e002.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e002.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/41d60ce2-18fc-4ad3-8916-dee734f5abe1" + } + ] + }, + { + "label": { + "@none": [ + "Fore edge" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e004.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e004.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e004.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e004.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e004.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba672bd6-eba4-4ade-a0e0-efbca2739472" + } + ] + }, + { + "label": { + "@none": [ + "Head" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e007.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e007.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e007.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e007.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e007.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a236573c-f324-4d7b-b49d-ea002eb2edbb" + } + ] + }, + { + "label": { + "@none": [ + "Tail" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e008.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e008.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e008.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e008.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e008.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1fe92055-3ab0-4418-953a-11491fc788c9" + } + ] + }, + { + "label": { + "@none": [ + "Ruler on binding" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassE.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_MassE.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassE.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_MassE.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_MassE.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/203286ee-baab-4c78-9c83-d4a68479861f" + } + ] + }, + { + "label": { + "@none": [ + "Ruler on page" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassS.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_MassS.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassS.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_MassS.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_MassS.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa2ec854-fdb1-439c-8b68-b25e12067223" + } + ] + }, + { + "label": { + "@none": [ + "QP card on binding" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilE.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_ProfilE.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilE.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_ProfilE.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_ProfilE.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3169f0c5-ffc7-452e-8759-9534ec316291" + } + ] + }, + { + "label": { + "@none": [ + "QP card on page" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilS.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_ProfilS.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilS.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_ProfilS.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_ProfilS.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/134173f2-62c7-460d-b820-6d3d6575c926" + } + ] + }, + { + "label": { + "@none": [ + "Digital Colorchecker" + ] + }, + "height": 4872, + "width": 6496, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilSG.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_ProfilSG.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilSG.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4872, + "width": 6496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_ProfilSG.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_ProfilSG.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c34449e-1e5d-440d-9888-80f5f7389620" + } + ] + } + ], + "structures": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-651.json", + "type": "Range", + "behavior": [ + "sequence" + ], + "items": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e005.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_001.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_002.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_003.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_004.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_005.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_006.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_007.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_008.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_009.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_010.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_011.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_012.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_013.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_014.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_015.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_016.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_017.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_018.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_019.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_020.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_021.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_022.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_023.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_024.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_025.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_027.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_029.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_031.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_033.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_035.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_036.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_037.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_038.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_039.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_040.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_041.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_042.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_043.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_044.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_045.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_046.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_047.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_048.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_049.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_050.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_051.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_052.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_053.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_054.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_055.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_056.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_057.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_058.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_059.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_060.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_061.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062i.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062j.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_063.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_064.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_065.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_066.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_067.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_068.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_069.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_070.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_071.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_072.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_073.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_074.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e006.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e003.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e002.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e004.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e007.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e008.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassE.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassS.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilE.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilS.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilSG.json", + "type": "Canvas" + } + ], + "label": { + "de": [ + "restaurierte Version (Aufnahmen vom April 2009)" + ], + "en": [ + "restored version (images from April 2009)" + ], + "fr": [ + "version restaurée (images d'avril 2009)" + ], + "it": [ + "versione restaurata (immagini d'aprile 2009)" + ] + } + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-1190.json", + "type": "Range", + "behavior": [ + "sequence" + ], + "items": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e001.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e005.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000i.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000j.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000k.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000l.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000m.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000n.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_001.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_002.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_002a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_002b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_003.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_004.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_005.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_006.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_007.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_008.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_009.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_010.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_010a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_010b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_011.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_012.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_013.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_014.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_015.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_016.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_017.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_018.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_019.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_020.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_021.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_022.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_023.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_024.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_025.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_026.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_026a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_026b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_027.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_029.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_031.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_033.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_035.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_036.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_037.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_038.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_039.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_040.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_041.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_042.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_043.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_044.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_045.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_046.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_047.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_048.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_049.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_050.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_051.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_052.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_053.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_054.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_055.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_056.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_057.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_058.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_059.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_060.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_061.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062i.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062j.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062k.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062l.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062m.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062n.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062o.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062p.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062q.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062r.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062s.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062t.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062u.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062v.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062w.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062x.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062y.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062z.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_063.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_064.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_065.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_066.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_067.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_068.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_069.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_070.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_071.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_072.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_073.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_074.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_999a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_999b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e006.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e003.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e002.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e004.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e007.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e008.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_Mass.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_Profil.json", + "type": "Canvas" + } + ], + "label": { + "de": [ + "vor der Restauration (Version von Oktober 2006)" + ], + "en": [ + "before restoration (version as of October 2006)" + ], + "fr": [ + "avant la restauration (version d'octobre 2006)" + ], + "it": [ + "prima del restauro (versione ottobre 2006)" + ] + } + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_www_e_codices_unifr_ch_metadata_iiif_sl_0002_manifest": { + "label": { + "@none": [ + "[sine loco], codices restituti, Cod. 2 (Frowinus dispersus)" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "[sine loco]" + ] + } + }, + { + "label": { + "@none": [ + "Collection Name" + ] + }, + "value": { + "@none": [ + "codices restituti" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "Cod. 2 (Frowinus dispersus)" + ] + } + }, + { + "label": { + "@none": [ + "Document Type" + ] + }, + "value": { + "@none": [ + "Virtual Manuscript" + ] + } + }, + { + "label": { + "@none": [ + "DOI" + ] + }, + "value": { + "@none": [ + "10.5076/e-codices-sl-0002" + ] + } + }, + { + "label": { + "@none": [ + "Title (English)" + ] + }, + "value": { + "@none": [ + "Gregorius M., Moralia in Job., t. I (Codex restitutus)" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "Parchment" + ] + } + }, + { + "label": { + "@none": [ + "Place of Origin (English)" + ] + }, + "value": { + "@none": [ + "Engelberg" + ] + } + }, + { + "label": { + "@none": [ + "Date of Origin (English)" + ] + }, + "value": { + "@none": [ + "1143-1178" + ] + } + }, + { + "label": { + "@none": [ + "Number of Pages" + ] + }, + "value": { + "@none": [ + "194" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "31.5 x 23 cm" + ] + } + }, + { + "label": { + "@none": [ + "Online Since" + ] + }, + "value": { + "@none": [ + "2014-12-15" + ] + } + }, + { + "label": { + "@none": [ + "Summary (English)" + ] + }, + "value": { + "@none": [ + "This codex contains a virtual reconstruction of Engelberg Abbey Library’s Cod. 20 with the first volume of Gregory the Great’s Moralia in Iob. It contains the first (ff. 6r-99r) and second part (99r-193v), each divided into five books. At the front of the volume there used to be a full-page illustration consisting of an artistic portrayal of Job with his three friends (upper half) and a portrayal of Gregory the Great and a writing monk (lower half), who according to custom represents Peter the Deacon (Petrus Diaconus). This leaf with a verse of dedication by Frowin on the back, the actual recto side, was carefully described by P. Karl Stadler in his hand-written catalog of 1787; this helped to identify the membrum disiectum, which is now held by the The Cleveland Museum of Art, 1955.74 (Purchase from the J.H. Wade Fund), as unequivocally belonging to this volume." + ] + } + }, + { + "label": { + "@none": [ + "Sponsored by" + ] + }, + "value": { + "@none": [ + "CRUS - Rectors' Conference of the Swiss Universities" + ] + } + }, + { + "label": { + "@none": [ + "Digitized by" + ] + }, + "value": { + "@none": [ + "e-codices / The Cleveland Museum of Art" + ] + } + }, + { + "label": { + "@none": [ + "Persons" + ] + }, + "value": { + "@none": [ + "Patron: Frowinus, de Monte Angelorum; Author: Gregorius I, Papa; Librarian: Stadler, Karl" + ] + } + }, + { + "label": { + "@none": [ + "Century" + ] + }, + "value": { + "@none": [ + "12th century" + ] + } + }, + { + "label": { + "@none": [ + "Dated" + ] + }, + "value": { + "@none": [ + "1147-1178" + ] + } + }, + { + "label": { + "@none": [ + "Text Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "en": [ + "This codex contains a virtual reconstruction of Engelberg Abbey Library’s Cod. 20 with the first volume of Gregory the Great’s Moralia in Iob. It contains the first (ff. 6r-99r) and second part (99r-193v), each divided into five books. At the front of the volume there used to be a full-page illustration consisting of an artistic portrayal of Job with his three friends (upper half) and a portrayal of Gregory the Great and a writing monk (lower half), who according to custom represents Peter the Deacon (Petrus Diaconus). This leaf with a verse of dedication by Frowin on the back, the actual recto side, was carefully described by P. Karl Stadler in his hand-written catalog of 1787; this helped to identify the membrum disiectum, which is now held by the The Cleveland Museum of Art, 1955.74 (Purchase from the J.H. Wade Fund), as unequivocally belonging to this volume." + ] + } + } + ], + "logo": [ + { + "id": "http://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "Image" + } + ], + "service": [ + { + "profile": "https://www.w3.org/ns/webmention", + "label": "e-codices Webmention Service", + "id": "http://www.e-codices.unifr.ch/webmention/receive", + "type": "Service" + } + ], + "type": "Manifest", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "e-codices - Virtual Manuscript Library of Switzerland" + ] + } + }, + "homepage": { + "id": "http://www.e-codices.ch/en/list/one/sl/0002", + "type": "Text" + }, + "partOf": [ + { + "id": "http://www.e-codices.ch/en/list/sl", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "Front cover" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e001.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e001.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e001.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e200b09-6d91-4153-bc17-3ac605640f96" + } + ] + }, + { + "label": { + "@none": [ + "Front paste-down" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e005.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e005.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e005.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e005.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e005.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1873287f-f748-4289-b177-f1b8ad88322b" + } + ] + }, + { + "label": { + "@none": [ + "Ir" + ] + }, + "height": 4800, + "width": 3594, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/cma-1955-74_000b.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4800, + "width": 3594, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/cma/cma-1955-74/cma-1955-74_000b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/cma/cma-1955-74/cma-1955-74_000b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7cfec832-d64a-4acc-bfee-3999ef105b6b" + } + ] + }, + { + "label": { + "@none": [ + "Iv" + ] + }, + "height": 4800, + "width": 3594, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/cma-1955-74_000a.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4800, + "width": 3594, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/cma/cma-1955-74/cma-1955-74_000a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/cma/cma-1955-74/cma-1955-74_000a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37e836c6-b951-42a4-a725-830a476a6183" + } + ] + }, + { + "label": { + "@none": [ + "1r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_001r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_001r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_001r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44750b5e-9bee-4646-b2c7-f268888f3145" + } + ] + }, + { + "label": { + "@none": [ + "1v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_001v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_001v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_001v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86a4dd4e-1262-4e88-b12f-a760aca956d5" + } + ] + }, + { + "label": { + "@none": [ + "2r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_002r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_002r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_002r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cdb5e5d4-ee47-4d5e-a7ba-ab3a0f17831f" + } + ] + }, + { + "label": { + "@none": [ + "2v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_002v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_002v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_002v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8247ae9-49a8-4ef2-9f49-9fadfb2808b7" + } + ] + }, + { + "label": { + "@none": [ + "3r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_003r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_003r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_003r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebaf68d4-f9a7-461e-9d9a-6e91e1cab084" + } + ] + }, + { + "label": { + "@none": [ + "3v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_003v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_003v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_003v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d9b0fd9b-69db-4f86-bf9e-7fde83f0f8de" + } + ] + }, + { + "label": { + "@none": [ + "4r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_004r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_004r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_004r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c373c41e-d5ac-4b25-96b3-0ee003e3a152" + } + ] + }, + { + "label": { + "@none": [ + "4v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_004v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_004v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_004v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8ded71e-6339-4241-b65a-25deec5ae83a" + } + ] + }, + { + "label": { + "@none": [ + "5r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_005r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_005r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_005r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/464b9541-1f72-4b05-bda5-14b0606f2733" + } + ] + }, + { + "label": { + "@none": [ + "5v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_005v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_005v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_005v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50003f43-3fbb-4707-bb44-62bfca0baa4e" + } + ] + }, + { + "label": { + "@none": [ + "6r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_006r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_006r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_006r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2444a06-1881-4aba-8e5f-7deea65ac9f4" + } + ] + }, + { + "label": { + "@none": [ + "6v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_006v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_006v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_006v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5f4a4b9-1eaf-4d5a-b24b-c03bf36a30d8" + } + ] + }, + { + "label": { + "@none": [ + "7r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_007r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_007r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_007r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6eb1d38-703c-41b7-8be5-d1585870d036" + } + ] + }, + { + "label": { + "@none": [ + "7v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_007v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_007v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_007v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/57a996c2-e148-4067-85d4-ddbe1654f1f1" + } + ] + }, + { + "label": { + "@none": [ + "8r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_008r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_008r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_008r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88db9cd0-63d0-41f9-acce-90159612504c" + } + ] + }, + { + "label": { + "@none": [ + "8v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_008v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_008v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_008v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd03178f-efa9-47df-b098-e83b54e496df" + } + ] + }, + { + "label": { + "@none": [ + "9r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_009r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_009r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_009r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/41f6abe9-1130-482b-867f-9d117563e0cd" + } + ] + }, + { + "label": { + "@none": [ + "9v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_009v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_009v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_009v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4fdaa48-16fa-4e77-b41c-55d328a8a7a1" + } + ] + }, + { + "label": { + "@none": [ + "10r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_010r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_010r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_010r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3591635e-65f2-4232-a31b-4f3953d98f78" + } + ] + }, + { + "label": { + "@none": [ + "10v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_010v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_010v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_010v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42324990-82bb-419b-ad60-948714056f1f" + } + ] + }, + { + "label": { + "@none": [ + "11r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_011r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_011r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_011r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dafec4c2-b4be-4dbc-9414-e23ec5b7e55e" + } + ] + }, + { + "label": { + "@none": [ + "11v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_011v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_011v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_011v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2a37ef6-89b2-4625-8e2d-35a8e2f6c5d9" + } + ] + }, + { + "label": { + "@none": [ + "12r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_012r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_012r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_012r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eee79664-ba0b-433f-8f65-6c3980d89a9a" + } + ] + }, + { + "label": { + "@none": [ + "12v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_012v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_012v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_012v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44894f92-4ba6-4c99-aba7-6ac538daa1ef" + } + ] + }, + { + "label": { + "@none": [ + "13r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_013r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_013r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_013r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a99da6d-e8bf-41af-9250-2f3034f9260b" + } + ] + }, + { + "label": { + "@none": [ + "13v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_013v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_013v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_013v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84834df0-7f4c-4578-ad42-8a3757bab353" + } + ] + }, + { + "label": { + "@none": [ + "14r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_014r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_014r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_014r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4bf7aecb-6434-45b7-8afb-37b00d34a4bd" + } + ] + }, + { + "label": { + "@none": [ + "14v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_014v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_014v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_014v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40b8fba3-86ba-47d0-8ebf-9352499a03a4" + } + ] + }, + { + "label": { + "@none": [ + "15r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_015r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_015r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_015r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cbbc721-30c3-4979-8a53-b1bd681eabe6" + } + ] + }, + { + "label": { + "@none": [ + "15v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_015v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_015v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_015v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/748341c0-af61-4140-9455-84cea9ed24ff" + } + ] + }, + { + "label": { + "@none": [ + "16r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_016r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_016r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_016r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e65077e3-ba85-4cec-8273-ad4a670c9db1" + } + ] + }, + { + "label": { + "@none": [ + "16v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_016v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_016v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_016v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a30ebed-a04a-45ba-9854-5273f0e16b35" + } + ] + }, + { + "label": { + "@none": [ + "17r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_017r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_017r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_017r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/735d4f66-95d8-4175-b807-aedb2855b90d" + } + ] + }, + { + "label": { + "@none": [ + "17v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_017v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_017v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_017v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dc539a95-befc-4999-a03b-396c4196c3a2" + } + ] + }, + { + "label": { + "@none": [ + "18r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_018r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_018r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_018r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7088db59-d0f1-4765-914a-f56f6c0eecf8" + } + ] + }, + { + "label": { + "@none": [ + "18v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_018v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_018v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_018v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06983f2f-4e3d-47ca-a904-0ece33894b60" + } + ] + }, + { + "label": { + "@none": [ + "19r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_019r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_019r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_019r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97f5e370-646a-40aa-909e-76dfeca6542e" + } + ] + }, + { + "label": { + "@none": [ + "19v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_019v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_019v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_019v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ffe8e083-9cea-46e0-89e8-136a646c962c" + } + ] + }, + { + "label": { + "@none": [ + "20r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_020r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_020r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_020r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70621f4c-46c1-422d-b0d9-2b60b5daa622" + } + ] + }, + { + "label": { + "@none": [ + "20v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_020v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_020v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_020v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d79b9e2-f836-4eb0-9d49-911c583cf0d5" + } + ] + }, + { + "label": { + "@none": [ + "21r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_021r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_021r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_021r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa0c9232-18b1-4701-887b-b4fde2e5e0d0" + } + ] + }, + { + "label": { + "@none": [ + "21v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_021v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_021v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_021v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c24b2db-fee7-4052-b754-d3429b6765e8" + } + ] + }, + { + "label": { + "@none": [ + "22r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_022r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_022r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_022r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e3fad3e-e1d3-4168-b224-518efbef691d" + } + ] + }, + { + "label": { + "@none": [ + "22v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_022v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_022v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_022v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/750c828f-a0e8-4229-ab7a-b435100b31bf" + } + ] + }, + { + "label": { + "@none": [ + "23r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_023r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_023r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_023r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9257516c-0d9b-4a63-ac3f-88f3a753b376" + } + ] + }, + { + "label": { + "@none": [ + "23v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_023v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_023v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_023v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cccb8398-28ff-4de9-833c-68ba69fca026" + } + ] + }, + { + "label": { + "@none": [ + "24r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_024r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_024r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_024r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86a3d0a7-f315-4046-b231-2aee6a5830ae" + } + ] + }, + { + "label": { + "@none": [ + "24v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_024v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_024v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_024v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8c0f9b9a-0e21-4bf6-bb31-e4c295c538d1" + } + ] + }, + { + "label": { + "@none": [ + "25r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_025r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_025r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_025r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3046ed53-6168-4e5b-806f-94591cacff33" + } + ] + }, + { + "label": { + "@none": [ + "25v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_025v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_025v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_025v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/920cf5ab-3258-40b2-99db-97741ab510d5" + } + ] + }, + { + "label": { + "@none": [ + "26r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_026r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_026r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_026r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b8be07d-0324-4ac6-89a0-9899ae869b12" + } + ] + }, + { + "label": { + "@none": [ + "26v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_026v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_026v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_026v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d222a7c6-37d7-451a-a35a-a5eb15d47b69" + } + ] + }, + { + "label": { + "@none": [ + "27r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_027r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_027r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_027r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea318314-e9f3-4211-8d32-29f3abe189c5" + } + ] + }, + { + "label": { + "@none": [ + "27v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_027v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_027v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_027v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42c4b311-db64-42a1-a23a-49d501571fd4" + } + ] + }, + { + "label": { + "@none": [ + "28r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_028r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_028r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_028r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/488be325-c474-41d1-b67e-139f668dba06" + } + ] + }, + { + "label": { + "@none": [ + "28v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_028v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_028v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_028v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acb6cea8-97c8-4bfa-b5f6-74eaf2a884b5" + } + ] + }, + { + "label": { + "@none": [ + "29r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_029r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_029r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_029r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f45c7ad-9dc9-455b-ba41-606d36437aaa" + } + ] + }, + { + "label": { + "@none": [ + "29v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_029v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_029v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_029v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b14950cc-ab1c-4ee4-bece-438e53735d9b" + } + ] + }, + { + "label": { + "@none": [ + "30r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_030r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_030r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_030r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08ee50c4-420d-4a44-8800-e3ead2183347" + } + ] + }, + { + "label": { + "@none": [ + "30v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_030v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_030v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_030v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8a7890a1-12c8-4470-a585-e06394984043" + } + ] + }, + { + "label": { + "@none": [ + "31r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_031r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_031r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_031r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/609e299d-c3d5-43a7-b8a5-3bd973582184" + } + ] + }, + { + "label": { + "@none": [ + "31v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_031v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_031v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_031v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b15847e7-67e9-41b0-b1a7-068d0ce54473" + } + ] + }, + { + "label": { + "@none": [ + "32r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_032r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_032r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_032r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7641325c-4111-4ef2-b197-6274c61cd0b2" + } + ] + }, + { + "label": { + "@none": [ + "32v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_032v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_032v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_032v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8c5b7fff-7d77-40e7-a86e-d05344f4c3b7" + } + ] + }, + { + "label": { + "@none": [ + "33r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_033r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_033r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_033r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9429067-62da-4869-9603-8067194383f5" + } + ] + }, + { + "label": { + "@none": [ + "33v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_033v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_033v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_033v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/773ba1b9-6a6a-409f-a635-c912a5b180ed" + } + ] + }, + { + "label": { + "@none": [ + "34r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_034r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_034r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_034r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4435a424-6d4a-4ec8-a41a-d77fe37e6719" + } + ] + }, + { + "label": { + "@none": [ + "34v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_034v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_034v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_034v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e53dd68b-e543-427e-8990-20b4fb9a5e9a" + } + ] + }, + { + "label": { + "@none": [ + "35r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_035r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_035r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_035r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98a59640-f261-4e8d-a69e-31dc71226e9a" + } + ] + }, + { + "label": { + "@none": [ + "35v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_035v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_035v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_035v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c1c49ea-7d74-48a0-a178-5804b7b319cc" + } + ] + }, + { + "label": { + "@none": [ + "36r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_036r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_036r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_036r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0704115-432c-4b96-aafd-4e2d61ae60e2" + } + ] + }, + { + "label": { + "@none": [ + "36v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_036v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_036v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_036v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f077d5a0-08df-4f05-a6ea-9a70aeccd3cd" + } + ] + }, + { + "label": { + "@none": [ + "37r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_037r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_037r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_037r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b32a8946-07f7-449b-a62a-add97613118c" + } + ] + }, + { + "label": { + "@none": [ + "37v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_037v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_037v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_037v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12094f3b-08b4-49df-95e3-cf66f1e6dbd3" + } + ] + }, + { + "label": { + "@none": [ + "38r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_038r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_038r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_038r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88f7243c-820d-49e8-8af3-3513df32741a" + } + ] + }, + { + "label": { + "@none": [ + "38v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_038v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_038v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_038v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/56330745-3143-4691-8d08-35e060feade4" + } + ] + }, + { + "label": { + "@none": [ + "39r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_039r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_039r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_039r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9617112-52b1-4459-a711-6a5b91cd2bf8" + } + ] + }, + { + "label": { + "@none": [ + "39v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_039v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_039v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_039v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f23fa46-6bc2-4057-ac5b-51d1d8038768" + } + ] + }, + { + "label": { + "@none": [ + "40r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_040r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_040r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_040r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48732add-2cc7-4323-986a-c81ed030d4dc" + } + ] + }, + { + "label": { + "@none": [ + "40v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_040v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_040v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_040v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87f77c1c-2c96-443e-b434-182d943f41a9" + } + ] + }, + { + "label": { + "@none": [ + "41r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_041r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_041r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_041r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b497d76-7609-46b5-954e-a75c3373f4ac" + } + ] + }, + { + "label": { + "@none": [ + "41v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_041v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_041v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_041v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aada1b22-1f34-4fa6-8c63-abedf17ddad1" + } + ] + }, + { + "label": { + "@none": [ + "42r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_042r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_042r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_042r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e405a73-c143-4d39-966c-e69082415a5f" + } + ] + }, + { + "label": { + "@none": [ + "42v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_042v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_042v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_042v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a47b98ec-d69c-41ce-bea0-f9daa5f8f4fc" + } + ] + }, + { + "label": { + "@none": [ + "43r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_043r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_043r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_043r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df511927-6544-4ae2-acfb-88613c637808" + } + ] + }, + { + "label": { + "@none": [ + "43v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_043v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_043v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_043v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df8d73ee-6c40-4d76-b5f6-6c7ba626d9b0" + } + ] + }, + { + "label": { + "@none": [ + "44r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_044r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_044r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_044r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2fccdda-626f-4785-a9d9-85a65e8f3ff4" + } + ] + }, + { + "label": { + "@none": [ + "44v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_044v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_044v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_044v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf6b2135-80d8-4d8c-a572-63ccd4b4762c" + } + ] + }, + { + "label": { + "@none": [ + "45r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_045r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_045r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_045r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d295e71a-9c1d-4261-8e1a-96a473780161" + } + ] + }, + { + "label": { + "@none": [ + "45v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_045v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_045v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_045v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3d295eb-6966-431f-8d63-b433ac9c5213" + } + ] + }, + { + "label": { + "@none": [ + "46r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_046r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_046r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_046r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff63818b-ceba-4f91-b361-bec0267033c6" + } + ] + }, + { + "label": { + "@none": [ + "46v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_046v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_046v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_046v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9af9e9a4-82c5-4faf-9673-9c6603800410" + } + ] + }, + { + "label": { + "@none": [ + "47r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_047r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_047r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_047r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/345c25b9-e636-4ad5-bbf3-52b25e8d8f79" + } + ] + }, + { + "label": { + "@none": [ + "47v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_047v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_047v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_047v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/adf1cba6-ba26-4469-b810-02c3134a1ee1" + } + ] + }, + { + "label": { + "@none": [ + "48r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_048r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_048r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_048r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62736ae5-635e-4f44-9117-75734e1886a1" + } + ] + }, + { + "label": { + "@none": [ + "48v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_048v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_048v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_048v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2243a897-d8fa-4e52-ae4c-e41d567d5f90" + } + ] + }, + { + "label": { + "@none": [ + "49r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_049r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_049r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_049r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7c3cc057-1b6e-49cd-8097-96fc4217ce76" + } + ] + }, + { + "label": { + "@none": [ + "49v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_049v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_049v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_049v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cae19445-b0cd-4d31-ac41-cb3f9ab764c1" + } + ] + }, + { + "label": { + "@none": [ + "50r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_050r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_050r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_050r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/79ee388c-bf0a-4691-ac7a-a9fdc1fe164d" + } + ] + }, + { + "label": { + "@none": [ + "50v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_050v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_050v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_050v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3820460f-c39e-4918-b53c-d7eca309cdb1" + } + ] + }, + { + "label": { + "@none": [ + "51r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_051r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_051r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_051r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b3aba4d9-0284-4bd3-8674-5c3ec9341b08" + } + ] + }, + { + "label": { + "@none": [ + "51v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_051v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_051v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_051v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51c1494b-26dc-4a8c-a87f-a0cd80ff17de" + } + ] + }, + { + "label": { + "@none": [ + "52r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_052r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_052r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_052r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/282664cb-b60d-4582-908c-1f47ae19b801" + } + ] + }, + { + "label": { + "@none": [ + "52v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_052v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_052v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_052v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3058ca57-712e-40bf-ae0c-8c1512448be0" + } + ] + }, + { + "label": { + "@none": [ + "53r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_053r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_053r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_053r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d41b137a-2a8d-4112-8837-9f55549379f5" + } + ] + }, + { + "label": { + "@none": [ + "53v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_053v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_053v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_053v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f91f574b-c783-415c-8ed1-3cb6095393c2" + } + ] + }, + { + "label": { + "@none": [ + "54r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_054r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_054r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_054r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebf0a65d-3bdc-4862-be17-0d2ea5b0cc8f" + } + ] + }, + { + "label": { + "@none": [ + "54v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_054v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_054v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_054v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64df0431-4cd5-4ba0-a567-e0ba816b023c" + } + ] + }, + { + "label": { + "@none": [ + "55r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_055r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_055r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_055r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f9c77500-0c0c-4b90-9db7-8b16a3dcbf5b" + } + ] + }, + { + "label": { + "@none": [ + "55v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_055v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_055v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_055v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1dcf704-37bb-4a65-b05a-9ed41a5c8c20" + } + ] + }, + { + "label": { + "@none": [ + "56r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_056r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_056r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_056r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2deeab21-1906-4984-8262-2830e6823d57" + } + ] + }, + { + "label": { + "@none": [ + "56v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_056v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_056v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_056v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e76347e-eb01-4025-aa5e-29ab3d6e35a3" + } + ] + }, + { + "label": { + "@none": [ + "57r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_057r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_057r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_057r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f569677c-e00e-4b8f-a11d-ac067a2e825a" + } + ] + }, + { + "label": { + "@none": [ + "57v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_057v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_057v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_057v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a783d68-807e-4193-959c-e6706218ac1b" + } + ] + }, + { + "label": { + "@none": [ + "58r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_058r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_058r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_058r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/379a9dca-2841-4a37-b25d-bff2427055ac" + } + ] + }, + { + "label": { + "@none": [ + "58v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_058v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_058v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_058v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e76432f0-a43e-4757-a5b7-dc95c0e3176b" + } + ] + }, + { + "label": { + "@none": [ + "59r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_059r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_059r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_059r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb79b875-f1cc-44e0-9063-4492fd458543" + } + ] + }, + { + "label": { + "@none": [ + "59v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_059v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_059v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_059v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e904ced7-b050-4179-b092-0b3038a77ecf" + } + ] + }, + { + "label": { + "@none": [ + "60r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_060r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_060r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_060r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ff3d421-09bd-4267-aa9e-5f73cb9bdbab" + } + ] + }, + { + "label": { + "@none": [ + "60v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_060v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_060v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_060v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e80ec3d1-2c9d-4e5d-8956-e1e06fa1f37d" + } + ] + }, + { + "label": { + "@none": [ + "61r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_061r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_061r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_061r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6eb58635-dad4-48ff-ac18-cee68d035fd8" + } + ] + }, + { + "label": { + "@none": [ + "61v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_061v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_061v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_061v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb3cf9dc-e455-46c0-b4c6-b597a012ee90" + } + ] + }, + { + "label": { + "@none": [ + "62r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_062r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_062r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_062r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33a36884-0dd2-467b-9d61-b02391acbb68" + } + ] + }, + { + "label": { + "@none": [ + "62v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_062v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_062v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_062v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31e465fe-05ca-434f-b008-8e339a01e431" + } + ] + }, + { + "label": { + "@none": [ + "63r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_063r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_063r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_063r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0103995f-0c35-4ccf-a3e4-759a86b50ec0" + } + ] + }, + { + "label": { + "@none": [ + "63v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_063v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_063v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_063v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5118f32a-f8ad-42c6-a352-9d3fab54a930" + } + ] + }, + { + "label": { + "@none": [ + "64r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_064r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_064r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_064r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9ac37fe-4c56-4cd0-8e6b-5dd55c6e5768" + } + ] + }, + { + "label": { + "@none": [ + "64v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_064v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_064v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_064v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33c1b4d9-9332-4175-b647-af5ec2c5f320" + } + ] + }, + { + "label": { + "@none": [ + "65r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_065r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_065r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_065r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c3b5c92-ea3a-41ba-a085-0c5332afeb29" + } + ] + }, + { + "label": { + "@none": [ + "65v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_065v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_065v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_065v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/845c7dd5-5de0-4e0c-a222-0d831004d48e" + } + ] + }, + { + "label": { + "@none": [ + "66r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_066r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_066r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_066r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34ee24a8-92f6-4875-b66a-cf519217ae83" + } + ] + }, + { + "label": { + "@none": [ + "66v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_066v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_066v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_066v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7695782-5cb1-4150-ae19-15e2f1c5bc87" + } + ] + }, + { + "label": { + "@none": [ + "67r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_067r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_067r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_067r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12ef0125-dee7-4968-894e-86b0feb85fd4" + } + ] + }, + { + "label": { + "@none": [ + "67v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_067v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_067v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_067v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebf5450a-1447-4c85-bf3a-16d85d7a7b1e" + } + ] + }, + { + "label": { + "@none": [ + "68r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_068r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_068r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_068r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8eb4eb2c-c91f-4687-981f-363c88833215" + } + ] + }, + { + "label": { + "@none": [ + "68v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_068v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_068v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_068v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cead4a2-28e0-412a-9eb5-1b092fde6f47" + } + ] + }, + { + "label": { + "@none": [ + "69r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_069r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_069r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_069r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c36b158-3c13-437f-b71e-2b075c6fd951" + } + ] + }, + { + "label": { + "@none": [ + "69v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_069v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_069v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_069v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca0f686e-0d59-4d8b-b2e4-6e1603592af2" + } + ] + }, + { + "label": { + "@none": [ + "70r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_070r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_070r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_070r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3dbdf194-0f1f-47e6-9e52-014e7b15cba1" + } + ] + }, + { + "label": { + "@none": [ + "70v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_070v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_070v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_070v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8299fec5-cdf5-44e6-ad3a-c71171a04453" + } + ] + }, + { + "label": { + "@none": [ + "71r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_071r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_071r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_071r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8af25156-3c8a-4987-bfd0-61a8ee5763db" + } + ] + }, + { + "label": { + "@none": [ + "71v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_071v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_071v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_071v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2b548387-ce94-487c-9edd-8f91372e4e7d" + } + ] + }, + { + "label": { + "@none": [ + "72r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_072r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_072r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_072r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a5181bea-2328-4854-adea-b03bcd97df4b" + } + ] + }, + { + "label": { + "@none": [ + "72v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_072v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_072v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_072v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5926f4d-70dd-45ea-a448-3f04c138a478" + } + ] + }, + { + "label": { + "@none": [ + "73r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_073r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_073r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_073r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ef7146d-e98e-4f9a-811b-d65401a1b434" + } + ] + }, + { + "label": { + "@none": [ + "73v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_073v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_073v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_073v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ac01b61-c07c-42fb-807d-87c4087e99f0" + } + ] + }, + { + "label": { + "@none": [ + "74r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_074r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_074r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_074r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a99d00a4-6b56-4f50-8f3e-b2fd6cfb3785" + } + ] + }, + { + "label": { + "@none": [ + "74v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_074v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_074v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_074v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d5fdf5a-1ea1-434e-96d2-a89ca2f2f92c" + } + ] + }, + { + "label": { + "@none": [ + "75r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_075r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_075r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_075r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/71984aa3-6a86-45d1-beb7-a2021b471825" + } + ] + }, + { + "label": { + "@none": [ + "75v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_075v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_075v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_075v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/45323ce4-5a49-4271-98a3-67cf417f3bdd" + } + ] + }, + { + "label": { + "@none": [ + "76r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_076r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_076r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_076r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7c07a359-9a34-40f1-8e7d-0b85051b9e6b" + } + ] + }, + { + "label": { + "@none": [ + "76v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_076v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_076v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_076v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3433b9c0-e221-4915-aae2-14c7abd3cd2f" + } + ] + }, + { + "label": { + "@none": [ + "77r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_077r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_077r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_077r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e340f40f-a493-4d6f-8bcf-46d5f5575ba2" + } + ] + }, + { + "label": { + "@none": [ + "77v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_077v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_077v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_077v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31d97cce-b321-4ee7-98b6-94540cf28136" + } + ] + }, + { + "label": { + "@none": [ + "78r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_078r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_078r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_078r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/79719dee-c2dc-47db-8a77-599200cad14e" + } + ] + }, + { + "label": { + "@none": [ + "78v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_078v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_078v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_078v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8fb25db3-b961-48a8-a5d9-a01b84fb6b9e" + } + ] + }, + { + "label": { + "@none": [ + "79r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_079r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_079r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_079r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b715283e-8839-475f-8ad2-dbd1ad74301e" + } + ] + }, + { + "label": { + "@none": [ + "79v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_079v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_079v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_079v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94a730d7-16c2-4353-84c9-857aecf247d1" + } + ] + }, + { + "label": { + "@none": [ + "80r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_080r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_080r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_080r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37885192-903f-4e58-9af7-da1f1d283610" + } + ] + }, + { + "label": { + "@none": [ + "80v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_080v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_080v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_080v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4f0e10e-87a5-4d2e-8a99-40c0fb85946e" + } + ] + }, + { + "label": { + "@none": [ + "81r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_081r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_081r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_081r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bb76044-e8b1-4f16-9c4b-20c9c5a41507" + } + ] + }, + { + "label": { + "@none": [ + "81v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_081v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_081v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_081v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7127a206-27a2-4055-970d-16469fccdfad" + } + ] + }, + { + "label": { + "@none": [ + "82r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_082r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_082r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_082r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/511275ba-b6f0-4ce6-929d-618de96b29ab" + } + ] + }, + { + "label": { + "@none": [ + "82v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_082v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_082v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_082v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44db171a-ac5e-43c1-8a25-0e51f441c3ae" + } + ] + }, + { + "label": { + "@none": [ + "83r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_083r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_083r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_083r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd0c8e74-8384-475b-9879-5d85364c34fa" + } + ] + }, + { + "label": { + "@none": [ + "83v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_083v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_083v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_083v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1a517fb-8d6c-4461-87d5-c570c28bb475" + } + ] + }, + { + "label": { + "@none": [ + "84r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_084r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_084r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_084r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/806756bc-2bba-4e18-a5fa-ce9fd09f2258" + } + ] + }, + { + "label": { + "@none": [ + "84v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_084v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_084v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_084v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1b1692b-df46-4ae2-9ed9-ff3db10a2371" + } + ] + }, + { + "label": { + "@none": [ + "85r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_085r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_085r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_085r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2d76436-004f-4e2a-970c-98191df97140" + } + ] + }, + { + "label": { + "@none": [ + "85v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_085v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_085v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_085v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ddff8e02-e54e-4b7f-a47d-620db68993c2" + } + ] + }, + { + "label": { + "@none": [ + "86r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_086r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_086r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_086r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98f4a2a7-b6a5-4734-a1c2-ed17d4c2f399" + } + ] + }, + { + "label": { + "@none": [ + "86v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_086v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_086v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_086v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8872f3d9-e60a-418d-955f-773c72471111" + } + ] + }, + { + "label": { + "@none": [ + "87r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_087r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_087r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_087r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d07c66e4-2895-4ade-bf4e-2fc2a59c9be4" + } + ] + }, + { + "label": { + "@none": [ + "87v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_087v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_087v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_087v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03f308a1-3cd0-483e-a547-9afb0d1f6103" + } + ] + }, + { + "label": { + "@none": [ + "88r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_088r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_088r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_088r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ad9ebf3-c1cf-4213-9964-b1f2d57a8532" + } + ] + }, + { + "label": { + "@none": [ + "88v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_088v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_088v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_088v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b262b95-257e-4a68-98f3-a984cc2ede77" + } + ] + }, + { + "label": { + "@none": [ + "89r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_089r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_089r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_089r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ddef9e2b-eaa5-409e-a91a-710fb0e1c889" + } + ] + }, + { + "label": { + "@none": [ + "89v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_089v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_089v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_089v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11354299-8f5d-4295-8050-c8b6f4ca94f4" + } + ] + }, + { + "label": { + "@none": [ + "90r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_090r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_090r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_090r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f393d6c6-d984-4d71-84a3-1fe964800a6b" + } + ] + }, + { + "label": { + "@none": [ + "90v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_090v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_090v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_090v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86aefe00-d93c-44d4-9972-f3452776c560" + } + ] + }, + { + "label": { + "@none": [ + "91r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_091r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_091r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_091r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc68b530-b2ee-4285-a1a4-a3134a6b5cdc" + } + ] + }, + { + "label": { + "@none": [ + "91v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_091v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_091v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_091v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/796909f5-ac97-4219-a45e-2a40c517f6f7" + } + ] + }, + { + "label": { + "@none": [ + "92r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_092r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_092r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_092r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72544779-ffcc-4ad3-b3d1-3a43a4a15821" + } + ] + }, + { + "label": { + "@none": [ + "92v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_092v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_092v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_092v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3bf69273-1de9-41b4-a9f0-b485aa3b4a80" + } + ] + }, + { + "label": { + "@none": [ + "93r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_093r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_093r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_093r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c20aab0d-ba2e-44be-b719-5ca00d933a8f" + } + ] + }, + { + "label": { + "@none": [ + "93v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_093v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_093v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_093v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df7d73c3-7b03-46f6-b1b3-8a532bee6ffc" + } + ] + }, + { + "label": { + "@none": [ + "94r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_094r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_094r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_094r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5dc493e-440a-471f-a6e8-c8f0f4fb3a8b" + } + ] + }, + { + "label": { + "@none": [ + "94v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_094v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_094v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_094v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f96f4fca-8962-4727-98b1-7c4f0e6a36e6" + } + ] + }, + { + "label": { + "@none": [ + "95r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_095r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_095r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_095r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8da7b562-2e6c-48b5-ae46-803b4c9f083a" + } + ] + }, + { + "label": { + "@none": [ + "95v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_095v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_095v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_095v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca40a29f-a1a5-4f77-b99d-056d354954ac" + } + ] + }, + { + "label": { + "@none": [ + "96r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_096r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_096r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_096r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3106fa2e-b7c0-4310-8f4a-7e0a80f1667e" + } + ] + }, + { + "label": { + "@none": [ + "96v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_096v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_096v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_096v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70444566-655f-4cbb-bb45-82d24ffe2b0d" + } + ] + }, + { + "label": { + "@none": [ + "97r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_097r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_097r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_097r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/16fb97d7-31be-4457-b667-dfdfd7a71539" + } + ] + }, + { + "label": { + "@none": [ + "97v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_097v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_097v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_097v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f843a99a-f2e5-48c7-9e44-a4c87b0e0640" + } + ] + }, + { + "label": { + "@none": [ + "98r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_098r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_098r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_098r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f34a22a-289e-43d4-93fd-7578714f4cb2" + } + ] + }, + { + "label": { + "@none": [ + "98v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_098v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_098v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_098v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/724e7183-df5f-4bfd-a4cc-a4c7e895fc93" + } + ] + }, + { + "label": { + "@none": [ + "99r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_099r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_099r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_099r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61c67adb-d103-4e50-810d-8387ac7f6213" + } + ] + }, + { + "label": { + "@none": [ + "99v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_099v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_099v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_099v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cde81247-ca74-444e-9769-3f5305df53d7" + } + ] + }, + { + "label": { + "@none": [ + "100r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_100r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_100r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_100r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97daae99-d894-4799-8342-11bd85649752" + } + ] + }, + { + "label": { + "@none": [ + "100v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_100v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_100v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_100v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a5ed4b9-d6dd-4847-a342-1fb4f9e25611" + } + ] + }, + { + "label": { + "@none": [ + "101r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_101r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_101r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_101r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4faf172c-0497-4c91-b3c1-c69adeabee49" + } + ] + }, + { + "label": { + "@none": [ + "101v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_101v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_101v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_101v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e20650d-5832-4255-9b19-14c9e1037bb3" + } + ] + }, + { + "label": { + "@none": [ + "102r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_102r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_102r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_102r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/de3e63fe-8c2f-4cbe-92be-0b84dc6e081c" + } + ] + }, + { + "label": { + "@none": [ + "102v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_102v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_102v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_102v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f301df14-2909-4df5-9144-62f68824c6d4" + } + ] + }, + { + "label": { + "@none": [ + "103r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_103r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_103r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_103r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8390f4f3-9044-40f5-9436-8e2e4b1e2faa" + } + ] + }, + { + "label": { + "@none": [ + "103v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_103v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_103v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_103v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d55abdb4-9147-4a91-815a-bbe1c750aca8" + } + ] + }, + { + "label": { + "@none": [ + "104r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_104r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_104r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_104r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e23cfa0-2115-43f2-9a68-44d4b5fdbe7b" + } + ] + }, + { + "label": { + "@none": [ + "104v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_104v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_104v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_104v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1a621bf-9168-458b-87d1-d4c61d84d49e" + } + ] + }, + { + "label": { + "@none": [ + "105r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_105r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_105r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_105r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/843ea709-edf5-4792-bc29-73cd95971846" + } + ] + }, + { + "label": { + "@none": [ + "105v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_105v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_105v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_105v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/02d19b6b-f38e-45ca-9e01-93b5d13582bf" + } + ] + }, + { + "label": { + "@none": [ + "106r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_106r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_106r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_106r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81c04e09-c4a7-4ce5-9210-fa86bc70c5d7" + } + ] + }, + { + "label": { + "@none": [ + "106v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_106v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_106v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_106v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f16d804-eb96-4222-ba81-8aad32ded8bd" + } + ] + }, + { + "label": { + "@none": [ + "107r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_107r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_107r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_107r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4498828f-4f13-4e1c-a236-425b355c7794" + } + ] + }, + { + "label": { + "@none": [ + "107v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_107v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_107v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_107v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7db4cce5-6413-4733-b0e4-920b46269117" + } + ] + }, + { + "label": { + "@none": [ + "108r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_108r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_108r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_108r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d51a052d-6e87-408f-8307-59581c7b2edc" + } + ] + }, + { + "label": { + "@none": [ + "108v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_108v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_108v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_108v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f95a57a3-f52a-4780-8c5b-82c8bc5db779" + } + ] + }, + { + "label": { + "@none": [ + "109r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_109r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_109r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_109r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/707617c2-5f56-4eb6-9be7-ac01ed30a9ad" + } + ] + }, + { + "label": { + "@none": [ + "109v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_109v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_109v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_109v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2b5ebd4-f341-4c37-a54f-95fb3390a366" + } + ] + }, + { + "label": { + "@none": [ + "110r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_110r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_110r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_110r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59f50c59-5fab-40b0-9bff-bcc3409e65fe" + } + ] + }, + { + "label": { + "@none": [ + "110v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_110v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_110v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_110v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87939f2a-0885-478b-9cc8-08f5bc66ebfb" + } + ] + }, + { + "label": { + "@none": [ + "111r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_111r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_111r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_111r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bd053d0-afeb-4eaa-867f-a1d24ab6705e" + } + ] + }, + { + "label": { + "@none": [ + "111v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_111v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_111v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_111v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4fed0300-df95-4513-a0b9-40e301029551" + } + ] + }, + { + "label": { + "@none": [ + "112r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_112r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_112r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_112r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/368bee0a-89f1-4f66-9781-8a2bb23fdff1" + } + ] + }, + { + "label": { + "@none": [ + "112v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_112v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_112v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_112v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14985e4c-1b76-4987-8395-90940a6215bb" + } + ] + }, + { + "label": { + "@none": [ + "113r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_113r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_113r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_113r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e81b6c2-7866-4cc8-87b8-66f3a619773d" + } + ] + }, + { + "label": { + "@none": [ + "113v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_113v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_113v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_113v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67506817-9c8e-48dc-86f6-983f0033d3dc" + } + ] + }, + { + "label": { + "@none": [ + "114r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_114r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_114r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_114r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/306da573-9417-4a57-872e-16b2232ca1ff" + } + ] + }, + { + "label": { + "@none": [ + "114v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_114v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_114v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_114v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72f315d5-258f-4947-9bed-a663ecdefa69" + } + ] + }, + { + "label": { + "@none": [ + "115r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_115r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_115r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_115r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8761871-a433-4789-9d0b-4618097d07f3" + } + ] + }, + { + "label": { + "@none": [ + "115v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_115v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_115v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_115v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac53d88d-a900-40c2-a9a1-b74341563322" + } + ] + }, + { + "label": { + "@none": [ + "116r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_116r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_116r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_116r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e546b04a-2793-42ba-8882-e560b04f30fb" + } + ] + }, + { + "label": { + "@none": [ + "116v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_116v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_116v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_116v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99564094-1d3f-44a8-a16c-4c302482bbfa" + } + ] + }, + { + "label": { + "@none": [ + "117r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_117r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_117r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_117r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25c55025-823b-4db2-bb6d-4756a0ad9374" + } + ] + }, + { + "label": { + "@none": [ + "117v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_117v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_117v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_117v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/981dc0f8-d373-4cd3-b972-4a4b6357cb8d" + } + ] + }, + { + "label": { + "@none": [ + "118r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_118r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_118r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_118r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00a2830b-e4a5-47fc-b8ad-04782e390a58" + } + ] + }, + { + "label": { + "@none": [ + "118v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_118v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_118v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_118v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/abf94f6d-e6ea-4b56-a3e0-273ae77e7a92" + } + ] + }, + { + "label": { + "@none": [ + "119r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_119r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_119r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_119r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1680df8b-4e05-43a5-8166-7c8fbca0252d" + } + ] + }, + { + "label": { + "@none": [ + "119v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_119v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_119v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_119v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca9a17da-dd17-4c07-997d-ffe7ac96865a" + } + ] + }, + { + "label": { + "@none": [ + "120r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_120r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_120r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_120r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d11ff8a7-282f-4651-9959-dc9712a44e09" + } + ] + }, + { + "label": { + "@none": [ + "120v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_120v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_120v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_120v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70a1b5bb-f5c0-4deb-a58c-355d024831d2" + } + ] + }, + { + "label": { + "@none": [ + "120ar" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120ar.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_120ar.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120ar.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_120ar.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_120ar.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5563187-9d5b-4546-a6a0-99b3a45dcb1e" + } + ] + }, + { + "label": { + "@none": [ + "120av" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120av.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_120av.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120av.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_120av.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_120av.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f20cb18d-e00c-4222-9e34-855653e6fa6e" + } + ] + }, + { + "label": { + "@none": [ + "121r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_121r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_121r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_121r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97181ea2-7146-419d-a2f0-795c35e86db7" + } + ] + }, + { + "label": { + "@none": [ + "121v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_121v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_121v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_121v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc9c21ca-2648-4b6c-9711-16926308da7c" + } + ] + }, + { + "label": { + "@none": [ + "122r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_122r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_122r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_122r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4068915-0995-4a9d-a139-e15b7e3eedc9" + } + ] + }, + { + "label": { + "@none": [ + "122v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_122v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_122v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_122v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99010d4f-7637-43d1-9b08-c158eacf7b58" + } + ] + }, + { + "label": { + "@none": [ + "123r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_123r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_123r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_123r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fcbf93d8-0ac8-40a8-9945-4eda9236ece6" + } + ] + }, + { + "label": { + "@none": [ + "123v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_123v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_123v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_123v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff84b5cf-9d90-4f90-90a0-54c86c4ea1ed" + } + ] + }, + { + "label": { + "@none": [ + "124r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_124r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_124r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_124r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e28746f8-10a6-4a82-8a54-43251036fadd" + } + ] + }, + { + "label": { + "@none": [ + "124v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_124v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_124v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_124v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53503538-c569-4d4e-980d-e8b546cb8235" + } + ] + }, + { + "label": { + "@none": [ + "125r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_125r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_125r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_125r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3255644d-d1ff-4a10-b95d-b7e93bc529d1" + } + ] + }, + { + "label": { + "@none": [ + "125v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_125v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_125v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_125v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c25eb9d7-cd23-4139-9d32-d8ea6a125494" + } + ] + }, + { + "label": { + "@none": [ + "126r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_126r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_126r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_126r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f59d9ed2-8083-4030-a215-0dca1770a732" + } + ] + }, + { + "label": { + "@none": [ + "126v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_126v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_126v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_126v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/780d659e-c54c-4663-b670-a3a4d2b361cd" + } + ] + }, + { + "label": { + "@none": [ + "127r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_127r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_127r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_127r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0499702b-635b-4d45-848e-c316ec92ac9b" + } + ] + }, + { + "label": { + "@none": [ + "127v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_127v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_127v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_127v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9665796-aaef-486b-ba9f-a42908416b3b" + } + ] + }, + { + "label": { + "@none": [ + "128r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_128r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_128r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_128r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e917b462-9454-42e9-91c2-0d19c03a8120" + } + ] + }, + { + "label": { + "@none": [ + "128v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_128v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_128v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_128v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb65ae5e-f3cb-4590-81b4-cb22962fca73" + } + ] + }, + { + "label": { + "@none": [ + "129r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_129r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_129r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_129r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69c36e06-ba26-47fe-bd06-8e81fb5d2bf2" + } + ] + }, + { + "label": { + "@none": [ + "129v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_129v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_129v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_129v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c2372e8-ad56-4266-92dd-c5453f20f675" + } + ] + }, + { + "label": { + "@none": [ + "130r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_130r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_130r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_130r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d0377ad2-62d6-4657-82a1-752f7ab7212a" + } + ] + }, + { + "label": { + "@none": [ + "130v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_130v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_130v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_130v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/584e2228-0374-4e9e-8a7b-9fc3943f46b2" + } + ] + }, + { + "label": { + "@none": [ + "131r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_131r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_131r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_131r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd3d3640-207e-4c7e-91bd-2e2b59cd17b6" + } + ] + }, + { + "label": { + "@none": [ + "131v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_131v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_131v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_131v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cfdd80f-b997-4d99-97bf-aac5fc44c092" + } + ] + }, + { + "label": { + "@none": [ + "132r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_132r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_132r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_132r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53adff37-91f7-4991-a445-e05aceb5e95c" + } + ] + }, + { + "label": { + "@none": [ + "132v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_132v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_132v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_132v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a5ba1f9-a6a0-4417-bac6-56640bb5df49" + } + ] + }, + { + "label": { + "@none": [ + "133r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_133r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_133r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_133r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7061022d-e385-4827-8132-38cb7be34cf8" + } + ] + }, + { + "label": { + "@none": [ + "133v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_133v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_133v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_133v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9aabadd2-b776-4e44-b5f6-f7d896b999a7" + } + ] + }, + { + "label": { + "@none": [ + "134r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_134r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_134r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_134r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7c6ec936-d7c9-4112-906c-8edb56a6c0e9" + } + ] + }, + { + "label": { + "@none": [ + "134v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_134v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_134v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_134v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd19cc0a-d790-4724-9189-e9186a490b86" + } + ] + }, + { + "label": { + "@none": [ + "135r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_135r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_135r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_135r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b6bdb31-6839-4adf-9021-ac7155649f37" + } + ] + }, + { + "label": { + "@none": [ + "135v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_135v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_135v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_135v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ac2ef45-9b92-4620-af13-2a2860815ec2" + } + ] + }, + { + "label": { + "@none": [ + "136r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_136r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_136r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_136r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bc0c8b6-4200-4ab0-bc8d-18c4b43975b0" + } + ] + }, + { + "label": { + "@none": [ + "136v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_136v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_136v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_136v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e3480d0-908c-4cf2-9a7d-0a5b1238790b" + } + ] + }, + { + "label": { + "@none": [ + "137r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_137r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_137r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_137r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a352bd2-995c-41ff-b1e7-3fe8df48c203" + } + ] + }, + { + "label": { + "@none": [ + "137v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_137v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_137v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_137v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00f8787e-9cf3-4397-b6b2-1c4f8f8f423e" + } + ] + }, + { + "label": { + "@none": [ + "138r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_138r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_138r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_138r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37ebdb4a-1388-46fb-a281-a0281f6bd5eb" + } + ] + }, + { + "label": { + "@none": [ + "138v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_138v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_138v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_138v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a5cdb912-13cb-441b-a423-923d567773b1" + } + ] + }, + { + "label": { + "@none": [ + "139r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_139r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_139r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_139r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd95d9a5-068d-4c75-91f3-aeee13aea9dc" + } + ] + }, + { + "label": { + "@none": [ + "139v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_139v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_139v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_139v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9acfe5ea-d79b-433c-bd87-5f7b0ddc6f09" + } + ] + }, + { + "label": { + "@none": [ + "140r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_140r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_140r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_140r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0bc44d0-5b4a-402d-bb5f-118818450dae" + } + ] + }, + { + "label": { + "@none": [ + "140v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_140v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_140v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_140v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/665b259d-d906-4613-b324-59512c5db463" + } + ] + }, + { + "label": { + "@none": [ + "141r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_141r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_141r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_141r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7aca7ab0-b103-40f2-a93b-18c0e779012e" + } + ] + }, + { + "label": { + "@none": [ + "141v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_141v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_141v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_141v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/272d80d0-43e7-4745-8f45-e56004a3ff25" + } + ] + }, + { + "label": { + "@none": [ + "142r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_142r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_142r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_142r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f6dabe9-d102-4aae-b133-5696031baa99" + } + ] + }, + { + "label": { + "@none": [ + "142v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_142v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_142v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_142v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83441ae5-e661-4842-9a74-6ae3725ea3d5" + } + ] + }, + { + "label": { + "@none": [ + "143r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_143r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_143r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_143r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43941399-8ae5-47fa-acc4-192f77b0722f" + } + ] + }, + { + "label": { + "@none": [ + "143v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_143v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_143v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_143v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e9de4a1-2e56-46b4-b7b5-44977f8c1c70" + } + ] + }, + { + "label": { + "@none": [ + "144r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_144r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_144r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_144r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73eb23d8-e150-49a4-ab11-5a40ac6d4a87" + } + ] + }, + { + "label": { + "@none": [ + "144v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_144v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_144v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_144v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51c7203a-858d-4df9-9f0a-4fc5e9c50917" + } + ] + }, + { + "label": { + "@none": [ + "145r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_145r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_145r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_145r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1af9f7c-03f8-463b-938e-dc2df4458d1d" + } + ] + }, + { + "label": { + "@none": [ + "145v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_145v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_145v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_145v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b1504db-d603-4930-b0c2-f2cbe33502d7" + } + ] + }, + { + "label": { + "@none": [ + "146r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_146r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_146r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_146r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/145834c1-8d95-4ced-8ef9-6eac61fae577" + } + ] + }, + { + "label": { + "@none": [ + "146v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_146v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_146v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_146v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84c3ce16-5d27-4899-92ab-3b3eb1ba0413" + } + ] + }, + { + "label": { + "@none": [ + "147r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_147r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_147r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_147r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f4288775-3489-4613-85c6-b6c2583c782f" + } + ] + }, + { + "label": { + "@none": [ + "147v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_147v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_147v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_147v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8ac0be5-2b4c-4098-815f-7544ec86856e" + } + ] + }, + { + "label": { + "@none": [ + "148r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_148r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_148r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_148r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df01c664-b6b6-4f7c-9ba9-66d261c185c6" + } + ] + }, + { + "label": { + "@none": [ + "148v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_148v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_148v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_148v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64139a6e-c40e-46e5-a689-b5b3305ff6f9" + } + ] + }, + { + "label": { + "@none": [ + "149r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_149r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_149r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_149r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8d42e19-0d8a-4ff6-a6e1-65e870f51f42" + } + ] + }, + { + "label": { + "@none": [ + "149v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_149v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_149v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_149v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/959ccbac-5a5b-47f2-9981-99e79dec9f11" + } + ] + }, + { + "label": { + "@none": [ + "150r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_150r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_150r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_150r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cdabc768-bb49-4b99-875d-1669e95cb5a7" + } + ] + }, + { + "label": { + "@none": [ + "150v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_150v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_150v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_150v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fad088cd-d8ad-4afc-b9d4-529201049918" + } + ] + }, + { + "label": { + "@none": [ + "151r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_151r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_151r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_151r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad164bcf-627c-4194-adf7-8808d7de1d80" + } + ] + }, + { + "label": { + "@none": [ + "151v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_151v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_151v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_151v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb894273-7ffc-4f5b-af4f-09a7f79b0536" + } + ] + }, + { + "label": { + "@none": [ + "152r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_152r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_152r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_152r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6dc299f3-6be5-41c1-836d-c64cb854f67c" + } + ] + }, + { + "label": { + "@none": [ + "152v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_152v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_152v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_152v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8c9fdca-dd03-48b3-beed-f564ea78b0e0" + } + ] + }, + { + "label": { + "@none": [ + "153r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_153r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_153r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_153r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83f086b7-749d-4493-897e-7ef7e1cb0150" + } + ] + }, + { + "label": { + "@none": [ + "153v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_153v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_153v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_153v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cba82ea1-b876-4846-954b-9fce7f55359f" + } + ] + }, + { + "label": { + "@none": [ + "154r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_154r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_154r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_154r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edb11ed3-c433-4b1a-a0fa-201703289d3f" + } + ] + }, + { + "label": { + "@none": [ + "154v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_154v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_154v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_154v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ff09162-ddca-45c1-8b92-0bbb8265c500" + } + ] + }, + { + "label": { + "@none": [ + "155r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_155r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_155r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_155r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/931e8431-464a-4e23-807b-93c0a67b4370" + } + ] + }, + { + "label": { + "@none": [ + "155v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_155v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_155v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_155v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edaa389c-ca9c-48f9-b487-8d6ba01bcf20" + } + ] + }, + { + "label": { + "@none": [ + "156r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_156r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_156r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_156r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aca8e998-86d6-4dc7-92c4-40c381d0fdeb" + } + ] + }, + { + "label": { + "@none": [ + "156v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_156v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_156v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_156v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/276f3e14-4564-40a8-acd2-6f9189670d92" + } + ] + }, + { + "label": { + "@none": [ + "157r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_157r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_157r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_157r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7fdeea83-8908-44dd-9150-7419ec919b34" + } + ] + }, + { + "label": { + "@none": [ + "157v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_157v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_157v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_157v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a03a046-8a4a-4764-b716-724e9a119715" + } + ] + }, + { + "label": { + "@none": [ + "158r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_158r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_158r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_158r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bdeba5e4-32c7-43f1-abac-b6b44072ee55" + } + ] + }, + { + "label": { + "@none": [ + "158v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_158v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_158v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_158v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b40e62e0-b989-4b4f-b63c-aeeb1784f211" + } + ] + }, + { + "label": { + "@none": [ + "159r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_159r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_159r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_159r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8419b8a4-0f5d-44b5-bdaa-fe22d95cfe0c" + } + ] + }, + { + "label": { + "@none": [ + "159v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_159v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_159v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_159v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e37b8609-5823-487a-af85-5a1c9c21f038" + } + ] + }, + { + "label": { + "@none": [ + "160r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_160r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_160r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_160r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee7ca32a-4f55-48bc-9812-83c113976c9b" + } + ] + }, + { + "label": { + "@none": [ + "160v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_160v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_160v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_160v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f82b58c-48c5-40da-8bb9-4440a89638a5" + } + ] + }, + { + "label": { + "@none": [ + "161r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_161r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_161r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_161r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62bf46d3-dbc2-4ec6-bf17-43042430a1fd" + } + ] + }, + { + "label": { + "@none": [ + "161v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_161v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_161v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_161v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fd87875-a3d1-4560-afb4-6201527ff751" + } + ] + }, + { + "label": { + "@none": [ + "162r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_162r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_162r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_162r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd32ee9e-591a-49fd-9212-5b89c0762168" + } + ] + }, + { + "label": { + "@none": [ + "162v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_162v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_162v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_162v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d554db2c-bd3b-4495-b0e9-32f8af00ba38" + } + ] + }, + { + "label": { + "@none": [ + "163r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_163r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_163r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_163r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6cb2eba-d929-4c28-8ea1-95a2c4239626" + } + ] + }, + { + "label": { + "@none": [ + "163v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_163v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_163v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_163v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b35d3d9-23f2-4f4d-a007-721064ab513e" + } + ] + }, + { + "label": { + "@none": [ + "164r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_164r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_164r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_164r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/480f326c-f058-4d5a-964a-4c7646b646f2" + } + ] + }, + { + "label": { + "@none": [ + "164v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_164v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_164v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_164v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a68bece9-76f4-48ef-ae2f-4f65c92130e4" + } + ] + }, + { + "label": { + "@none": [ + "165r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_165r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_165r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_165r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/faff3cc2-dc2d-47f7-a43d-7ca589966b62" + } + ] + }, + { + "label": { + "@none": [ + "165v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_165v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_165v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_165v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5f82e22c-4b62-4606-81ba-8c50f1b7cc1f" + } + ] + }, + { + "label": { + "@none": [ + "166r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_166r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_166r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_166r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e8297ef0-8a4c-43f3-b1f4-3f8f1cdf5952" + } + ] + }, + { + "label": { + "@none": [ + "166v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_166v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_166v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_166v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9426022c-6ee0-4842-b88f-e93bf3fbab3e" + } + ] + }, + { + "label": { + "@none": [ + "167r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_167r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_167r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_167r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6e5bad0-3935-4d95-a420-b9e872db7999" + } + ] + }, + { + "label": { + "@none": [ + "167v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_167v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_167v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_167v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/71896145-349a-48f3-a2a2-fbbbb2128026" + } + ] + }, + { + "label": { + "@none": [ + "168r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_168r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_168r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_168r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a3fe010d-38e6-4c4d-aa28-4e40ce8d626a" + } + ] + }, + { + "label": { + "@none": [ + "168v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_168v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_168v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_168v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0a6886e-be3b-41b8-bc0a-a187dbc5ab6e" + } + ] + }, + { + "label": { + "@none": [ + "169r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_169r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_169r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_169r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9215f01a-6caa-4f9e-a5b5-abdff98ff557" + } + ] + }, + { + "label": { + "@none": [ + "169v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_169v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_169v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_169v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5008b625-0344-45b0-9821-0de18ec33b80" + } + ] + }, + { + "label": { + "@none": [ + "170r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_170r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_170r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_170r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edb1c1c5-033c-4659-a213-6cfaaaecc2de" + } + ] + }, + { + "label": { + "@none": [ + "170v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_170v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_170v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_170v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/271893a6-a415-46ac-97fb-2015abe64afb" + } + ] + }, + { + "label": { + "@none": [ + "171r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_171r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_171r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_171r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/74cdb13b-f7d6-45af-97b9-0d0ecd5dd93a" + } + ] + }, + { + "label": { + "@none": [ + "171v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_171v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_171v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_171v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99bcfaf2-9370-4f1e-b608-64efe9d6fc38" + } + ] + }, + { + "label": { + "@none": [ + "172r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_172r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_172r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_172r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c10b6a17-a965-4313-8192-1a87fbe43c5f" + } + ] + }, + { + "label": { + "@none": [ + "172v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_172v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_172v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_172v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9b50b45-e3c3-4e37-8efa-6e1af53434d4" + } + ] + }, + { + "label": { + "@none": [ + "173r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_173r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_173r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_173r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3a41cf5-a397-403f-aadb-b4e91eda9f89" + } + ] + }, + { + "label": { + "@none": [ + "173v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_173v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_173v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_173v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf3ccf91-740d-4d47-927e-d9506646247d" + } + ] + }, + { + "label": { + "@none": [ + "174r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_174r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_174r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_174r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04edd4c5-6520-4f16-be31-377f8209876d" + } + ] + }, + { + "label": { + "@none": [ + "174v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_174v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_174v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_174v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34e9b874-90f2-4418-bf30-4d2f1a83b64b" + } + ] + }, + { + "label": { + "@none": [ + "175r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_175r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_175r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_175r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36859e9c-ea8e-473f-a35b-f878706ad869" + } + ] + }, + { + "label": { + "@none": [ + "175v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_175v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_175v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_175v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3fea7c89-6ca7-40d5-b40f-4107115e4763" + } + ] + }, + { + "label": { + "@none": [ + "176r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_176r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_176r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_176r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e479254c-3e22-403f-8cfb-367de91f3689" + } + ] + }, + { + "label": { + "@none": [ + "176v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_176v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_176v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_176v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd92c171-2809-4fe6-b6f4-13ad67b7dfe1" + } + ] + }, + { + "label": { + "@none": [ + "177r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_177r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_177r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_177r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/867e996d-5090-4b53-83eb-e8c0d9530985" + } + ] + }, + { + "label": { + "@none": [ + "177v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_177v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_177v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_177v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b84eebde-fdd1-46b5-8ba0-64d484131497" + } + ] + }, + { + "label": { + "@none": [ + "178r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_178r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_178r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_178r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6399cea2-3672-426d-84a9-95a7bba6e34e" + } + ] + }, + { + "label": { + "@none": [ + "178v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_178v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_178v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_178v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15c4e927-ecb6-402b-8323-4fa966bd7a31" + } + ] + }, + { + "label": { + "@none": [ + "179r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_179r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_179r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_179r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48246b7d-5601-4f0f-8283-007ff06267dd" + } + ] + }, + { + "label": { + "@none": [ + "179v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_179v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_179v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_179v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d69571f6-06c9-42e2-a2a7-e7656e480db3" + } + ] + }, + { + "label": { + "@none": [ + "180r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_180r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_180r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_180r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d6a6c27-f566-4788-a43d-eed666a9a72a" + } + ] + }, + { + "label": { + "@none": [ + "180v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_180v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_180v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_180v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d40862e-b971-484d-a0fc-580f25b93656" + } + ] + }, + { + "label": { + "@none": [ + "181r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_181r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_181r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_181r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0908b9e-1478-4ea2-81e1-efefcfef5fd1" + } + ] + }, + { + "label": { + "@none": [ + "181v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_181v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_181v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_181v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dc4a8b9b-134d-43d4-8dc6-fe8ef4078333" + } + ] + }, + { + "label": { + "@none": [ + "182r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_182r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_182r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_182r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ba6f33d-b0cb-4ee7-805d-0c35c9a57943" + } + ] + }, + { + "label": { + "@none": [ + "182v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_182v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_182v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_182v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d00d413-9f1d-4cd1-870a-f8a0e5b6209a" + } + ] + }, + { + "label": { + "@none": [ + "183r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_183r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_183r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_183r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/398a06a7-e54f-4e4b-8022-083b9176ab25" + } + ] + }, + { + "label": { + "@none": [ + "183v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_183v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_183v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_183v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a08f8528-1641-4603-b9bd-912b30263fa5" + } + ] + }, + { + "label": { + "@none": [ + "184r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_184r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_184r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_184r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/562b0d45-d78b-44d9-bca4-098bc3fcccf9" + } + ] + }, + { + "label": { + "@none": [ + "184v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_184v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_184v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_184v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc58b9b8-e6b7-4a70-b0f1-7358fee0928e" + } + ] + }, + { + "label": { + "@none": [ + "185r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_185r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_185r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_185r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e959b399-08fb-4f82-b2d8-f9058a4fc66b" + } + ] + }, + { + "label": { + "@none": [ + "185v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_185v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_185v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_185v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52b0f1ee-9672-4bae-8e94-948c3ed08028" + } + ] + }, + { + "label": { + "@none": [ + "186r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_186r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_186r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_186r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d837089a-8ca8-43d9-ba30-d9066d5e928a" + } + ] + }, + { + "label": { + "@none": [ + "186v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_186v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_186v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_186v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f260cd9-beab-40d0-a96c-3291dc287cf7" + } + ] + }, + { + "label": { + "@none": [ + "187r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_187r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_187r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_187r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0af816ed-9dd7-45d1-a409-3d2ae3b81181" + } + ] + }, + { + "label": { + "@none": [ + "187v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_187v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_187v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_187v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91f11366-a7a7-415b-9121-a97d749877c7" + } + ] + }, + { + "label": { + "@none": [ + "188r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_188r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_188r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_188r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4629186e-66c8-4ca1-a2d3-ff3bed5f3aad" + } + ] + }, + { + "label": { + "@none": [ + "188v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_188v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_188v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_188v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18557b6c-13d5-4ac6-89e0-9e51f493c16f" + } + ] + }, + { + "label": { + "@none": [ + "189r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_189r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_189r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_189r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7e28662-b605-4529-b33e-08861d199440" + } + ] + }, + { + "label": { + "@none": [ + "189v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_189v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_189v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_189v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31f3326a-9739-4a5d-a0cf-f21e4233d3ba" + } + ] + }, + { + "label": { + "@none": [ + "190r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_190r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_190r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_190r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5b0bbed-a7b8-4572-a9f5-2022ff26acd1" + } + ] + }, + { + "label": { + "@none": [ + "190v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_190v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_190v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_190v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/afdc42c5-c814-4d1e-b047-9345874464d7" + } + ] + }, + { + "label": { + "@none": [ + "191r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_191r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_191r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_191r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae0f4959-49ac-4a8b-ba70-5145c2b78026" + } + ] + }, + { + "label": { + "@none": [ + "191v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_191v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_191v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_191v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac9a80ef-c13b-4abd-bc45-ce13e89b09a4" + } + ] + }, + { + "label": { + "@none": [ + "192r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_192r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_192r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_192r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22becaa9-296e-4516-9082-6f285eac7dca" + } + ] + }, + { + "label": { + "@none": [ + "192v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_192v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_192v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_192v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38aa1b58-14b6-4ad0-944d-53b9d648b3c0" + } + ] + }, + { + "label": { + "@none": [ + "193r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_193r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_193r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_193r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62c0daa4-8eed-42ea-a5e6-1e59c4a1d5f0" + } + ] + }, + { + "label": { + "@none": [ + "193v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_193v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_193v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_193v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b177fa0-a9bb-4a4b-a65b-7e6c6eb27d31" + } + ] + }, + { + "label": { + "@none": [ + "Rear paste-down" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e006.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e006.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e006.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e006.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e006.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0773d7f6-ddd5-467e-9f71-826dff06c1d7" + } + ] + }, + { + "label": { + "@none": [ + "Back cover" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e003.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e003.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e003.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e003.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e003.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7e2c894-b40a-4eb6-b1d6-fdce3297ac37" + } + ] + }, + { + "label": { + "@none": [ + "Spine" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e002.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e002.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e002.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e002.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e002.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d134eacf-a7de-4196-82f4-82a59ced9a28" + } + ] + }, + { + "label": { + "@none": [ + "Fore edge" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e004.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e004.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e004.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e004.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e004.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e19fe43-70b8-4a09-9139-fcec78229263" + } + ] + }, + { + "label": { + "@none": [ + "Head" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e007.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e007.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e007.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e007.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e007.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0542ffc3-16d0-4fdd-8084-0cd8e4038aed" + } + ] + }, + { + "label": { + "@none": [ + "Tail" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e008.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e008.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e008.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e008.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e008.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d9d05f25-d891-4a3c-a5d8-d43b6e106d07" + } + ] + }, + { + "label": { + "@none": [ + "Ruler on binding" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassE.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_MassE.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassE.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_MassE.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_MassE.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34dce263-2297-426e-a993-8928d03d9ac2" + } + ] + }, + { + "label": { + "@none": [ + "Ruler on page" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassS.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_MassS.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassS.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_MassS.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_MassS.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/009812ea-e565-48c7-b126-d834dfc12aff" + } + ] + }, + { + "label": { + "@none": [ + "QP card on binding" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilE.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_ProfilE.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilE.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_ProfilE.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_ProfilE.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8667532-fffe-47e4-8533-e8d46af817bb" + } + ] + }, + { + "label": { + "@none": [ + "QP card on page" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilS.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_ProfilS.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilS.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_ProfilS.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_ProfilS.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61d5e290-6745-4154-8b7f-13f315a33604" + } + ] + }, + { + "label": { + "@none": [ + "Digital Colorchecker" + ] + }, + "height": 4872, + "width": 6496, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilSG.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_ProfilSG.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilSG.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4872, + "width": 6496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_ProfilSG.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_ProfilSG.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b74c8f5c-bb0f-4d95-8519-59054404d320" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "2_to_3_converted_manifests_www2_dhii_jp_nijl_nijl0018_099_0014_manifest_tags": { + "label": { + "@none": [ + "唐糸草紙" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Author" + ] + }, + "value": { + "@none": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "ja": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "From: IDR in NII http://www.nii.ac.jp/dsc/idr/nijl/nijl.html" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "" + ] + } + } + ], + "viewingDirection": "right-to-left", + "logo": [ + { + "id": "http://www.nijl.ac.jp/pages/images/footer_icon.gif", + "type": "Image" + } + ], + "seeAlso": [ + { + "id": "http://www2.dhii.jp/nijl_opendata/NIJL0018/099-0014/", + "type": "Dataset" + } + ], + "type": "Manifest", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "rights": "http://creativecommons.org/licenses/by-sa/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "http://www.nijl.ac.jp/index_e.html" + ] + } + }, + "behavior": [ + "paged" + ], + "homepage": { + "format": "text/html", + "type": "Text", + "id": "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html" + }, + "partOf": [ + { + "id": "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html", + "type": "Text" + } + ], + "items": [ + { + "label": { + "@none": [ + "p. 1" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano1", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be1c28f6-7ec7-4a05-a85a-b15320a56822" + } + ] + }, + { + "label": { + "@none": [ + "p. 2" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano2", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00001.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00001.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/905c468b-d65a-4703-bb97-51382f695051" + } + ] + }, + { + "label": { + "@none": [ + "p. 3" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano3", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00002.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00002.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44f03f45-da75-4fa5-b710-6aec0e82de87" + } + ] + }, + { + "label": { + "@none": [ + "p. 4" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano4", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00003.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00003.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18194b84-6f17-48fa-941d-c42eaeb567ea" + } + ] + }, + { + "label": { + "@none": [ + "p. 5" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p5", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p5.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano5", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00004.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00004.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/864d6dd4-017c-41e6-9bb3-89c90abd846a" + } + ] + }, + { + "label": { + "@none": [ + "p. 6" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p6", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p6.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano6", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00005.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00005.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe4c92e3-88ed-45ef-9718-de09d781a557" + } + ] + }, + { + "label": { + "@none": [ + "p. 7" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p7", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p7.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano7", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00006.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00006.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68d2dcf1-309d-41d7-b206-c1923b63b1ea" + } + ] + }, + { + "label": { + "@none": [ + "p. 8" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p8", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p8.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano8", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00007.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00007.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b742fd4c-3226-4512-9dfa-2ce89a723d3d" + } + ] + }, + { + "label": { + "@none": [ + "p. 9" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p9", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p9.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano9", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00008.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00008.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8de80fe2-9fb7-45d5-9e42-b511afaa8237" + } + ] + }, + { + "label": { + "@none": [ + "p. 10" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p10", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p10.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano10", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00009.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00009.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c02537b2-0d7d-4408-aacb-e7edfa9889b0" + } + ] + }, + { + "label": { + "@none": [ + "p. 11" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p11", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p11.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano11", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00010.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00010.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d0a724b-064e-4b76-aa6c-aa903f49bf9f" + } + ] + }, + { + "label": { + "@none": [ + "p. 12" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p12", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p12.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano12", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00011.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00011.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/468e9e16-927d-4f99-ad9e-33c261eeb27e" + } + ] + }, + { + "label": { + "@none": [ + "p. 13" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p13", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p13.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano13", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p13", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00012.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00012.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6071ed82-2cfa-43b3-8eae-606845d2aa9a" + } + ] + }, + { + "label": { + "@none": [ + "p. 14" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p14", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p14.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano14", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00013.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00013.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4922f1cd-5009-470b-8918-dbee4c13a592" + } + ] + }, + { + "label": { + "@none": [ + "p. 15" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p15", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p15.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano15", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p15", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00014.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00014.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/407962ea-9ed5-49e0-b375-b5a042741d55" + } + ] + }, + { + "label": { + "@none": [ + "p. 16" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p16", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p16.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano16", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p16", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00015.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00015.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2bf3221d-21e9-412c-9fda-95f85392ea22" + } + ] + }, + { + "label": { + "@none": [ + "p. 17" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p17", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p17.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano17", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p17", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00016.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00016.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a17b9084-912f-4f63-8dbe-267dcf42d93c" + } + ] + }, + { + "label": { + "@none": [ + "p. 18" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p18", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p18.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano18", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p18", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00017.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00017.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f35cb4f-4a08-4581-8f82-f2159fb46466" + } + ] + }, + { + "label": { + "@none": [ + "p. 19" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p19", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano19", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p19", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00018.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00018.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f73c21f6-92f3-490f-9b4e-f16243255436" + } + ] + }, + { + "label": { + "@none": [ + "p. 20" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p20", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano20", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p20", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00019.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00019.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee3d5852-7b5a-421f-a564-a899fcaa6396" + } + ] + }, + { + "label": { + "@none": [ + "p. 21" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p21", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano21", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p21", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00020.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00020.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5bb99e8-8a93-41d8-87b9-1063b3acd745" + } + ] + }, + { + "label": { + "@none": [ + "p. 22" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p22", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano22", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p22", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00021.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00021.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3875eeb7-f72c-4f86-9e14-1f7fa002b26a" + } + ] + }, + { + "label": { + "@none": [ + "p. 23" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p23", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano23", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p23", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00022.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00022.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/763f160c-994b-48ea-ace3-ac50ed154d64" + } + ] + }, + { + "label": { + "@none": [ + "p. 24" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p24", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano24", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p24", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00023.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00023.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59ac2d49-2b8d-407c-a69c-f817cdb9e8b9" + } + ] + }, + { + "label": { + "@none": [ + "p. 25" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p25", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p25.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano25", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p25", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00024.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00024.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea5f5453-4c42-43d2-815d-16c0030126ea" + } + ] + }, + { + "label": { + "@none": [ + "p. 26" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p26", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p26.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano26", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p26", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00025.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00025.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d953b83-9ce7-4cd5-9532-1c3dd73904de" + } + ] + }, + { + "label": { + "@none": [ + "p. 27" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p27", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p27.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano27", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p27", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00026.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00026.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0b7e61a-fe77-4ca4-9105-1069cbfd013d" + } + ] + }, + { + "label": { + "@none": [ + "p. 28" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p28", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p28.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano28", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p28", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00027.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00027.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8424ad7-b09a-429e-a1e9-f09c01fa194d" + } + ] + }, + { + "label": { + "@none": [ + "p. 29" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p29", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p29.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano29", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p29", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00028.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00028.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/827dec7b-9f24-4287-a969-23d713498488" + } + ] + }, + { + "label": { + "@none": [ + "p. 30" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p30", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p30.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano30", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p30", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00029.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00029.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06025b60-9147-4cfd-9b85-ad5efbac58a1" + } + ] + }, + { + "label": { + "@none": [ + "p. 31" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p31", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p31.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano31", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p31", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00030.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00030.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e6353c4-9d52-42c0-b87c-c07f4d874b50" + } + ] + }, + { + "label": { + "@none": [ + "p. 32" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p32", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p32.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano32", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p32", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00031.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00031.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7ec1dfa6-a85a-4136-8b18-6c75fa401e60" + } + ] + }, + { + "label": { + "@none": [ + "p. 33" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p33", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p33.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano33", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p33", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00032.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00032.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb813dd4-cf18-43bc-bdfd-4c5dea396cc0" + } + ] + }, + { + "label": { + "@none": [ + "p. 34" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p34", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p34.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano34", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p34", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00033.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00033.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2221646b-8819-4514-b44d-c90fa382666f" + } + ] + }, + { + "label": { + "@none": [ + "p. 35" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p35", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p35.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano35", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p35", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00034.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00034.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e963cff-6dcc-4df4-bda6-8701a6a9bd46" + } + ] + }, + { + "label": { + "@none": [ + "p. 36" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p36", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p36.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano36", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p36", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00035.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00035.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cd3a47b9-843d-45fb-9faf-f2774f047ded" + } + ] + }, + { + "label": { + "@none": [ + "p. 37" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p37", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p37.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano37", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p37", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00036.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00036.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b3017a40-0575-4bed-8a8b-fdd07f1c13cf" + } + ] + }, + { + "label": { + "@none": [ + "p. 38" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p38", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p38.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano38", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p38", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00037.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00037.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe6da15e-8b49-44be-8cc7-b5ab85d98c76" + } + ] + }, + { + "label": { + "@none": [ + "p. 39" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p39", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p39.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano39", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p39", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00038.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00038.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df295177-ff96-4382-b320-48c806c54502" + } + ] + }, + { + "label": { + "@none": [ + "p. 40" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p40", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p40.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano40", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p40", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00039.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00039.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fdba19fe-9431-40a3-940c-506775215066" + } + ] + }, + { + "label": { + "@none": [ + "p. 41" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p41", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p41.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano41", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p41", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00040.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00040.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55f4d884-42a5-46cc-856e-f5b6c19ee793" + } + ] + }, + { + "label": { + "@none": [ + "p. 42" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p42", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p42.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano42", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p42", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00041.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00041.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6987c7e-1543-4b93-a66c-e514c2e9a9de" + } + ] + }, + { + "label": { + "@none": [ + "p. 43" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p43", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p43.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano43", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p43", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00042.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00042.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eefca492-693c-45d5-a832-8af6531a6088" + } + ] + }, + { + "label": { + "@none": [ + "p. 44" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p44", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p44.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano44", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p44", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00043.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00043.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b11c4244-7aae-4067-a0ce-bce1558908ee" + } + ] + }, + { + "label": { + "@none": [ + "p. 45" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p45", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p45.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano45", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p45", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00044.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00044.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d435cfef-9020-467a-a08f-670ea78f2da0" + } + ] + }, + { + "label": { + "@none": [ + "p. 46" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p46", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p46.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano46", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p46", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00045.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00045.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/210e528d-2d0d-40eb-a6c0-ee9e4cda1323" + } + ] + }, + { + "label": { + "@none": [ + "p. 47" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p47", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p47.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano47", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p47", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00046.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00046.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a74bb21f-7d77-4496-8749-3e2905c3e540" + } + ] + }, + { + "label": { + "@none": [ + "p. 48" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p48", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano48", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p48", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00047.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00047.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d0b3462-be0c-4b47-b52d-0ae8c929932b" + } + ] + }, + { + "label": { + "@none": [ + "p. 49" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p49", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano49", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p49", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00048.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00048.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/216e8ae6-65ba-46f6-a598-ee72db2836ed" + } + ] + }, + { + "label": { + "@none": [ + "p. 50" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p50", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano50", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p50", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00049.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00049.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0edaca8-e4eb-4cf5-a260-3bc2833cb0bd" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" + } satisfies Manifest4, + "cookbook_0001_mvm_image": { + "@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": [ + "Single Image Example" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "type": "Canvas", + "height": 1800, + "width": 1200, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0002_mvm_audio": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Audio Example 1" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "type": "Canvas", + "duration": 1985.024, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page/annotation", + "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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0003_mvm_video": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Video Example 3" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "type": "Canvas", + "height": 360, + "width": 480, + "duration": 572.034, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0004_canvas_size": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Still image from an opera performance at Indiana University" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "type": "Canvas", + "height": 1080, + "width": 1920, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "format": "image/png", + "height": 360, + "width": 640 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0005_image_service": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Canvas with a single IIIF image" + ] + }, + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0006_text_language": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Whistler's Mother" + ], + "fr": [ + "La Mère de Whistler" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Creator" + ], + "fr": [ + "Auteur" + ] + }, + "value": { + "none": [ + "Whistler, James Abbott McNeill" + ] + } + }, + { + "label": { + "en": [ + "Subject" + ], + "fr": [ + "Sujet" + ] + }, + "value": { + "en": [ + "McNeill Anna Matilda, mother of Whistler (1804-1881)" + ], + "fr": [ + "McNeill Anna Matilda, mère de Whistler (1804-1881)" + ] + } + } + ], + "summary": { + "en": [ + "Arrangement in Grey and Black No. 1, also called Portrait of the Artist's Mother." + ], + "fr": [ + "Arrangement en gris et noir n°1, also called Portrait de la mère de l'artiste." + ] + }, + "requiredStatement": { + "label": { + "en": [ + "Held By" + ], + "fr": [ + "Détenu par" + ] + }, + "value": { + "none": [ + "Musée d'Orsay, Paris, France" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "type": "Canvas", + "width": 1114, + "height": 991, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 1114, + "height": 991, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0007_string_formats": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Author" + ] + }, + "value": { + "none": [ + "Glen Robson" + ] + } + } + ], + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 " + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0008_rights": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

" + ] + }, + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 " + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0009_book_1": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simple Manifest - Book" + ] + }, + "behavior": [ + "paged" + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Frontispiece" + ] + }, + "width": 3186, + "height": 4612, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Title page" + ] + }, + "width": 3204, + "height": 4613, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "width": 3174, + "height": 4578, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Bookplate" + ] + }, + "width": 3198, + "height": 4632, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0010_book_2_viewing_direction_manifest_rtl": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "type": "Manifest", + "label": { + "en": [ + "Book with Right-to-Left Viewing Direction" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "pages 1–2" + ] + }, + "width": 6062, + "height": 4804, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6062, + "height": 4804, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "pages 3–4" + ] + }, + "width": 6127, + "height": 4776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6127, + "height": 4776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "pages 5–6" + ] + }, + "width": 6124, + "height": 4751, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6124, + "height": 4751, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "back cover" + ] + }, + "width": 3510, + "height": 4808, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3510, + "height": 4808, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0010_book_2_viewing_direction_manifest_ttb": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "type": "Manifest", + "label": { + "en": [ + "Diary with Top-to-Bottom Viewing Direction" + ] + }, + "summary": { + "en": [ + "William Lewis Sachtleben was an American long-distance cyclist who rode across Asia from Istanbul to Peking in 1891 to 1892 with Thomas Gaskell Allen Jr., his classmate from Washington University. This was part of a longer journey that began the day after they had graduated from college, when they travelled to New York and on to Liverpool; in all they travelled 15,044 miles by bicycle, 'the longest continuous land journey ever made around the world' as reported in their book Across Asia on a bicycle (1895). Sachtleben documented his travels with photographs and diaries, the latter of which he numbered sequentially. The diary of notebook 'No. 10' covers a portion of their journey through the Armenian area of Turkey from April 12 to May 9 (there is a 2-page reading list at the end). During this time they rode from Ankara (Angora in the diary) to Sivas, where they stayed for ten days while Allen had a bout of typhoid fever, and the first half of a ten-day excursion to Merzifon (Mersovan in the diary), taken by Sachtleben to give Allen additional time to recover." + ] + }, + "viewingDirection": "top-to-bottom", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas", + "label": { + "en": [ + "image 1" + ] + }, + "width": 2251, + "height": 3152, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2251, + "height": 3152, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "type": "Canvas", + "label": { + "en": [ + "image 2" + ] + }, + "width": 2268, + "height": 3135, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2268, + "height": 3135, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "type": "Canvas", + "label": { + "en": [ + "image 3" + ] + }, + "width": 2274, + "height": 3135, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2274, + "height": 3135, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "type": "Canvas", + "label": { + "en": [ + "image 4" + ] + }, + "width": 2268, + "height": 3135, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2268, + "height": 3135, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0011_book_3_behavior_manifest_continuous": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "type": "Manifest", + "label": { + "gez": [ + "Ms. 21 Māzemurā Dāwit, Asmat [መዝሙረ ዳዊት]" + ] + }, + "behavior": [ + "continuous" + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "type": "Canvas", + "label": { + "en": [ + "Section 1 [Recto]" + ] + }, + "width": 11368, + "height": 1592, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 11368, + "height": 1592, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", + "type": "Canvas", + "label": { + "en": [ + "Section 2 [Recto]" + ] + }, + "width": 11608, + "height": 1536, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 11608, + "height": 1536, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", + "type": "Canvas", + "label": { + "en": [ + "Section 3 [Recto]" + ] + }, + "width": 10576, + "height": 1504, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 10576, + "height": 1504, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", + "type": "Canvas", + "label": { + "en": [ + "Section 4 [Recto]" + ] + }, + "width": 2488, + "height": 1464, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2488, + "height": 1464, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0011_book_3_behavior_manifest_individuals": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "type": "Manifest", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "behavior": [ + "individuals" + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas", + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 3375, + "height": 2250, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "type": "Canvas", + "label": { + "en": [ + "2v, 3r" + ] + }, + "width": 3375, + "height": 2250, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "type": "Canvas", + "label": { + "en": [ + "3v, 4r" + ] + }, + "width": 3375, + "height": 2250, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "type": "Canvas", + "label": { + "en": [ + "4v, 5r" + ] + }, + "width": 3375, + "height": 2250, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0013_placeholdercanvas": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Video recording of Donizetti's _The Elixer of Love_" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "type": "Canvas", + "duration": 7278.466, + "width": 640, + "height": 360, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video", + "duration": 7278.466, + "width": 640, + "height": 360, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "type": "Canvas" + } + ] + } + ] + } + ], + "placeholderContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas", + "width": 640, + "height": 360, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "format": "image/png", + "width": 640, + "height": 360 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas" + } + ] + } + ] + } + ] + } + } + ] + } satisfies Manifest4, + "cookbook_0014_accompanyingcanvas": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Partial audio recording of Gustav Mahler's _Symphony No. 3_" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Gustav Mahler, Symphony No. 3, CD 1" + ] + }, + "duration": 1985.024, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "duration": 1985.024, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "accompanyingContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas", + "label": { + "en": [ + "First page of score for Gustav Mahler, Symphony No. 3" + ] + }, + "height": 998, + "width": 772, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 998, + "width": 772, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + } + ] + } + ] + } + ] + } + } + ] + } satisfies Manifest4, + "cookbook_0015_start": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Video of a 30-minute digital clock" + ] + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas-start/segment1", + "type": "SpecificResource", + "source": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "selector": { + "type": "PointSelector", + "t": 120.5 + } + }, + "rights": "http://creativecommons.org/licenses/by/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "The video was created by DrLex1 and was released using a Creative Commons Attribution license" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas", + "duration": 1801.055, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video", + "duration": 1801.055, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0017_transcription_av": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Volleyball for Boys" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Canvas", + "height": 1080, + "width": 1920, + "duration": 662.037, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 662.037 + } + ] + } + ] + } + ], + "rendering": [ + { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "type": "Text", + "label": { + "en": [ + "Transcript" + ] + }, + "format": "text/plain" + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0019_html_in_annotations": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "TextualBody", + "language": "de", + "format": "text/html", + "value": "

Göttinger Marktplatz mit Gänseliesel Brunnen Wikipedia logo

" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0021_tagging": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", + "language": "de", + "format": "text/plain" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1#xywh=265,661,1260,1239", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0022_linking_with_a_hotspot": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link", + "type": "Annotation", + "motivation": [ + "linking" + ], + "body": [ + { + "type": "TextualBody", + "language": "de", + "format": "text/plain", + "value": "A link to a close up of Gänseliesel-Brunnen fountain." + }, + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "type": "Manifest" + } + ] + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1#xywh=265,661,1260,1239", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas", + "height": 4032, + "width": 3024, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4032, + "width": 3024, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0024_book_4_toc": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Ethiopic Ms 10" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "f. 1r" + ] + }, + "height": 2504, + "width": 1768, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "f. 1v" + ] + }, + "height": 2512, + "width": 1792, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "f. 2r" + ] + }, + "height": 2456, + "width": 1792, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "f. 2v" + ] + }, + "height": 2440, + "width": 1760, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "f. 3r" + ] + }, + "height": 2416, + "width": 1776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas", + "label": { + "en": [ + "f. 3v" + ] + }, + "height": 2416, + "width": 1776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "type": "Range", + "label": { + "en": [ + "Table of Contents" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "type": "Range", + "label": { + "gez": [ + "Tabiba Tabiban [ጠቢበ ጠቢባን]" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "type": "Range", + "label": { + "gez": [ + "Arede'et [አርድዕት]" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "type": "Range", + "label": { + "en": [ + "Monday" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "type": "Range", + "label": { + "en": [ + "Tuesday" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0026_toc_opera": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas", + "width": 1920, + "height": 1080, + "duration": 7278.422, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 7278.422 + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "label": { + "it": [ + "Atto Primo" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05" + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24" + } + ] + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "label": { + "it": [ + "Atto Secondo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24" + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0029_metadata_anywhere": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "John Dee performing an experiment before Queen Elizabeth I." + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Glindoni, Henry Gillard, 1852-1913" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1800-1899" + ] + } + }, + { + "label": { + "en": [ + "Physical Description" + ] + }, + "value": { + "en": [ + "1 painting : oil on canvas ; canvas 152 x 244.4 cm" + ] + } + }, + { + "label": { + "en": [ + "Reference" + ] + }, + "value": { + "en": [ + "Wellcome Library no. 47369i" + ] + } + } + ], + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Wellcome Collection. Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Painting under natural light" + ] + }, + "height": 1271, + "width": 2000, + "metadata": [ + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The scene is the house at Mortlake of Dr John Dee (1527-1608). At the court of Queen Elizabeth I, Dee was revered for the range of his scientific knowledge, which embraced the fields of mathematics, navigation, geography, alchemy/chemistry, medicine and optics. In the painting he is showing the effect of combining two elements, either to cause combustion or to extinguish it. Behind him is his assistant Edward Kelly, wearing a long skullcap to conceal the fact that his ears had been cropped as a punishment for forgery." + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "X-ray view of painting" + ] + }, + "height": 1271, + "width": 2000, + "metadata": [ + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The painting originally showed Dee standing in a circle of skulls on the floor, stretching from the floor area in front of the Queen (on the left) to the floor near Edward Kelly (on the right). The skulls were at an early stage painted over, but have since become visible. Another pentimento is visible in the tapestry on the right: shelves containing monstrous animals are visible behind it. The pentimenti were clarified when the painting was X-rayed in 2015." + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0030_multi_volume_manifest_v1": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "type": "Manifest", + "label": { + "en": [ + "Seirō ehon nenjū gyōji : kan 1 | 青楼絵本年中行事 : 巻 1" + ] + }, + "behavior": [ + "individuals" + ], + "viewingDirection": "right-to-left", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Front cover" + ] + }, + "height": 5730, + "width": 4301, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5730, + "width": 4301, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Page spread 1" + ] + }, + "height": 5702, + "width": 7451, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5702, + "width": 7451, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Page spread 2" + ] + }, + "height": 5702, + "width": 7451, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5702, + "width": 7451, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Page spread 3" + ] + }, + "height": 5702, + "width": 7451, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5702, + "width": 7451, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Page spread 4" + ] + }, + "height": 5702, + "width": 7451, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5702, + "width": 7451, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0030_multi_volume_manifest_v2": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "type": "Manifest", + "label": { + "en": [ + "Seirō ehon nenjū gyōji : kan 2 | 青楼絵本年中行事 : 巻 2" + ] + }, + "behavior": [ + "individuals" + ], + "viewingDirection": "right-to-left", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Front cover" + ] + }, + "height": 5745, + "width": 4114, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 4114, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Page spread 1" + ] + }, + "height": 5745, + "width": 7253, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 7253, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Page spread 2" + ] + }, + "height": 5745, + "width": 7253, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 7253, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Page spread 3" + ] + }, + "height": 5745, + "width": 7253, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 7253, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Page spread 4" + ] + }, + "height": 5745, + "width": 7253, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 7253, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0031_bound_multivolume": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "type": "Manifest", + "label": { + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Front cover" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Inside front cover" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Vol. 1 title page" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Vol. 1 title page (verso)" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Vol. 2 title page" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Canvas", + "label": { + "en": [ + "Vol. 2 title page (verso)" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range", + "label": { + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "type": "Range", + "label": { + "en": [ + "Front Matter" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "type": "Range", + "label": { + "de": [ + "Erste Ausgabe. Begreift die Ceremonien der Lutheraner von der Augspurgischen Confession, der Reformirten, der Holländischen u. a. Kirchen" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "type": "Range", + "label": { + "de": [ + "Zweyte Ausgabe. Begreift die Ceremonien der Engl. hohen Kirche : Der Quacker, der Anabaptisten, der Adamiten, der Flagellanten, der Frey-Maurer, der Rhinsbürger..." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Canvas" + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0032_collection_manifest_01": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "type": "Manifest", + "label": { + "en": [ + "The Gulf Stream" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1899" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas", + "height": 3540, + "width": 5886, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3540, + "width": 5886, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0032_collection_manifest_02": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "type": "Manifest", + "label": { + "en": [ + "Northeaster" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1895" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas", + "height": 2572, + "width": 3764, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2572, + "width": 3764, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0033_choice": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "John Dee performing an experiment before Queen Elizabeth I." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "Canvas", + "height": 1271, + "width": 2000, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2000, + "height": 1271, + "label": { + "en": [ + "Natural Light" + ] + }, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2000, + "height": 1271, + "label": { + "en": [ + "X-Ray" + ] + }, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0035_foldouts": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Outlines of geology being the substance of a course of lectures delivered in the Theatre of the Royal Institution in the year 1816" + ] + }, + "behavior": [ + "paged" + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "type": "Canvas", + "height": 4429, + "width": 2533, + "label": { + "en": [ + "Front cover" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4429, + "width": 2533, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Inside front cover" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", + "type": "Canvas", + "height": 4278, + "width": 2197, + "label": { + "en": [ + "Foldout, folded" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4278, + "width": 2197, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", + "type": "Canvas", + "behavior": [ + "non-paged" + ], + "height": 1968, + "width": 3688, + "label": { + "en": [ + "Foldout, unfolded" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1968, + "width": 3688, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", + "type": "Canvas", + "height": 1968, + "width": 3688, + "label": { + "en": [ + "Foldout, folded (recto)" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1968, + "width": 3688, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Title page" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Back of title page" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Inside back cover" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Back cover" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0036_composition_from_multiple_images": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Folio from Grandes Chroniques de France, ca. 1460" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas", + "label": { + "none": [ + "f. 033v-034r [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]" + ] + }, + "height": 5412, + "width": 7216, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "label": { + "fr": [ + "Miniature [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]" + ] + }, + "width": 2138, + "height": 2414, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1#xywh=3949,994,1091,1232", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0040_image_rotation_service_manifest_css": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "type": "Manifest", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 2105, + "height": 1523, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "stylesheet": { + "type": "CssStylesheet", + "value": ".rotated { transform-origin: center; transform: rotate(90deg); }" + }, + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/sr1", + "type": "SpecificResource", + "styleClass": "rotated", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 1523, + "height": 2105, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0040_image_rotation_service_manifest_service": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", + "type": "Manifest", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 2105, + "height": 1523, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/v0001-image", + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 1523, + "height": 2105, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "selector": { + "type": "ImageApiSelector", + "rotation": "90" + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0046_rendering": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Alternative Representations Through Rendering" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "rendering": [ + { + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "type": "Text", + "label": { + "en": [ + "PDF version" + ] + }, + "format": "application/pdf" + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3497, + "height": 4823, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "pages 1–2" + ] + }, + "width": 6062, + "height": 4804, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6062, + "height": 4804, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "pages 3–4" + ] + }, + "width": 6127, + "height": 4776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6127, + "height": 4776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "pages 5–6" + ] + }, + "width": 6124, + "height": 4751, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6124, + "height": 4751, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "back cover" + ] + }, + "width": 3510, + "height": 4808, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3510, + "height": 4808, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0047_homepage": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "type": "Manifest", + "label": { + "none": [ + "Laocöon" + ] + }, + "homepage": [ + { + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "type": "Text", + "label": { + "en": [ + "Home page at the Getty Museum Collection" + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas", + "label": { + "none": [ + "Front" + ] + }, + "height": 3000, + "width": 2315, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "profile": "level1" + } + ], + "height": 3000, + "width": 2315 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0053_seealso": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Linking to Structured Metadata" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "seeAlso": [ + { + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", + "type": "Dataset", + "label": { + "en": [ + "MODS metadata" + ] + }, + "format": "text/xml", + "profile": "http://www.loc.gov/mods/v3" + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "pages 1–2" + ] + }, + "width": 6062, + "height": 4804, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6062, + "height": 4804, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "pages 3–4" + ] + }, + "width": 6127, + "height": 4776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6127, + "height": 4776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "pages 5–6" + ] + }, + "width": 6124, + "height": 4751, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6124, + "height": 4751, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "back cover" + ] + }, + "width": 3510, + "height": 4808, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3510, + "height": 4808, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0064_opera_one_canvas": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Date Issued" + ] + }, + "value": { + "en": [ + "2019" + ] + } + }, + { + "label": { + "en": [ + "Publisher" + ] + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + "width": 1920, + "height": 1080, + "duration": 7278.422, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,3971.24", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3971.24 + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3307.22 + } + ] + } + ] + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image" + } + ] + } + ], + "structures": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "label": { + "it": [ + "Atto Primo" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05" + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24" + } + ] + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "label": { + "it": [ + "Atto Secondo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422" + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0065_opera_multiple_canvases": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Date Issued" + ] + }, + "value": { + "en": [ + "2019" + ] + } + }, + { + "label": { + "en": [ + "Publisher" + ] + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas", + "width": 1920, + "height": 1080, + "duration": 3971.24, + "label": { + "en": [ + "Atto Primo" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3971.24 + } + ] + } + ] + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "type": "Canvas", + "width": 1920, + "height": 1080, + "duration": 3307.22, + "label": { + "en": [ + "Atto Secondo" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3307.22 + } + ] + } + ] + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", + "type": "Image" + } + ] + } + ], + "structures": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "label": { + "en": [ + "Atto Primo" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05" + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24" + } + ] + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "label": { + "en": [ + "Atto Secondo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22" + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0074_multiple_language_captions": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "Per voi signore. Modelli francesi" + ], + "en": [ + "For ladies. French models" + ] + }, + "rights": "http://rightsstatements.org/vocab/InC/1.0/", + "requiredStatement": { + "label": { + "en": [ + "Rights" + ] + }, + "value": { + "en": [ + "All rights reserved Cinecittà Luce spa" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas", + "height": 384, + "width": 288, + "duration": 65, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "type": "Video", + "height": 384, + "width": 288, + "duration": 65, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", + "type": "Text", + "format": "text/vtt", + "label": { + "en": [ + "Captions in WebVTT format" + ] + }, + "language": "en" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", + "type": "Text", + "format": "text/vtt", + "label": { + "it": [ + "Sottotitoli in formato WebVTT" + ] + }, + "language": "it" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0117_add_image_thumbnail": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Playbill Cover with Manifest Thumbnail" + ] + }, + "summary": { + "en": [ + "Cover of playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "thumbnail": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "profile": "level1", + "height": 4823, + "width": 3497, + "extraFormats": [ + "png" + ], + "extraQualities": [ + "default", + "color", + "gray" + ], + "protocol": "http://iiif.io/api/image", + "tiles": [ + { + "height": 512, + "scaleFactors": [ + 1, + 2, + 4, + 8 + ], + "width": 512 + } + ] + } + ] + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas", + "label": { + "en": [ + "front cover with color bar" + ] + }, + "width": 4520, + "height": 5312, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5312, + "width": 4520, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0118_multivalue": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "type": "Manifest", + "label": { + "fr": [ + "Arrangement en gris et noir no 1" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Alternative titles" + ] + }, + "value": { + "en": [ + "Whistler's Mother", + "Arrangement in Grey and Black No. 1" + ], + "fr": [ + "Portrait de la mère de l'artiste", + "La Mère de Whistler" + ] + } + } + ], + "summary": { + "en": [ + "A painting in oil on canvas created by the American-born painter James McNeill Whistler, in 1871." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas", + "width": 1114, + "height": 991, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "type": "Image", + "format": "image/jpeg" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0135_annotating_point_in_canvas": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Using a point selector for annotating a location on a map." + ] + }, + "summary": { + "en": [ + "A map containing an point with an annotation of the location." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas", + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet" + ] + }, + "height": 7072, + "width": 5212, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7072, + "width": 5212, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "TextualBody", + "value": "Town Creek Aqueduct", + "language": "en", + "format": "text/plain" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas" + }, + "selector": { + "type": "PointSelector", + "x": 3385, + "y": 1464 + } + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0139_geolocate_canvas_fragment": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Recipe Manifest for #139" + ] + }, + "summary": { + "en": [ + "A IIIF Presentation API 3.0 Manifest containing a GeoJSON-LD Web Annotation which targets a Canvas fragment." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas", + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet" + ] + }, + "width": 5212, + "height": 7072, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "profile": "level1" + } + ], + "width": 5212, + "height": 7072 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", + "type": "Feature", + "properties": { + "label": { + "en": [ + "Targeted Map from Chesapeake and Ohio Canal Pamphlet" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.019853, + 38.913101 + ], + [ + -77.110013, + 38.843254 + ], + [ + -77.284698, + 38.997574 + ], + [ + -77.188911, + 39.062648 + ] + ] + ] + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json#xywh=920,3600,1510,3000", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0154_geo_extension": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "Bronzo Laocoonte e i suoi figli" + ] + }, + "navPlace": { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature-collection/1", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature/1", + "type": "Feature", + "properties": { + "label": { + "en": [ + "The Laocoön Bronze" + ], + "it": [ + "Bronzo Laocoonte e i suoi figli" + ] + } + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.4745559, + 34.0776376 + ] + } + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas", + "height": 3000, + "width": 2315, + "label": { + "en": [ + "Front of Bronze" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3000, + "width": 2315, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0202_start_canvas": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Multiple Related Images (Book, etc.)" + ] + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Frontispiece" + ] + }, + "width": 3186, + "height": 4612, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Title page" + ] + }, + "width": 3204, + "height": 4613, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "width": 3174, + "height": 4578, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Bookplate" + ] + }, + "width": 3198, + "height": 4632, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0219_using_caption_file": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Lunchroom Manners" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas", + "height": 360, + "width": 480, + "duration": 572.034, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "type": "Text", + "format": "text/vtt", + "label": { + "en": [ + "Captions in WebVTT format" + ] + }, + "language": "en" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0229_behavior_ranges": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json ", + "type": "Manifest", + "label": { + "en": [ + "Video navigation with thumbnails in a Range" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "type": "Canvas", + "height": 1080, + "width": 1920, + "duration": 3307.22, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3307.22 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "type": "Range", + "label": { + "en": [ + "Thumbnail Navigation" + ] + }, + "behavior": [ + "thumbnail-nav" + ], + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1.1", + "behavior": [ + "no-nav" + ], + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=0,9" + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/2", + "label": { + "en": [ + "9s – 305s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=9,305" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-01.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/3", + "label": { + "en": [ + "305s – 610s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=305,610" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-02.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/4", + "label": { + "en": [ + "610s – 915s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=610,915" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-03.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/5", + "label": { + "en": [ + "915s – 1220s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=915,1220" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-04.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/6", + "label": { + "en": [ + "1220s – 1525s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1220,1525" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-05.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/7", + "label": { + "en": [ + "1525s – 1830s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1525,1830" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-06.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/8", + "label": { + "en": [ + "1830s – 2135s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1830,2135" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-07.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/9", + "label": { + "en": [ + "2135s – 2440s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2135,2440" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-08.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/10", + "label": { + "en": [ + "2440s – 2745s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2440,2745" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-09.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/11", + "label": { + "en": [ + "2745s – end" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2745,3307.22" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-10.png", + "type": "Image", + "format": "image/png", + "width": 2250, + "height": 1266 + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0230_navdate_navdate_map_1_manifest": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "type": "Manifest", + "label": { + "en": [ + "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide" + ] + }, + "navDate": "1987-01-01T00:00:00+00:00", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "1987 Map, recto and verso, with a date of publication" + ] + }, + "height": 7072, + "width": 5212, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7072, + "width": 5212, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0230_navdate_navdate_map_2_manifest": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "type": "Manifest", + "label": { + "en": [ + "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide" + ] + }, + "navDate": "1986-01-01T00:00:00+00:00", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "1986 Map, recto and verso, with a date of publication" + ] + }, + "height": 1765, + "width": 1286, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1765, + "width": 1286, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0234_provider": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Playbill Cover" + ] + }, + "summary": { + "en": [ + "Cover of playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV, and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "provider": [ + { + "id": "https://id.loc.gov/authorities/n79055331", + "type": "Agent", + "label": { + "en": [ + "UCLA Library" + ] + }, + "homepage": [ + { + "id": "https://digital.library.ucla.edu/", + "type": "Text", + "label": { + "en": [ + "UCLA Library Digital Collections" + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "logo": [ + { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "type": "Image", + "service": [ + { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", + "type": "ImageService3", + "profile": "level2", + "width": 1200, + "height": 502, + "sizes": [ + { + "width": 300, + "height": 126 + }, + { + "width": 600, + "height": 251 + }, + { + "width": 1200, + "height": 502 + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "type": "Dataset", + "label": { + "en": [ + "US Library of Congress data about the UCLA Library" + ] + }, + "format": "application/xml", + "profile": "http://www.loc.gov/mads/v2" + } + ] + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas", + "label": { + "en": [ + "front cover with color bar" + ] + }, + "width": 4520, + "height": 5312, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 4520, + "height": 5312, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0240_navplace_on_canvases": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Laocöon, geolocated sculpture and painting." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas", + "height": 3000, + "width": 2315, + "label": { + "en": [ + "Front of Bronze" + ] + }, + "navPlace": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/1", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/1", + "type": "Feature", + "properties": { + "label": { + "en": [ + "Current Location of the Laocoön Bronze" + ], + "it": [ + "Ubicazione attuale del Bronzo Laocoonte e i suoi figli" + ] + } + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.4745559, + 34.0776376 + ] + } + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3000, + "width": 2315, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "type": "Canvas", + "height": 3259, + "width": 4096, + "label": { + "en": [ + "Painting" + ] + }, + "navPlace": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/2", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/2", + "type": "Feature", + "properties": { + "label": { + "en": [ + "Current Location of Painting" + ] + } + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0199025, + 38.8920717 + ] + } + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3259, + "width": 4096, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0258_tagging_external_resource": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "SpecificResource", + "source": "http://www.wikidata.org/entity/Q18624915" + }, + { + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", + "format": "text/plain", + "language": "de" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1#xywh=749,1054,338,460", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0261_non_rectangular_commenting": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", + "language": "de", + "format": "text/plain" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + } + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0266_full_canvas_annotation": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "TextualBody", + "language": "de", + "format": "text/plain", + "value": "Göttinger Marktplatz mit Gänseliesel Brunnen" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0269_embedded_or_referenced_annotations": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "AnnotationPage" + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0283_missing_image": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Ethiopic Ms 10" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "f. 1r" + ] + }, + "height": 2504, + "width": 1768, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "f. 1v — MISSING" + ] + }, + "height": 2504, + "width": 1768, + "metadata": [ + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Image unavailable or does not exist" + ] + } + } + ], + "items": [] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "f. 2r" + ] + }, + "height": 2456, + "width": 1792, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "f. 2v" + ] + }, + "height": 2440, + "width": 1760, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0299_region": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Berliner Tageblatt article, 'Ein neuer Sicherungsplan?'" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Canvas", + "height": 2080, + "width": 1768, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/body/b1", + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4999, + "width": 3536, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "profile": "level1", + "type": "ImageService3" + } + ] + }, + "selector": { + "type": "ImageApiSelector", + "region": "1768,2423,1768,2080" + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0306_linking_annotations_to_manifests": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage" + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0309_annotation_collection": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "type": "Manifest", + "label": { + "de": [ + "Berliner Tageblatt - 1925-02-16" + ] + }, + "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/cookbook/recipe/0309-annotation-collection/canvas/p1", + "type": "Canvas", + "label": { + "none": [ + "p. 1" + ] + }, + "height": 5000, + "width": 3602, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "type": "AnnotationPage", + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "type": "AnnotationCollection", + "label": { + "en": [ + "Newspaper layout markup" + ] + }, + "total": 8, + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json" + } + ], + "next": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "type": "Canvas", + "label": { + "none": [ + "p. 2" + ] + }, + "height": 5000, + "width": 3602, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "type": "AnnotationPage", + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "type": "AnnotationCollection", + "label": { + "en": [ + "Newspaper layout markup" + ] + }, + "total": 8, + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json" + } + ], + "prev": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json" + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0326_annotating_image_layer": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Choice Example with layer specific annotation" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas", + "height": 1271, + "width": 2000, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "label": { + "en": [ + "Natural Light" + ] + }, + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg", + "type": "Image", + "label": { + "en": [ + "X-ray" + ] + }, + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "profile": "level1" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "TextualBody", + "value": "A group of skulls.", + "language": "en", + "format": "text/plain" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3" + }, + "selector": { + "type": "ImageApiSelector", + "region": "810,900,260,370", + "size": "2000,1271" + } + } + ] + } + ] + } + ] + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0346_multilingual_annotation_body": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Koto, chess, calligraphy, and painting" + ], + "ja": [ + "琴棋書画図屏風" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas", + "height": 31722, + "width": 70399, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/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": 31722, + "width": 70399, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-comment", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "type": "TextualBody", + "value": "Koto with a cover being carried", + "language": "en", + "format": "text/plain" + }, + { + "type": "TextualBody", + "value": "袋に収められた琴", + "language": "ja", + "format": "text/plain" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1#xywh=1650,1200,925,1250", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0377_image_in_annotation": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "type": "Image", + "format": "image/jpeg" + }, + { + "type": "TextualBody", + "language": "en", + "value": "Night picture of the Gänseliesel fountain in Göttingen taken during the 2019 IIIF Conference" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1#xywh=138,550,1477,1710", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0434_choice_av": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Excerpt from Egbe Iyawo" + ] + }, + "summary": { + "en": [ + "Excerpt from a performance of Egbe Iyawo recorded in Kabba Division, Kwara State. " + ] + }, + "rights": "http://creativecommons.org/publicdomain/zero/1.0/", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "type": "Canvas", + "duration": 16, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", + "type": "Sound", + "format": "audio/alac", + "duration": 16, + "label": { + "en": [ + "ALAC" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", + "type": "Sound", + "format": "audio/mpeg", + "duration": 16, + "label": { + "en": [ + "MP3" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", + "type": "Sound", + "format": "audio/flac", + "duration": 16, + "label": { + "en": [ + "FLAC" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", + "type": "Sound", + "format": "audio/ogg", + "duration": 16, + "label": { + "en": [ + "OGG Vorbis OGG" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", + "type": "Sound", + "format": "audio/mpeg", + "duration": 16, + "label": { + "en": [ + "MPEG2" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", + "type": "Sound", + "format": "audio/wav", + "duration": 16, + "label": { + "en": [ + "WAV" + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "cookbook_0489_multimedia_canvas": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Multimedia Canvas" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + "height": 31722, + "width": 70399, + "duration": 180, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/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": 31722, + "width": 70399, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#t=11,42", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video", + "height": 360, + "width": 640, + "duration": 1801.055, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=1000,500,5000,6000&t=11,42", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/html", + "value": "

Press Play

", + "language": "en" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=30200,10200,15000,5000&t=0,1", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/html", + "value": "

In 10 seconds, this text will be replaced by a clock and an image. You will have 30 seconds (shown on the clock) in which to take notes on the image you see. After 30 seconds, the image will be replaced by the start screen. You will not be responsible for the part of the image covered by the clock.

", + "language": "en" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=20220,5000,30000,5000&t=1,11", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/html", + "value": "

Close your browser

", + "language": "en" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=27000,10200,25000,5000&t=42,180", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "presentation_3_accompanying_canvas": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Partial audio recording of Gustav Mahler's _Symphony No. 3_" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Gustav Mahler, Symphony No. 3, CD 1" + ] + }, + "duration": 1985.024, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "duration": 1985.024, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ] + } + ] + } + ], + "accompanyingContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas", + "label": { + "en": [ + "First page of score for Gustav Mahler, Symphony No. 3" + ] + }, + "height": 998, + "width": 772, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 998, + "width": 772, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + } + ] + } + ] + } + ] + } + } + ] + } satisfies Manifest4, + "presentation_3_bl_ranges": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "C733/48 C733/49 C733/50 [Recordings in Soqotri / 'Survey' recordings in English]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Format" + ] + }, + "value": { + "en": [ + "3 tape reels 9 cm 4.75 cm/sec mono" + ] + } + }, + { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Rights unassigned - staff access only" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Digitised by" + ] + }, + "value": { + "en": [ + "The British Library, 2017" + ] + } + }, + { + "label": { + "en": [ + "Digitisation funded by" + ] + }, + "value": { + "en": [ + "National Lottery Heritage Fund" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48-C733/50" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + } + ], + "requiredStatement": { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Please read the full information about this object
Rights unassigned - staff access only
" + ] + } + }, + "provider": [ + { + "id": "https://www.bl.uk/about-us", + "type": "Agent", + "label": { + "en": [ + "The British Library" + ] + }, + "homepage": [ + { + "id": "https://www.bl.uk/", + "type": "Text", + "format": "text/html", + "label": { + "en": [ + "The British Library" + ] + } + } + ], + "logo": [ + { + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "Image", + "format": "image/gif" + } + ] + } + ], + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1", + "profile": "http://iiif.io/api/auth/1/login", + "description": "Some portions of this recording may be unavailable due to rights restrictions.", + "header": "Please Log-In", + "label": "Login to The British Library", + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1", + "profile": "http://iiif.io/api/auth/1/token" + } + ] + }, + { + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_100052320369.0x000002", + "type": "Service", + "profile": "http://universalviewer.io/share-extensions-profile" + } + ], + "homepage": [ + { + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_100052320369.0x000002", + "type": "Text", + "format": "text/html", + "label": { + "en": [ + "View at the British Library" + ] + } + } + ], + "behavior": [ + "auto-advance" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004", + "type": "Canvas", + "label": { + "en": [ + "Tape 1 Side 1" + ] + }, + "duration": 2023.56, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004#t=0,2023.56", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000032.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005", + "type": "Canvas", + "label": { + "en": [ + "Tape 1 Side 2" + ] + }, + "duration": 1760.04, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005/anno2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005/anno2/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005#t=0,1760.04", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000035/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000035/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000035/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000035/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000034.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007", + "type": "Canvas", + "label": { + "en": [ + "Tape 2 Side 1" + ] + }, + "duration": 1392.56, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007/anno3", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007/anno3/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0,1392.56", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000037/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000037/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000037/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000037/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000036.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008", + "type": "Canvas", + "label": { + "en": [ + "Tape 2 Side 2" + ] + }, + "duration": 1404.92, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008/anno4", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008/anno4/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=0,1404.92", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000039/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000039/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000039/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000039/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000038.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a", + "type": "Canvas", + "label": { + "en": [ + "Tape 3 Side 1" + ] + }, + "duration": 1406.32, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a/anno5", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a/anno5/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=0,1406.32", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x00003b/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x00003b/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x00003b/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x00003b/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x00003a.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b", + "type": "Canvas", + "label": { + "en": [ + "Tape 3 Side 2" + ] + }, + "duration": 1398.84, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b/anno6", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b/anno6/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b#t=0,1398.84", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x00003d/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x00003d/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x00003d/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x00003d/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x00003c.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Range", + "label": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Format" + ] + }, + "value": { + "en": [ + "3 tape reels 9 cm 4.75 cm/sec mono" + ] + } + }, + { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Rights unassigned - staff access only" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Digitised by" + ] + }, + "value": { + "en": [ + "The British Library, 2017" + ] + } + }, + { + "label": { + "en": [ + "Digitisation funded by" + ] + }, + "value": { + "en": [ + "National Lottery Heritage Fund" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48-C733/50" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "type": "Range", + "label": { + "en": [ + "[A'raf Biladik]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Wazir Al-Nubi, Ibrahim", + "Botting, Douglas", + "Bin Ali, Thani", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate Aden Governorate, Soqotra (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen Oman (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "1 hr. 11 min. 09 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt gdq ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri Mehri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S1-C733/49 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Individual items described separately Ibrahim Wazir al-Nubi reads a passage called 'A'raf Biladik' [knowledge of homeland], in Soqotri and Arabic, and Thani Bin Ali reads the same extract in Mehri. The voice that can be heard introducing is likely to be Major P.G. Boxhall. Sheikh Ibrahim Wazir Al-Nubi was the minister/scribe of the Sultan at the time the recording was made. Thani Bin Ali was a medical assistant on Soqotra. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000c", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000d", + "type": "Range", + "label": { + "en": [ + "[A'raf Biladik, Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Wazir Al-Nubi, Ibrahim", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "33 min. 44 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Ibrahim Wazir al-Nubi reads a passage called 'A'raf Biladik' [knowledge of homeland], in Soqotri and Arabic. The voice that can be heard introducing the recording is likely to be Major P.G. Boxhall. Sheikh Ibrahim Wazir Al-Nubi was the minister/scribe of the Sultan at the time the recording was made. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000d", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004#t=0,2023.56", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000e", + "type": "Range", + "label": { + "en": [ + "[A'raf Biladik, Mehri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Mehri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "29 min. 20 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "gdq" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Contains recitations of 'A'raf Biladik' ['knowledge of homeland' - unidentified] in Mehri. The voice introducing the recording is likely to be Major P.G. Boxhall. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000e", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005#t=0,1760.04", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c/nn3", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0,0.36", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000f", + "type": "Range", + "label": { + "en": [ + "[A'raf Biladik, Soqotri, page 4]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Soqotri, page 4]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Bin Ali, Thani", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Aden Governorate, Soqotra? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "8 min. 05 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Contains a recitation of 'page 4' of 'A'raf Biladik' ['knowledge of homeland' - unidentified] in Soqotri by Thani Bin Ali, introduced by a speaker likely to be Major P.G. Boxhall. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Thani Bin Ali is a medical assistant on Soqotra. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors and content transcribed by ear Recording date based on the date written on the box for C733/48 Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000f", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0.36,484.8", + "type": "Canvas" + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016", + "type": "Range", + "label": { + "en": [ + "[Translation of Arabic to Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Translation of Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Hadrami Bedouin League member", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "0 min. 39 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Title transcribed by ear, but does not seem to match the content, which is the two men having a brief discussion in Arabic Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000016", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=487.56,526.36", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016/nn3", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.36,526.64", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000018", + "type": "Range", + "label": { + "en": [ + "[Medical interview in Arabic and Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Medical interview in Arabic and Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Corporal Goldberg", + "unidentified", + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "8 min. 20 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Names and content transcribed by ear Corporal Goldberg interviews a patient, a Bedouin child who is very sick. Johstone speaks in Arabic to Suleiman, one of the Sultan's bodyguards, who translates into Soqotri for the benefit of the Bedouin man and his child. There is a description of fire treatment as medicine to cure the boy. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000018", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.64,1026.48", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "type": "Range", + "label": { + "en": [ + "[Arabic to Soqotri translations]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Arabic to Soqotri translations]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "19 min. 47 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C4-S2 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Individual items described separately Suleiman is described as 'one of the Sultan's bodyguards' Various recordings of Arabic - Soqotri translations made with Suleiman Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear from English and Arabic Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001a", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b", + "type": "Range", + "label": { + "en": [ + "[Single-word translation of Arabic to Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Single-word translation of Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "10 min. 25 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C4-S2 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Contains Soqotri translations of the Arabic words for 'tall', 'short', 'sea', 'eat', 'house', 'homeland', 'town', 'sun', 'walk', 'mountain', 'far', 'near', 'bread', 'daughter', 'head', 'chest', 'eye', 'eyebrow', 'tongue', 'ghee', 'milk', 'chicken', 'dog', 'camel', 'fire', 'donkey', as well as numbers, and some unidentified words. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors and content transcribed by ear from English and Arabic Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001b", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=1027,1392.56", + "type": "Canvas" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=0,259.8", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b/nn2", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=259.8,260", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c", + "type": "Range", + "label": { + "en": [ + "[Pronunciation of lateral s]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Pronunciation of lateral s]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "0 min. 17 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Pronunciation of lateral s, or 'ɮ' being pronounced by Suleiman [voice identified by ear] Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001c", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=260,276.24", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c/nn3", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=276.24,277.44", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001d", + "type": "Range", + "label": { + "en": [ + "[Medical phrases]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Medical phrases]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "9 min. 04 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Medical phrases translated from Arabic to Soqotri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on language spoken Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001d", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=277.44,821.36", + "type": "Canvas" + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024", + "type": "Range", + "label": { + "en": [ + "Arabic/Soqotri [Mu'allaqat of the Imru Al-Qays]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "Arabic/Soqotri [Mu'allaqat of the Imru Al-Qays]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "2 min. 51 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C4" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The first few lines of the Mu'allaqat of the Imru Al-Qays in Arabic and Soqotri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Same speaker as C733/49 C5 [identified by ear] Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000024", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=821.76,992.32", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024/nn6", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.32,992.96", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000026", + "type": "Range", + "label": { + "en": [ + "Arabic/Soqotri [Page 121]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "Arabic/Soqotri [Page 121]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "6 min. 52 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C5" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "'Phrases from page 121 translated from Arabic into Soqotri' [transcribed by ear] Same speaker as C733/49 C4 [identified by ear] Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000026", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.96,1404.92", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028", + "type": "Range", + "label": { + "en": [ + "[Phrases from Arabic to Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Phrases from Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1965-12? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Abd Al-Kuri, Soqotra Archipelago, Aden Governorate? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "12 min. 16 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "'Phrases from Arabic to Soqotri' (transcribed by ear) Recording date based on note on box for C733/48 Recording location based on languages spoken, and on note on box for C733/15 Information on contributors is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000028", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=0,736", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028/nn8", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736,736.72", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a", + "type": "Range", + "label": { + "en": [ + "[Soqotri songs]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Soqotri songs]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "7 min. 02 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on content and speakers was provided by Dr. Miranda Morris Soqotri songs and poetry with Arabic translation, and some talk. The songs/poem is followed by someone speaking in Soqotri. After he sings, he demands to be paid 20 shillings as he is a good man. He says ‘tell me! How many camels do you want?’ and says he has been with other foreigners, travelled, with a compass, been to many places, ‘I’m a good man, employ me!’. Finally, there is a brief fragment of a 'translation of an Arabic text into Mahri' [identified by ear]. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002a", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736.72,1158.84", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a/nn9", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1158.84,1159.12", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002c", + "type": "Range", + "label": { + "en": [ + "[Arabic/Mahri translation]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Arabic/Mahri translation]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "3 min. 07 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "gdq ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Mehri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "A translation of an Arabic text into Mehri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002c", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1159.12,1346.4", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top/nn9", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1346.4,1406.32", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002e", + "type": "Range", + "label": { + "en": [ + "['Survey' recordings]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "['Survey' recordings]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "not before 1966-01-16 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "24 min. 18 sec." + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S2 C1; S1 C4" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "An expedition member reads his field diary, including geological information and anecdotes of the group's travels Recording date based on the dates announced in the recording" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002e", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b#t=0,1398.84", + "type": "Canvas" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1346.52,1406.32", + "type": "Canvas" + } + ] + } + ] + } + ], + "accompanyingContainer": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "type": "Canvas", + "label": { + "en": [ + "world" + ] + }, + "width": 962, + "height": 962, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1/a1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://iiif-commons.github.io/iiif-av-component/examples/data/bl/sounds-tests/posters/world.jpg", + "type": "Image", + "width": 962, + "height": 962, + "format": "image/jpeg" + } + ] + } + ] + } + ] + } + } satisfies Manifest4, + "presentation_3_bodleian": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "type": "Manifest", + "label": { + "en": [ + "Bodleian Library LP 44" + ] + }, + "summary": { + "en": [ + "Portrait of a woman, called Mary, Queen of Scots (1542–1587)" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Title" + ] + }, + "value": { + "en": [ + "Portrait of a woman, called Mary, Queen of Scots (1542–1587)" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "Bodleian Library LP 44" + ] + } + }, + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Artist unknown" + ] + } + }, + { + "label": { + "en": [ + "Sitter" + ] + }, + "value": { + "en": [ + "Mary?, Queen of Scots (1542-1587)" + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "No linguistic content" + ] + } + }, + { + "label": { + "en": [ + "Date Statement" + ] + }, + "value": { + "en": [ + "1838" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "A copy of the portrait overpainted on LP 46, before it was removed in 1838. Not an authentic portrait, though at one time very popular, it is perhaps an adaptation of a miniature by Nicholas Hilliard (1537‒1619)." + ] + } + }, + { + "label": { + "en": [ + "Materials" + ] + }, + "value": { + "en": [ + "oil on canvas" + ] + } + }, + { + "label": { + "en": [ + "Dimensions" + ] + }, + "value": { + "en": [ + "550 × 454 mm." + ] + } + }, + { + "label": { + "en": [ + "Provenance" + ] + }, + "value": { + "en": [ + "Probably commissioned by the Curators of the Bodleian Library, before 1838." + ] + } + }, + { + "label": { + "en": [ + "Accession Date" + ] + }, + "value": { + "en": [ + "by 1838" + ] + } + }, + { + "label": { + "en": [ + "Accession Source" + ] + }, + "value": { + "en": [ + "Bodleian Curators" + ] + } + }, + { + "label": { + "en": [ + "Accession Type" + ] + }, + "value": { + "en": [ + "commission" + ] + } + }, + { + "label": { + "en": [ + "Record Origin" + ] + }, + "value": { + "en": [ + "Description by Dana Josephson (2019)." + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "Portraits" + ] + } + }, + { + "label": { + "en": [ + "Additional Information Sources" + ] + }, + "value": { + "en": [ + "Poole, Rachael. Catalogue of portraits in the possession of the University, colleges, city, and county of Oxford (Oxford, 1912). Garlick, Kenneth, and Rachael Poole. Catalogue of portraits in the Bodleian Library, Oxford (Oxford, 2004)." + ] + } + }, + { + "label": { + "en": [ + "Digitization Project" + ] + }, + "value": { + "en": [ + "The Bodleian Libraries’ Portrait Collection: A Samuel H. Kress Foundation Digitization Project" + ] + } + }, + { + "label": { + "en": [ + "Record Created" + ] + }, + "value": { + "en": [ + "2019-06-17T15:37:01Z" + ] + } + }, + { + "label": { + "en": [ + "Holding Institution" + ] + }, + "value": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + } + }, + { + "label": { + "en": [ + "Access Rights" + ] + }, + "value": { + "en": [ + "Photo: © Bodleian Libraries, University of Oxford" + ] + } + }, + { + "label": { + "en": [ + "Digitization Sponsor" + ] + }, + "value": { + "en": [ + "The Samuel H. Kress Foundation" + ] + } + } + ], + "homepage": [ + { + "id": "https://digital.bodleian.ox.ac.uk/objects/33c2e37e-957a-4820-83e1-611c987021c9/", + "type": "Text", + "label": { + "en": [ + "View on Digital Bodleian" + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "provider": [ + { + "id": "https://viaf.org/viaf/173632201/", + "type": "Agent", + "label": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + }, + "homepage": [ + { + "id": "https://www.bodleian.ox.ac.uk/", + "type": "Text", + "label": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + }, + "format": "text/html" + } + ] + } + ], + "navDate": "1838-01-01T00:00:00Z", + "logo": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71/full/256,/0/default.jpg", + "type": "Image", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71", + "type": "ImageService2" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "thumbnail": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/256,/0/default.jpg", + "type": "Image", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "requiredStatement": { + "label": { + "en": [ + "Terms of Use" + ] + }, + "value": { + "en": [ + "Terms of use: CC-BY-NC 4.0. For more information, please see https://digital.bodleian.ox.ac.uk/terms/" + ] + } + }, + "partOf": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits", + "type": "Collection", + "label": { + "en": [ + "Portraits" + ] + } + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian", + "type": "Collection", + "label": { + "en": [ + "Bodleian Libraries" + ] + } + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits-prints-drawings-objects", + "type": "Collection", + "label": { + "en": [ + "Portraits, Prints and Drawings" + ] + } + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian-portraits", + "type": "Collection", + "label": { + "en": [ + "The Bodleian Libraries’ Portrait Collection: A Samuel H. Kress Foundation Digitization Project" + ] + } + } + ], + "behavior": [ + "paged" + ], + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas", + "label": { + "en": [ + "front" + ] + }, + "width": 1920, + "height": 2326, + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotationpage/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotation/012b1e0f-8c9e-48e7-83d6-5e51a70253b4_image.json", + "type": "Annotation", + "target": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 1920, + "height": 2326, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "motivation": [ + "painting" + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/range/33c2e37e-957a-4820-83e1-611c987021c9/LOG_0000", + "type": "Range", + "label": { + "en": [ + "LP 44" + ] + }, + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + ], + "start": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + } + ], + "viewingDirection": "left-to-right" + } satisfies Manifest4, + "presentation_3_css": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Koto, chess, calligraphy, and painting" + ], + "ja": [ + "琴棋書画図屏風" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas", + "height": 3966, + "width": 8800, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3966, + "width": 8800, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "stylesheet": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/style.css", + "body": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/sr1", + "type": "SpecificResource", + "styleClass": "author1", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text1", + "type": "TextualBody", + "language": "en", + "format": "text/html", + "value": "

Three of the four pursuits of refined and noble men named in the screen's title are shown on this side of the screen: go, the koto, and tools for calligraphy. Each is in a container or wrapper. (GR)

" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1#xywh=700,1250,1850,1150", + "type": "Canvas" + }, + "styleClass": "author1" + } + ] + }, + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "stylesheet": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/style.css", + "body": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/sr2", + "type": "SpecificResource", + "styleClass": "author2", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text2", + "type": "TextualBody", + "language": "en", + "format": "text/html", + "value": "

The detail in the natural beauty of the setting could be seen as a contrast (or balance) to the manufactured pursuits of noble men. (TK)

" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1#xywh=170,160,2200,1000", + "type": "Canvas" + }, + "styleClass": "author2" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "presentation_3_exhibition_1": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "type": "Manifest", + "label": { + "en": [ + "Inventing Creativity" + ] + }, + "items": [ + { + "label": { + "en": [ + "Constructing the Creative Personality" + ] + }, + "height": 1000, + "width": 1000, + "type": "Canvas", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "body": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c/specificResource", + "type": "SpecificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 6036, + "width": 8174, + "label": { + "en": [ + "-" + ] + }, + "service": { + "type": "ImageService2", + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "protocol": "http://iiif.io/api/image", + "width": 8174, + "height": 6036, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 756 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 200, + "height": 148 + }, + { + "width": 100, + "height": 74 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + }, + "selector": { + "type": "iiif:ImageApiSelector", + "region": "4164,352,3702,5420" + } + } + ], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "Image", + "service": { + "type": "ImageService2", + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 756, + "sizes": [ + { + "width": 100, + "height": 74 + }, + { + "width": 200, + "height": 148 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 1024, + "height": 756 + } + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59#xywh=124,624,205,298", + "type": "Canvas" + } + ], + "summary": { + "en": [ + "Researchers found that people they deemed creative preferred messy and asymmetrical figures, while randomly selected university students tended to prefer simple, linear, and sym­metrical figures. The psychologists concluded creative people had a higher “tolerance for ambiguity,” though the result might also have been because the creative group, which included successful architects and writers, was more likely to have a learned taste for modern art." + ] + }, + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + } + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "body": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254/specificResource", + "type": "SpecificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 6237, + "width": 8713, + "label": { + "en": [ + "-" + ] + }, + "service": { + "type": "ImageService2", + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "protocol": "http://iiif.io/api/image", + "width": 8713, + "height": 6237, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 733 + }, + { + "width": 400, + "height": 286 + }, + { + "width": 200, + "height": 143 + }, + { + "width": 100, + "height": 72 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + }, + "selector": { + "type": "iiif:ImageApiSelector", + "region": "4415,422,3758,5440" + } + } + ], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "Image", + "service": { + "type": "ImageService2", + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 733, + "sizes": [ + { + "width": 100, + "height": 72 + }, + { + "width": 200, + "height": 143 + }, + { + "width": 400, + "height": 286 + }, + { + "width": 1024, + "height": 733 + } + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59#xywh=365,622,205,296", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + }, + "summary": { + "en": [ + "Traditionally, psychologists used ink blot tests to peer into peoples’ subconscious. Creativity researchers were interested not in the underlying meaning of what their subjects saw in the random shapes but rather their originality, which researchers quantified to calculate a measure of creative ability." + ] + } + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "body": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee/specificResource", + "type": "SpecificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 6452, + "width": 8840, + "label": { + "en": [ + "-" + ] + }, + "service": { + "type": "ImageService2", + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "protocol": "http://iiif.io/api/image", + "width": 8840, + "height": 6452, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 747 + }, + { + "width": 400, + "height": 292 + }, + { + "width": 200, + "height": 146 + }, + { + "width": 100, + "height": 73 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + }, + "selector": { + "type": "iiif:ImageApiSelector", + "region": "4479,548,3718,5404" + } + } + ], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "Image", + "service": { + "type": "ImageService2", + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 747, + "sizes": [ + { + "width": 100, + "height": 73 + }, + { + "width": 200, + "height": 146 + }, + { + "width": 400, + "height": 292 + }, + { + "width": 1024, + "height": 747 + } + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59#xywh=603,622,203,293", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + }, + "summary": { + "en": [ + "Drawing completion tests were commonly used in creativity studies. Although creativity and art were closely associated, these tests were scored not on the test-taker’s artistic ability, but rather on the originality and elaborateness of their responses." + ] + } + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "body": [ + { + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 6423, + "width": 8722, + "label": { + "en": [ + "-" + ] + }, + "service": [ + { + "type": "ImageService2", + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "protocol": "http://iiif.io/api/image", + "width": 8722, + "height": 6423, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 754 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 200, + "height": 147 + }, + { + "width": 100, + "height": 74 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + ] + } + ], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "Image", + "service": { + "type": "ImageService2", + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 754, + "sizes": [ + { + "width": 100, + "height": 74 + }, + { + "width": 200, + "height": 147 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 1024, + "height": 754 + } + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59#xywh=77,21,787,577", + "type": "Canvas" + } + ], + "summary": { + "en": [ + "Researchers at Berkeley’s IPAR asked subjects to create mosaics with colored tiles. The examples on the left were produced by the “non-creative” control group of randomly selected students, while those on the right were produced by prominent figures rated highly creative by their peers. The researchers concluded that creative people naturally prefer asymmetrical figures." + ] + }, + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf" + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "behavior": [ + "w-6", + "h-6" + ], + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "items": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/35", + "type": "Annotation", + "motivation": [ + "describing" + ], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + } + ], + "body": [] + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/36", + "type": "Annotation", + "motivation": [ + "describing" + ], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + } + ], + "body": [] + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/37", + "type": "Annotation", + "motivation": [ + "describing" + ], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + } + ], + "body": [] + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/38", + "type": "Annotation", + "motivation": [ + "describing" + ], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + } + ], + "body": [] + } + ] + } + ] + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest", + "homepage": [ + { + "id": "https://heritage.tudelft.nl/nl/exhibitions/inventing-creativity", + "type": "Text", + "format": "text/html", + "language": [ + "nl" + ] + }, + { + "id": "https://heritage.tudelft.nl/en/exhibitions/inventing-creativity", + "type": "Text", + "format": "text/html", + "language": [ + "en" + ] + } + ] + } satisfies Manifest4, + "presentation_3_ghent_choices": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219", + "type": "Manifest", + "label": { + "en": [ + "O.0219" + ] + }, + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "label": { + "en": [ + "O.0219" + ] + }, + "height": 6270, + "width": 2551, + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/layers", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/layers", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorB" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedA" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorA" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedC" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorD" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Color00" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorC" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedD" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedB" + ] + } + } + ] + } + ], + "target": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "type": "AnnotationPage", + "items": [ + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "1(u)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1" + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "1(asz)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "iku", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sza3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{gisz}", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "kiri6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sza3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ia", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "u3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ra", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "am", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "tum", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sag", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "1(disz)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "kam", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "hu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sag", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "2(disz)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5" + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "kam", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "el", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szam2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "til", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sze3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "1(u)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "gin2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ku3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "babbar", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ki", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{gisz}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "gigir", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ia", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sa10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "u4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "kur2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sze3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "inim", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ga2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ga2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ma", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "lugal", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "mar2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "u3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "su", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "mu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "hi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "im", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ru", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "de3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "esz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sza", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "gi4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ri", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "is", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "mil", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ku3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nin", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szubur", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dingir§", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + }, + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "li", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "di", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "isz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dingir", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "el", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szesz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ib", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ir3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ra", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Wordindex", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "asz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ku", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "hu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "gal", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ar", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "wi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dub", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sar", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "asz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ku", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "14", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "du8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "za", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bara2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nin", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "mu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dim2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "re", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "motivation": [ + "tagging" + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "presentation_3_has_part": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Canvas with a single IIIF image" + ] + }, + "thumbnail": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg" + } + ], + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "presentation_3_ldmax": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "type": "Manifest", + "label": { + "nl": [ + "De familie van Grenthe, het kippenvrouwtje" + ] + }, + "metadata": [ + { + "label": { + "nl": [ + "Datum gemaakt" + ] + }, + "value": { + "nl": [ + "2025-06-05T15:01:51" + ] + } + }, + { + "label": { + "nl": [ + "Datum gewijzigd" + ] + }, + "value": { + "nl": [ + "2025-06-05T15:14:31" + ] + } + }, + { + "label": { + "nl": [ + "dateCreated" + ] + }, + "value": { + "nl": [ + "1938" + ] + } + }, + { + "label": { + "nl": [ + "beschrijving" + ] + }, + "value": { + "nl": [ + "De kunstenares maakte zes illustraties voor het sprookje 'Grethe het kippenvrouwtje' van H.C. Andersen." + ] + } + }, + { + "label": { + "nl": [ + "identificatie" + ] + }, + "value": { + "nl": [ + "00002" + ] + } + }, + { + "label": { + "nl": [ + "itemLocatie" + ] + }, + "value": { + "nl": [ + "KO.rek06.40" + ] + } + }, + { + "label": { + "nl": [ + "naam" + ] + }, + "value": { + "nl": [ + "De familie van Grenthe, het kippenvrouwtje" + ] + } + } + ], + "summary": { + "nl": [ + "De kunstenares maakte zes illustraties voor het sprookje 'Grethe het kippenvrouwtje' van H.C. Andersen." + ] + }, + "thumbnail": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ], + "viewingDirection": "right-to-left", + "behavior": [ + "paged" + ], + "rights": "http://creativecommons.org/licenses/by/4.0", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ], + "nl": [ + "Naamsvermelding" + ] + }, + "value": { + "en": [ + "Provided by Museum Kranenburgh" + ], + "nl": [ + "Aangeboden door Museum Kranenburgh" + ] + } + }, + "provider": [ + { + "id": "http://www.museumkranenburgh.nl", + "type": "Agent", + "label": { + "none": [ + "Museum Kranenburgh" + ] + }, + "seeAlso": [ + { + "id": "https://www.ldmax.nl/organisaties/q4350196.jsonld", + "type": "Dataset", + "format": "application/ld+json", + "profile": "https://schema.org/" + }, + { + "id": "https://www.ldmax.nl/organisaties/q4350196.ttl", + "type": "Dataset", + "format": "text/turtle", + "profile": "https://schema.org/" + }, + { + "id": "https://www.ldmax.nl/organisaties/q4350196.nt", + "type": "Dataset", + "format": "application/n-triples", + "profile": "https://schema.org/" + } + ] + } + ], + "homepage": [ + { + "id": "https://www.ldmax.nl/datasets/q4350196/triples?subject=https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71", + "type": "Text", + "label": { + "nl": [ + "Detailpagina" + ] + }, + "format": "text/html" + } + ], + "partOf": [ + { + "id": "https://www.ldmax.nl/datasets/q4350196.jsonld", + "type": "Collection" + } + ], + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "type": "Canvas", + "label": { + "none": [ + "p. 1" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2", + "type": "Canvas", + "label": { + "none": [ + "p. 2" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3", + "type": "Canvas", + "label": { + "none": [ + "p. 3" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4", + "type": "Canvas", + "label": { + "none": [ + "p. 4" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5", + "type": "Canvas", + "label": { + "none": [ + "p. 5" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6", + "type": "Canvas", + "label": { + "none": [ + "p. 6" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "presentation_3_ocean_liners": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.vam.ac.uk/collections/O1023003/manifest.json", + "type": "Manifest", + "behavior": [ + "individuals" + ], + "items": [ + { + "items": [ + { + "items": [ + { + "body": [ + { + "service": [ + { + "profile": "level1", + "id": "https://framemark.vam.ac.uk/collections/2013GU2911", + "type": "ImageService2" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 3788, + "type": "Image", + "id": "https://framemark.vam.ac.uk/collections/2013GU2911/full/full/0/default.jpg" + } + ], + "motivation": [ + "painting" + ], + "type": "Annotation", + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + ], + "id": "https://iiif.vam.ac.uk/collections/O1023003/anno/a1" + } + ], + "type": "AnnotationPage" + } + ], + "label": { + "en": [ + "Object image 0" + ] + }, + "width": 3788, + "height": 6000, + "type": "Canvas", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "annotations": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a1", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

First-class lounge

First-class public rooms were located in the centre of the ship – the most stable and comfortable areas on board. The Aquitania's opulent interiors were inspired by classical architecture – spot the Ionic columns in the lounge. Architect Arthur Davis recommended the use of plaster and papier-mâché for ceilings, domes, and other decorative moulding, but advised against using marble and brickwork, as these would make the ship top-heavy.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=1800,2000,500,500", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a2", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Garden lounge

“As cool, as restful, as any terrace overlooking a rose-garden.” (The New Art of Going Abroad, 1929). Overlooking the sea and decorated with palms, the garden lounge was a fashionable place to have tea and was sometimes used for dancing.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=3000,2100,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a3", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

First-class restaurant

Dining on ocean liners was a radically different experience depending on the class of travel. In first class, the Aquitania’s Louis XVI-style dining room offered seating in small isolated groups, echoing elegant restaurants on land. The ship’s architect, Arthur Davis, explained that a “cheerful room with comfortable surroundings” was a necessary distraction from “the often very unpleasant conditions” at sea.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=2000,2800,400,400", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a4", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

First-class state room

The Aquitania’s first-class cabins were designed by architect Arthur Davis, whose firm, Mewès and Davis Architects, had decorated the famously opulent Ritz hotels in Paris and London. The cabins were “as spacious as a bedroom at the Ritz or the Barclay. The walls are panelled in grey silk. The carpets are vibrant blue and yellow, as are also the striped silk chair coverings. Note the bath – just off-stage, and the electric heater”. (The New Art of Going Abroad, 1929).

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=1400,2500,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a5", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Third-class dining saloon

While extravagant dishes and refined delicacies were served in first class, third-class meals were less sophisticated. A third-class lunch on a Cunard ship in the 1920s could include rice soup, boiled haddock or braised beef with cabbage, boiled potatoes, bread and ‘cabin biscuits’, followed by bread and butter pudding. To save space, passengers sat at long communal tables on chairs bolted to the floor, in case of bad weather.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=2450,3800,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a6", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Third-class four berth room

Liners were strictly organised spaces which reflected social hierarchies. Although people travelling in third class could account for 60% of the total number of passengers, they were segregated into a relatively small space in the lower decks of the ship, close to the noisy engine room. These four-berth rooms had none of the luxurious furnishings or fabrics found in first class, but they were an improvement on the communal sleeping quarters provided for steerage-class passengers on earlier liners.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=800,3500,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a7", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Boiler room

In 1919 the Aquitania was refitted and converted from coal-burning to oil-burning engines, which meant fewer crew were required to labour in the engine room.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=2500,4500,500,800", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a8", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Stores

Ocean liners required huge quantities of food, enough for all crew and passengers – the equivalent to feeding a floating city. Cunard catered for varied tastes. Provisions for one trip included 500 sheep kidneys, 400 ox tails, 800 tongues and large quantities of frogs’ legs, as well as geese, turkey, duck, game and “75 heads of cattle and calfs”.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=3000,4000,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a9", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Baggage

Passengers travelling for weeks or months would bring a huge number of trunks, most of which were kept in the baggage store deep in the hull of the ship. Cabins could only accommodate smaller trunks. Louis Vuitton designed the ‘steamer trunk’ specifically to fit under a first-class cabin bed. The baggage store was opened daily so that maids or stewards could collect personal items that were needed during the voyage.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=2100,4000,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a10", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Second-class dining saloon

The second-class spaces, like first class, were decorated in a neo-classical style. “The second-class accommodation on the vessel, though not so sumptuous as the first-class, is still very elaborate and comfortable”, explained the architect. “The dining-room, no less than 104 ft in length and extending across the whole width of the ship, is decorated with paintings adapted from panels by Pergolesi”– the 18th-century decorative artist. (Arthur Davis, The Architectural Review, April 1914)

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=1500,3250,100,200", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ], + "label": { + "en": [ + "Cunard Line - to all parts of the world" + ] + }, + "metadata": [ + { + "value": { + "en": [ + "E.1829-2004" + ] + }, + "label": { + "en": [ + "Museum number" + ] + } + }, + { + "value": { + "en": [ + "Cunard Line - to all parts of the world" + ] + }, + "label": { + "en": [ + "title" + ] + } + }, + { + "value": { + "en": [ + "Chromolithograph travel poster for \"Cunard Line - to all parts of the world\", depicting a cross section of the Aquitania at sea, printed by Thos. Forman & Sons, Nottingham, ca. 1920." + ] + }, + "label": { + "en": [ + "Descriptive Line" + ] + } + }, + { + "value": { + "en": [ + "PDP" + ] + }, + "label": { + "en": [ + "Collection" + ] + } + }, + { + "value": { + "en": [ + "Nottingham (printed)" + ] + }, + "label": { + "en": [ + "Place" + ] + } + }, + { + "value": { + "en": [ + "chromolithograph" + ] + }, + "label": { + "en": [ + "Materials & Techniques" + ] + } + }, + { + "value": { + "en": [ + "ca. 1920 (made)" + ] + }, + "label": { + "en": [ + "Date" + ] + } + }, + { + "value": { + "en": [ + "Posters;Boats and ships;Tourism & Travel" + ] + }, + "label": { + "en": [ + "Categories" + ] + } + }, + { + "value": { + "en": [ + "Chromolithograph travel poster for \"Cunard Line - to all parts of the world\", depicting a cross section of the Aquitania at sea, printed by Thos. Forman & Sons, Nottingham, ca. 1920." + ] + }, + "label": { + "en": [ + "Description" + ] + } + } + ], + "seeAlso": [ + { + "type": "Dataset", + "id": "https://collections.vam.ac.uk/item/O1023003.jsonld", + "@format": "application/ld+json" + } + ] + } satisfies Manifest4, + "presentation_3_specific_resource_infer": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest", + "type": "Manifest", + "label": { + "none": [ + "Schist Buddha Triad (year 5)" + ] + }, + "metadata": [ + { + "label": { + "none": [ + "Creator" + ] + }, + "value": { + "none": [ + "Ian David McCrabb" + ] + } + }, + { + "label": { + "none": [ + "Date Created" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Modified" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Published" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:19.000000Z" + ] + } + } + ], + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas", + "label": { + "none": [ + "Year 5 Buddha Triad" + ] + }, + "summary": { + "none": [ + "Year 5 Buddha Triad" + ] + }, + "width": 8058, + "height": 9856, + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 8058, + "height": 9856, + "service": [ + { + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D", + "type": "ImageService3", + "profile": "level2" + } + ] + } + ], + "target": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13", + "type": "AnnotationPage", + "label": { + "none": [ + "Annotations" + ] + }, + "metadata": [ + { + "label": { + "none": [ + "Identifier" + ] + }, + "value": { + "none": [ + 13 + ] + } + }, + { + "label": { + "none": [ + "Creator" + ] + }, + "value": { + "none": [ + "Ian David McCrabb" + ] + } + }, + { + "label": { + "none": [ + "Date Created" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Modified" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:10.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Published" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:10.000000Z" + ] + } + } + ], + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "created": "2024-01-14T23:24:15.000000Z", + "modified": "2024-01-14T23:24:15.000000Z", + "target": [ + { + "source": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "body": [ + { + "type": "TextualBody", + "purpose": "describing", + "language": "en", + "format": "text/plain", + "value": "Title: Hair" + }, + { + "type": "TextualBody", + "purpose": "describing", + "language": "it", + "format": "text/plain", + "value": "Title: Capelli" + }, + { + "type": "TextualBody", + "purpose": "describing", + "language": "en", + "format": "text/plain", + "value": "Description: Buddha's hair, with an uṣṇīṣa." + }, + { + "type": "TextualBody", + "purpose": "tagging", + "language": "en", + "format": "text/plain", + "value": "Tag: [hair parted in middle with lateral continuous waves; separate uṣṇīṣa](https://w3id.org/diga/terms/1940192311)\nVocabulary: [DiGA - The Digitization of Gandharan Artefacts Thesaurus](https://diga.skosmos.ub.rub.de/thesaurus/en/)\nData: {\"trace\":[{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"figures\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"literay persons\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"buddha\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"buddha: general features\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"hair of buddha\"}]}" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Note: (Harle 1974, 132) “wavy, rolling up and inwards from the hairline on either side of a central little almond-shaped dividing point”" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Note: (Mitterwallner 1987, 217) “rendered in a systematized manner in the form of semi-circles… bound by a band”" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Note: (Guy 2022, 97) “his uncut hair is drawn back in prominent waves and tied up to form a large chignon-ushnisha”" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Attribution: Allon 2022" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Date: 1970-01-01" + }, + { + "type": "TextualBody", + "purpose": "classifying", + "language": "en", + "format": "text/plain", + "value": "Line Color: Medium" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "presentation_3_start_canvas": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Multiple Related Images (Book, etc.)" + ] + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Frontispiece" + ] + }, + "width": 3186, + "height": 4612, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Title page" + ] + }, + "width": 3204, + "height": 4613, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "width": 3174, + "height": 4578, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Bookplate" + ] + }, + "width": 3198, + "height": 4632, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + "presentation_3_wellcome_p3_2": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723", + "type": "Manifest", + "label": { + "en": [ + "Wunder der Vererbung / von Fritz Bolle." + ] + }, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2", + "type": "ImageService2" + } + ] + } + ], + "homepage": [ + { + "id": "https://wellcomecollection.org/works/krqp99r9", + "type": "Text", + "label": { + "en": [ + "Wunder der Vererbung / von Fritz Bolle." + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "metadata": [ + { + "label": { + "en": [ + "Publication/creation" + ] + }, + "value": { + "none": [ + "Murnau ; München : Sebastian Lux, [1951]" + ] + } + }, + { + "label": { + "en": [ + "Physical description" + ] + }, + "value": { + "en": [ + "31 pages : illustrations ; 15 cm." + ] + } + }, + { + "label": { + "en": [ + "Contributors" + ] + }, + "value": { + "none": [ + "Bolle, Fritz." + ] + } + }, + { + "label": { + "en": [ + "Type/technique" + ] + }, + "value": { + "en": [ + "Pamphlets" + ] + } + }, + { + "label": { + "en": [ + "Subjects" + ] + }, + "value": { + "en": [ + "Genetics - history" + ] + } + }, + { + "label": { + "en": [ + "Attribution and usage" + ] + }, + "value": { + "en": [ + "Wellcome Collection", + "You have permission to make copies of this work under a Creative Commons, Attribution, Non-commercial license.

Non-commercial use includes private study, academic research, teaching, and other activities that are not primarily intended for, or directed towards, commercial advantage or private monetary compensation. See the Legal Code for further information.

Image source should be attributed as specified in the full catalogue record. If no source is given the image should be attributed to Wellcome Collection.
" + ] + } + } + ], + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "provider": [ + { + "id": "https://wellcomecollection.org", + "type": "Agent", + "label": { + "en": [ + "Wellcome Collection", + "183 Euston Road", + "London NW1 2BE UK", + "T +44 (0)20 7611 8722", + "E library@wellcomecollection.org", + "https://wellcomecollection.org" + ] + }, + "homepage": [ + { + "id": "https://wellcomecollection.org/works", + "type": "Text", + "label": { + "en": [ + "Explore our collections" + ] + }, + "format": "text/html" + } + ], + "logo": [ + { + "id": "https://iiif.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "Image", + "format": "image/png" + } + ] + } + ], + "rendering": [ + { + "id": "https://iiif.wellcomecollection.org/pdf/b18035723", + "type": "Text", + "label": { + "en": [ + "View as PDF" + ] + }, + "format": "application/pdf" + }, + { + "id": "https://api.wellcomecollection.org/text/v1/b18035723", + "type": "Text", + "label": { + "en": [ + "View raw text" + ] + }, + "format": "text/plain" + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/catalogue/v2/works/krqp99r9", + "type": "Dataset", + "profile": "https://api.wellcomecollection.org/catalogue/v2/context.json", + "label": { + "en": [ + "Wellcome Collection Catalogue API" + ] + }, + "format": "application/json" + } + ], + "service": [ + { + "profile": "http://iiif.io/api/search/1/search", + "label": "Search within this manifest", + "service": [ + { + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest", + "id": "https://iiif.wellcomecollection.org/search/autocomplete/v1/b18035723", + "type": "AutoCompleteService1" + } + ], + "id": "https://iiif.wellcomecollection.org/search/v1/b18035723", + "type": "SearchService1" + } + ], + "behavior": [ + "paged" + ], + "services": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#tracking", + "type": "Text", + "profile": "http://universalviewer.io/tracking-extensions-profile", + "label": { + "en": [ + "Format: Monograph, Institution: n/a, Identifier: b18035723, Digicode: diggenetics, Collection code: n/a" + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#timestamp", + "type": "Text", + "profile": "https://github.com/wellcomecollection/iiif-builder/build-timestamp", + "label": { + "none": [ + "2021-04-29T21:58:28.9247406Z" + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#accesscontrolhints", + "type": "Text", + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "label": { + "en": [ + "open" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2569, + "height": 3543, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg", + "type": "Image", + "width": 73, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 742, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 145, + "height": 200 + }, + { + "width": 290, + "height": 400 + }, + { + "width": 742, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0001.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2/full/742,1024/0/default.jpg", + "type": "Image", + "width": 742, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2569, + "height": 3543, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0001.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0003.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0003.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0003.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0003.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0003.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0003.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0003.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0003.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0003.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0003.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0004.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0004.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0004.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0004.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0005.JP2", + "type": "Canvas", + "label": { + "none": [ + "2" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0005.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0005.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0005.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0005.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0005.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0005.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0005.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0005.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0005.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 2" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0006.JP2", + "type": "Canvas", + "label": { + "none": [ + "3" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0006.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0006.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0006.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0006.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0006.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0006.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0006.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0006.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0006.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 3" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0007.JP2", + "type": "Canvas", + "label": { + "none": [ + "4" + ] + }, + "width": 2008, + "height": 2736, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0007.JP2/full/73,100/0/default.jpg", + "type": "Image", + "width": 73, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 752, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 147, + "height": 200 + }, + { + "width": 294, + "height": 400 + }, + { + "width": 752, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0007.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0007.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0007.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0007.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0007.JP2/full/752,1024/0/default.jpg", + "type": "Image", + "width": 752, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2008, + "height": 2736, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0007.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0007.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0007.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 4" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0008.JP2", + "type": "Canvas", + "label": { + "none": [ + "5" + ] + }, + "width": 2008, + "height": 2740, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0008.JP2/full/73,100/0/default.jpg", + "type": "Image", + "width": 73, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 750, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 147, + "height": 200 + }, + { + "width": 293, + "height": 400 + }, + { + "width": 750, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0008.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0008.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0008.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0008.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0008.JP2/full/750,1024/0/default.jpg", + "type": "Image", + "width": 750, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2008, + "height": 2740, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0008.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0008.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0008.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 5" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0009.JP2", + "type": "Canvas", + "label": { + "none": [ + "6" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0009.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0009.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0009.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0009.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0009.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0009.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0009.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0009.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0009.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 6" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0010.JP2", + "type": "Canvas", + "label": { + "none": [ + "7" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0010.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0010.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0010.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0010.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0010.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0010.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0010.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0010.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0010.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 7" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0011.JP2", + "type": "Canvas", + "label": { + "none": [ + "8" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0011.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0011.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0011.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0011.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0011.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0011.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0011.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0011.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0011.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 8" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0012.JP2", + "type": "Canvas", + "label": { + "none": [ + "9" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0012.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0012.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0012.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0012.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0012.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0012.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0012.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0012.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0012.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 9" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0013.JP2", + "type": "Canvas", + "label": { + "none": [ + "10" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0013.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0013.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0013.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0013.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0013.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0013.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0013.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0013.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0013.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 10" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0014.JP2", + "type": "Canvas", + "label": { + "none": [ + "11" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0014.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0014.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0014.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0014.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0014.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0014.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0014.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0014.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0014.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 11" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0015.JP2", + "type": "Canvas", + "label": { + "none": [ + "12" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0015.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0015.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0015.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0015.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0015.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0015.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0015.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0015.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0015.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 12" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0016.JP2", + "type": "Canvas", + "label": { + "none": [ + "13" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0016.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0016.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0016.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0016.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0016.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0016.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0016.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0016.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0016.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 13" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0017.JP2", + "type": "Canvas", + "label": { + "none": [ + "14" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0017.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0017.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0017.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0017.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0017.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0017.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0017.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0017.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0017.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 14" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0018.JP2", + "type": "Canvas", + "label": { + "none": [ + "15" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0018.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0018.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0018.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0018.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0018.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0018.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0018.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0018.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0018.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 15" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0019.JP2", + "type": "Canvas", + "label": { + "none": [ + "16" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0019.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0019.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0019.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0019.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0019.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0019.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0019.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0019.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0019.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 16" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0020.JP2", + "type": "Canvas", + "label": { + "none": [ + "17" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0020.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0020.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0020.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0020.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0020.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0020.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0020.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0020.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0020.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 17" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0021.JP2", + "type": "Canvas", + "label": { + "none": [ + "18" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0021.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0021.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0021.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0021.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0021.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0021.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0021.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0021.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0021.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 18" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0022.JP2", + "type": "Canvas", + "label": { + "none": [ + "19" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0022.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0022.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0022.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0022.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0022.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0022.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0022.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0022.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0022.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 19" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0023.JP2", + "type": "Canvas", + "label": { + "none": [ + "20" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0023.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0023.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0023.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0023.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0023.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0023.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0023.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0023.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0023.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 20" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0024.JP2", + "type": "Canvas", + "label": { + "none": [ + "21" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0024.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0024.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0024.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0024.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0024.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0024.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0024.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0024.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0024.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 21" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0025.JP2", + "type": "Canvas", + "label": { + "none": [ + "22" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0025.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0025.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0025.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0025.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0025.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0025.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0025.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0025.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0025.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 22" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0026.JP2", + "type": "Canvas", + "label": { + "none": [ + "23" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0026.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0026.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0026.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0026.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0026.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0026.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0026.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0026.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0026.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 23" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0027.JP2", + "type": "Canvas", + "label": { + "none": [ + "24" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0027.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0027.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0027.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0027.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0027.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0027.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0027.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0027.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0027.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 24" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0028.JP2", + "type": "Canvas", + "label": { + "none": [ + "25" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0028.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0028.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0028.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0028.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0028.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0028.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0028.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0028.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0028.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 25" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0029.JP2", + "type": "Canvas", + "label": { + "none": [ + "26" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0029.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0029.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0029.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0029.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0029.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0029.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0029.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0029.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0029.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 26" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0030.JP2", + "type": "Canvas", + "label": { + "none": [ + "27" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0030.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0030.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0030.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0030.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0030.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0030.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0030.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0030.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0030.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 27" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0031.JP2", + "type": "Canvas", + "label": { + "none": [ + "28" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0031.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0031.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0031.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0031.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0031.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0031.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0031.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0031.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0031.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 28" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0032.JP2", + "type": "Canvas", + "label": { + "none": [ + "29" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0032.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0032.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0032.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0032.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0032.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0032.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0032.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0032.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0032.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 29" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0033.JP2", + "type": "Canvas", + "label": { + "none": [ + "30" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0033.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0033.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0033.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0033.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0033.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0033.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0033.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0033.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0033.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 30" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0034.JP2", + "type": "Canvas", + "label": { + "none": [ + "31" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0034.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0034.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0034.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0034.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0034.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0034.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0034.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0034.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0034.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 31" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0035.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0035.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0035.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0035.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0035.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0035.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0035.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0035.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0035.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0035.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0036.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0036.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0036.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0036.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0036.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0036.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0036.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0036.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0036.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0036.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2231, + "height": 3040, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0002.JP2/full/73,100/0/default.jpg", + "type": "Image", + "width": 73, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 751, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 147, + "height": 200 + }, + { + "width": 294, + "height": 400 + }, + { + "width": 751, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0002.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0002.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0002.JP2/full/751,1024/0/default.jpg", + "type": "Image", + "width": 751, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2231, + "height": 3040, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0002.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0002.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0001", + "type": "Range", + "label": { + "none": [ + "Front Cover" + ] + }, + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0003", + "type": "Range", + "label": { + "none": [ + "Title Page" + ] + }, + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0002", + "type": "Range", + "label": { + "none": [ + "Back Cover" + ] + }, + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas" + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/images", + "type": "AnnotationPage", + "label": { + "en": [ + "OCR-identified images and figures for b18035723" + ] + } + } + ], + "partOf": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/contributors/xtwzf3g5", + "type": "Collection", + "label": { + "en": [ + "Contributor: Bolle, Fritz." + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/subjects/hq8gcy73", + "type": "Collection", + "label": { + "en": [ + "Subject: Genetics - history" + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/genres/Pamphlets", + "type": "Collection", + "label": { + "en": [ + "Genre: Pamphlets" + ] + } + } + ] + } satisfies Manifest4, + "presentation_3_wellcome_p3": { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "type": "Manifest", + "label": { + "en": [ + "[Report 1960] / Medical Officer of Health, Llanwrtyd Wells U.D.C." + ] + }, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2" + } + ] + } + ], + "homepage": [ + { + "id": "https://wellcomecollection.org/works/rfm2hr8w", + "type": "Text", + "label": { + "en": [ + "[Report 1960] / Medical Officer of Health, Llanwrtyd Wells U.D.C." + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "metadata": [ + { + "label": { + "en": [ + "Publication/creation" + ] + }, + "value": { + "none": [ + "1960" + ] + } + }, + { + "label": { + "en": [ + "Contributors" + ] + }, + "value": { + "none": [ + "Llanwrtyd Wells (Wales). Urban District Council." + ] + } + }, + { + "label": { + "en": [ + "Type/technique" + ] + }, + "value": { + "en": [ + "Electronic books.", + "Annual reports.", + "MOH reports.", + "Statistics." + ] + } + }, + { + "label": { + "en": [ + "Subjects" + ] + }, + "value": { + "en": [ + "Disease Outbreaks.", + "Public Health.", + "Sanitation.", + "Water Supply.", + "Llanwrtyd Wells (Wales)" + ] + } + } + ], + "rights": "https://creativecommons.org/licenses/by/4.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution and usage" + ] + }, + "value": { + "en": [ + "Wellcome Collection", + "You have permission to make copies of this work under a Creative Commons, Attribution license.

This licence permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. See the Legal Code for further information.

Image source should be attributed as specified in the full catalogue record. If no source is given the image should be attributed to Wellcome Library.
" + ] + } + }, + "provider": [ + { + "id": "https://wellcomecollection.org", + "type": "Agent", + "label": { + "en": [ + "Wellcome Collection", + "183 Euston Road", + "London NW1 2BE UK", + "T +44 (0)20 7611 8722", + "E library@wellcomecollection.org", + "https://wellcomecollection.org" + ] + }, + "homepage": [ + { + "id": "https://wellcomecollection.org/works", + "type": "Text", + "label": { + "en": [ + "Explore our collections" + ] + }, + "format": "text/html" + } + ], + "logo": [ + { + "id": "https://iiif-test.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "Image", + "format": "image/png" + } + ] + } + ], + "rendering": [ + { + "id": "https://dlcs.io/pdf/wellcome/pdf/6/b28857021", + "type": "Text", + "label": { + "en": [ + "View as PDF" + ] + }, + "format": "application/pdf" + }, + { + "id": "https://iiif-test.wellcomecollection.org/text/v1/b28857021", + "type": "Text", + "label": { + "en": [ + "View raw text" + ] + }, + "format": "text/plain" + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/catalogue/v2/works/rfm2hr8w", + "type": "Dataset", + "profile": "https://api.wellcomecollection.org/catalogue/v2/context.json", + "label": { + "en": [ + "Wellcome Collection Catalogue API" + ] + }, + "format": "application/json" + } + ], + "service": [ + { + "profile": "http://iiif.io/api/search/1/search", + "label": "Search within this manifest", + "service": [ + { + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest", + "id": "https://iiif-test.wellcomecollection.org/search/autocomplete/v1/b28857021", + "type": "AutoCompleteService1" + } + ], + "id": "https://iiif-test.wellcomecollection.org/search/v1/b28857021", + "type": "SearchService1" + } + ], + "behavior": [ + "paged" + ], + "services": [ + { + "type": "Text", + "profile": "http://universalviewer.io/tracking-extensions-profile", + "label": { + "en": [ + "Format: Monograph, Institution: n/a, Identifier: b28857021, Digicode: digmoh, Collection code: n/a" + ] + } + }, + { + "type": "Text", + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "label": { + "en": [ + "open" + ] + } + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2670, + "height": 4412, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0001.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2670, + "height": 4412, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0001.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0002.jp2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2547, + "height": 4312, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0002.jp2/full/59,100/0/default.jpg", + "type": "Image", + "width": 59, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 605, + "height": 1024, + "sizes": [ + { + "width": 59, + "height": 100 + }, + { + "width": 118, + "height": 200 + }, + { + "width": 236, + "height": 400 + }, + { + "width": 605, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0002.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0002.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0002.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0002.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0002.jp2/full/605,1024/0/default.jpg", + "type": "Image", + "width": 605, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2547, + "height": 4312, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0002.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0002.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0002.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0003.jp2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2637, + "height": 4357, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0003.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0003.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0003.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0003.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0003.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0003.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2637, + "height": 4357, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0003.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0003.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0003.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0004.jp2", + "type": "Canvas", + "label": { + "none": [ + "2" + ] + }, + "width": 2626, + "height": 4346, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0004.jp2/full/60,100/0/default.jpg", + "type": "Image", + "width": 60, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0004.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0004.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0004.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0004.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0004.jp2/full/619,1024/0/default.jpg", + "type": "Image", + "width": 619, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2626, + "height": 4346, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0004.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0004.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0004.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 2" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0005.jp2", + "type": "Canvas", + "label": { + "none": [ + "3" + ] + }, + "width": 2637, + "height": 4357, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0005.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0005.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0005.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0005.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0005.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0005.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2637, + "height": 4357, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0005.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0005.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0005.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 3" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0006.jp2", + "type": "Canvas", + "label": { + "none": [ + "4" + ] + }, + "width": 2626, + "height": 4346, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0006.jp2/full/60,100/0/default.jpg", + "type": "Image", + "width": 60, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0006.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0006.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0006.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0006.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0006.jp2/full/619,1024/0/default.jpg", + "type": "Image", + "width": 619, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2626, + "height": 4346, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0006.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0006.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0006.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 4" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0007.jp2", + "type": "Canvas", + "label": { + "none": [ + "5" + ] + }, + "width": 2637, + "height": 4357, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0007.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0007.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0007.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0007.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0007.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0007.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2637, + "height": 4357, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0007.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0007.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0007.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 5" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0008.jp2", + "type": "Canvas", + "label": { + "none": [ + "6" + ] + }, + "width": 2626, + "height": 4346, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0008.jp2/full/60,100/0/default.jpg", + "type": "Image", + "width": 60, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0008.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0008.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0008.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0008.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0008.jp2/full/619,1024/0/default.jpg", + "type": "Image", + "width": 619, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2626, + "height": 4346, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0008.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0008.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0008.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 6" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0009.jp2", + "type": "Canvas", + "label": { + "none": [ + "7" + ] + }, + "width": 2637, + "height": 4357, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0009.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0009.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0009.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0009.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0009.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0009.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2637, + "height": 4357, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0009.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0009.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0009.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 7" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2670, + "height": 4424, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0010.jp2/full/60,100/0/default.jpg", + "type": "Image", + "width": 60, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 618, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 241, + "height": 400 + }, + { + "width": 618, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0010.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0010.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0010.jp2/full/618,1024/0/default.jpg", + "type": "Image", + "width": 618, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2670, + "height": 4424, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0010.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0010.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + } + ], + "structures": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0001", + "type": "Range", + "label": { + "none": [ + "Cover" + ] + }, + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0002", + "type": "Range", + "label": { + "none": [ + "Cover" + ] + }, + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas" + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/images", + "type": "AnnotationPage", + "label": { + "en": [ + "OCR-identified images and figures for b28857021" + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/all/line", + "type": "AnnotationPage", + "label": { + "en": [ + "All OCR-derived annotations for b28857021" + ] + } + } + ], + "partOf": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/contributors/Llanwrtyd_Wells_(Wales)._Urban_District_Council.", + "type": "Collection", + "label": { + "en": [ + "Contributor: Llanwrtyd Wells (Wales). Urban District Council." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/xaqnqsbj", + "type": "Collection", + "label": { + "en": [ + "Subject: Disease Outbreaks." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/tva37rme", + "type": "Collection", + "label": { + "en": [ + "Subject: Public Health." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/p2mzt7rw", + "type": "Collection", + "label": { + "en": [ + "Subject: Sanitation." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/pxxu6hsg", + "type": "Collection", + "label": { + "en": [ + "Subject: Water Supply." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/dyss49dy", + "type": "Collection", + "label": { + "en": [ + "Subject: Llanwrtyd Wells (Wales)" + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Electronic_books.", + "type": "Collection", + "label": { + "en": [ + "Genre: Electronic books." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Annual_reports.", + "type": "Collection", + "label": { + "en": [ + "Genre: Annual reports." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/MOH_reports.", + "type": "Collection", + "label": { + "en": [ + "Genre: MOH reports." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Statistics.", + "type": "Collection", + "label": { + "en": [ + "Genre: Statistics." + ] + } + } + ] + } satisfies Manifest4, +} as const; + +describe('presentation-4 upgraded-from-v3 fixture typing', () => { + test('all converted manifests satisfy Manifest4', () => { + expect(Object.keys(manifestsByFixture).length).toBeGreaterThan(0); + }); +}); diff --git a/__tests__/presentation-types/p4-fixture-manifest-types.test.ts b/__tests__/presentation-types/p4-fixture-manifest-types.test.ts new file mode 100644 index 0000000..0a1509e --- /dev/null +++ b/__tests__/presentation-types/p4-fixture-manifest-types.test.ts @@ -0,0 +1,3314 @@ +import { describe, expect, test } from 'vitest'; +import type { Manifest as Manifest4 } from '../../src/presentation-4/types'; + +// Generated from fixtures/presentation-4 and fixtures/cookbook-v4 to preserve literal discriminants. +const manifestsByFixture = { + fixtures_cookbook_v4_0001_mvm_image_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Image Example (IIIF Presentation v4)" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "type": "Canvas", + "height": 1800, + "width": 1200, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/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": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_cookbook_v4_0002_mvm_audio_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Audio Example (IIIF Presentation v4)" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "type": "Timeline", + "duration": 1985.024, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page/annotation", + "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": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "type": "Timeline" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_cookbook_v4_0003_mvm_video_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Video Example (IIIF Presentation 4)" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "type": "Canvas", + "height": 360, + "width": 480, + "duration": 572.034, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_cookbook_v4_0608_mvm_3d_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/manifest.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://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/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": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "type": "Scene" + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_01_model_in_scene_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Single Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin, and then viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_02_model_with_background_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Single Model with background color" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the origin, with a background color of purple, and then viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "backgroundColor": "#FF00FE", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_03_perspective_camera_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with Explicit Perspective Camera" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin, and the camera at the scene origin facing -Z, then add default lighting" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with Model and Camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera 1" + ] + } + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_04_perpsective_camera_with_annotation_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with Explicit Perspective Camera Looking at an Annotation" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a perspective camera looking in the direction of the Model Annotation, and add default lighting" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with Model and Camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "lookAt": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_05_perspective_camerea_with_point_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with Explicit Perspective Camera Looking at a Point" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a perspective camera looking toward the PointSelector coordinates, and add default lighting" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with a Model and Camera Looking at a Point" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "lookAt": { + "type": "PointSelector", + "x": 2, + "y": 1, + "z": 0 + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_06_perspective_camera_with_choice_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/choice_of_cameras.json", + "type": "Manifest", + "label": { + "en": [ + "Choice of cameras WARNING use of Choice" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with two cameras, a perspective camera with field of view 50, and an orthographic camera, and add default lighting. The viewer defaults to the perspective camera but should offer the option to switch to the orthographic camera." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/choice", + "type": "Choice", + "items": [ + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "fieldOfView": 50, + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "lookAt": { + "type": "PointSelector", + "x": 2, + "y": 1, + "z": 0 + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/2", + "type": "OrthographicCamera", + "label": { + "en": [ + "Orthographic Camera 1" + ] + }, + "lookAt": { + "type": "PointSelector", + "x": 2, + "y": 1, + "z": 0 + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + } + ] + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_07_orthographic_camera_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/orthographic_camera.json", + "type": "Manifest", + "label": { + "en": [ + "Orthographic Camera" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and an Orthographic camera looking at the model, and add default lighting." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/2", + "type": "OrthographicCamera", + "label": { + "en": [ + "Orthographic Camera 1" + ] + }, + "lookAt": { + "type": "Annotation", + "id": "https://example.org/iiif/3d/anno1" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_08_ambient_light_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with Green AmbientLight" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with green AmbientLight, and add default camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with Model and AmbientLight" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "AmbientLight", + "label": { + "en": [ + "Ambient Green Light" + ] + }, + "color": "#00FF00", + "intensity": { + "type": "Value", + "value": 0.5, + "unit": "relative" + } + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_09_directional_light_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with DirectionalLight" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a DirectionalLight positioned at the point in the Scene defined by the PointSelector and facing the the Model, then add default camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with Model and DirectionalLight" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "DirectionalLight", + "label": { + "en": [ + "Directional Light 1" + ] + }, + "lookAt": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": 10 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_10_directional_light_rotated_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with Rotated DirectionalLight" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a DirectionalLight rotated 30 degrees on the x axis, then add default camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with Model and Rotated DirectionalLight" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "DirectionalLight", + "label": { + "en": [ + "Directional Light 1" + ] + } + }, + "transform": [ + { + "type": "RotateTransform", + "x": 30, + "y": 0, + "z": 0 + } + ] + }, + "target": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_11_multiple_lights_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Multiple lights with intensities and colors." + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin, and then viewer should add one red spotlight pointing at the front of the helmet, one blue spotlight point at the front-center of the model, and an ambient green light source. The viewer should add a default camera but NOT any other lighting." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Model with Two Spotlights and an Ambient light" + ] + }, + "backgroundColor": "#33404d", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "SpotLight", + "label": { + "en": [ + "Red Spot Light" + ] + }, + "color": "#ff0000", + "intensity": { + "type": "Value", + "value": 100, + "unit": "relative" + }, + "angle": 5 + }, + "transform": [ + { + "type": "RotateTransform", + "x": 90, + "y": 0, + "z": 0 + }, + { + "type": "TranslateTransform", + "x": 0, + "y": 3.5, + "z": 3.5 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "AmbientLight", + "label": { + "en": [ + "Green Ambient Light" + ] + }, + "color": "#7aff40", + "intensity": { + "type": "Value", + "value": 0.5, + "unit": "relative" + } + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "SpotLight", + "label": { + "en": [ + "Blue Spot Light" + ] + }, + "color": "#0f00ff", + "intensity": { + "type": "Value", + "value": 10, + "unit": "relative" + }, + "angle": 5 + }, + "transform": [ + { + "type": "RotateTransform", + "x": 90, + "y": 0, + "z": 0 + }, + { + "type": "TranslateTransform", + "x": 0, + "y": 2.5, + "z": 3.5 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "label": { + "en": [ + "Astronaut" + ] + }, + "format": "model/gltf-binary" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_12_mode_position_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_position.json", + "type": "Manifest", + "label": { + "en": [ + "Single Positioned Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at (-1,0,1), and then viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 1 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_13_mirrored_model_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_negative_scale_position.json", + "type": "Manifest", + "label": { + "en": [ + "Model shown normally and mirrored" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at normal scale but mirrored. Then the viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "ScaleTransform", + "x": -1, + "y": 1, + "z": 1 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_14_rotated_model_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_rotate_position.json", + "type": "Manifest", + "label": { + "en": [ + "Rotated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model rotated by 180 degrees around the Y axis" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_15_rotated_translated_model_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_rotate_translate_position.json", + "type": "Manifest", + "label": { + "en": [ + "Rotated Translated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model after rotating by 180 degrees around the Y axis, then translating 1 in X, resulting in him being at 1 in X" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + }, + { + "type": "TranslateTransform", + "x": 1, + "y": 0, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_16_rotated_translated_models_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_scale_position.json", + "type": "Manifest", + "label": { + "en": [ + "Scaled, Translated Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale after moving in the local coordinate space, and then the viewer should add default lighting and camera. Thus the model will end up at (5,4,4) due to doubling the scale of the local coordinate space." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "TranslateTransform", + "x": 2, + "y": 2, + "z": 2 + }, + { + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_17_rotated_scaled_models_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_scale_translate_position.json", + "type": "Manifest", + "label": { + "en": [ + "Scaled, Translated Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale after moving in the local coordinate space, and then the viewer should add default lighting and camera. Thus the model will end up at (3,2,2) due to doubling the scale of the local coordinate space." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + }, + { + "type": "TranslateTransform", + "x": 2, + "y": 2, + "z": 2 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_18_translated_rotated_model_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_translate_rotate_position.json", + "type": "Manifest", + "label": { + "en": [ + "Translated Rotated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model after moving 1 in X, then rotating by 180 degrees around the Y axis, resulting in him being at -1 in X" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "TranslateTransform", + "x": 1, + "y": 0, + "z": 0 + }, + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_19_scaled_models_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_translate_scale_position.json", + "type": "Manifest", + "label": { + "en": [ + "Scaled Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale, and then the viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_20_whale_cranium_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_cranium_and_mandible_position.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible Positioned" + ] + }, + "summary": { + "en": [ + "Renders two 3D models to display a whale skull. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_21_scene_within_canvas_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Scene with a Canvas" + ] + }, + "summary": { + "en": [ + "..." + ] + }, + "structures": [ + { + "id": "https://example.org/iiif/ranges/1", + "type": "Range", + "behavior": [ + "sequence" + ], + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ] + } + ], + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PolygonZSelector", + "value": "POLYGONZ((-1.0843 2.8273 -2, 1.0843 2.8273 -2, 1.0843 0 -2, -1.0843 0 -2))" + } + ] + } + } + ] + } + ] + }, + { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas", + "label": { + "en": [ + "Painting" + ] + }, + "backgroundColor": "#c0c0c0", + "height": 28273, + "width": 21687, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg", + "type": "Image", + "height": 28273, + "width": 21687, + "format": "image/jpeg", + "service": [ + { + "@id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "@type": "ImageService2", + "profile": "http://iiif.io/api/image/2/level1.json" + } + ] + }, + "target": "https://example.org/iiif/canvas/1" + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_22_scene_within_canvas_2_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Scene with a Canvas" + ] + }, + "summary": { + "en": [ + "..." + ] + }, + "structures": [ + { + "id": "https://example.org/iiif/ranges/1", + "type": "Range", + "behavior": [ + "sequence" + ], + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ] + } + ], + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PolygonZSelector", + "value": "POLYGONZ((-1.0843 2.8273 -2, -1.0843 0 -2, 1.0843 0 -2, 1.0843 2.8273 -2))" + } + ] + } + } + ] + } + ] + }, + { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas", + "label": { + "en": [ + "Painting" + ] + }, + "backgroundColor": "#c0c0c0", + "height": 28273, + "width": 21687, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg", + "type": "Image", + "height": 28273, + "width": 21687, + "format": "image/jpeg", + "service": [ + { + "@id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "@type": "ImageService2", + "profile": "http://iiif.io/api/image/2/level1.json" + } + ] + }, + "target": "https://example.org/iiif/canvas/1" + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_23_astronaut_comment_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/astronaut_comment.json", + "type": "Manifest", + "label": { + "en": [ + "Single Model with Comment Annotations" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and two comment annotations, one targeting a point near the astronaut's glove and the other targeting a point near the astronaut's helmet." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Glove", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1.075, + "y": 1.894, + "z": 0.204 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Helmet", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.006, + "y": 3.498, + "z": 0.703 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_24_multi_comment_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Single Model with Multilingual Comment Annotations" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and two multilingual comment annotations, one targeting a point near the astronaut's glove and the other targeting a point near the astronaut's helmet." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Single Model with Comment Annotations" + ], + "es": [ + "Modelo único con anotaciones de comentarios" + ] + }, + "backgroundColor": "#33404d", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "label": { + "en": [ + "Astronaut" + ] + }, + "format": "model/gltf-binary" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "type": "TextualBody", + "value": "Glove", + "language": "en", + "format": "text/plain" + }, + { + "type": "TextualBody", + "value": "Guante", + "language": "es", + "format": "text/plain" + } + ] + } + ], + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1.075, + "y": 1.894, + "z": 0.204 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "type": "TextualBody", + "value": "Helmet", + "language": "en", + "format": "text/plain" + }, + { + "type": "TextualBody", + "value": "Casco", + "language": "es", + "format": "text/plain" + } + ] + } + ], + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.006, + "y": 3.498, + "z": 0.703 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_25_whale_comment_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation" + ] + }, + "summary": { + "en": [ + "Simple text comment on point on whale cranium. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Right pterygoid hamulus", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_26_whale_comment_camera_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). The label body should still be viewable from the camera perspective." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000 + }, + "transform": [ + { + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -0.25, + "y": 0, + "z": -0.5 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": { + "type": "TextualBody", + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "language": "en", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ] + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_27_whale_comment_position_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). The label body should still be viewable from the camera perspective." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000 + }, + "transform": [ + { + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -0.25, + "y": 0, + "z": -0.5 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": { + "type": "TextualBody", + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "language": "en", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ] + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_28_whale_camera_rotate_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position_rotate.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). However, the label body has also been rotated to face away away from the camera perspective." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000 + }, + "transform": [ + { + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -0.25, + "y": 0, + "z": -0.5 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": { + "type": "TextualBody", + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "language": "en", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ], + "transform": [ + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + ] + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, + fixtures_presentation_4_29_whale_camera_shape_json: { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment_point_polygon.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point and 2D Shape Comment Annotations" + ] + }, + "summary": { + "en": [ + "Multiple commenting annotations with camera view. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A first commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). A second commenting annotation for a 2D polygon outlining the foramen magnum, the large hole through which the spinal cord passes, should also be rendered. Both commenting annotations are intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see both commenting annotations clearly." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Right pterygoid hamulus", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno5", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000 + }, + "transform": [ + { + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -0.25, + "y": 0, + "z": -0.5 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Foramen magnum", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "WKTSelector", + "value": "POLYGON Z ((0 0.18 -0.23, -0.03 0.16 -0.23, -0.015 0.12 -0.23, 0.006 0.12 -0.23, 0.027 0.16 -0.230))" + } + ] + } + } + ] + } + ] + } + ] + } satisfies Manifest4, +} as const; + +describe('presentation-4 manifest fixture typing', () => { + test('all p4 manifest fixtures satisfy Manifest4', () => { + expect(Object.keys(manifestsByFixture)).toHaveLength(33); + }); +}); diff --git a/__tests__/presentation-types/p4-normalized-store-types.test.ts b/__tests__/presentation-types/p4-normalized-store-types.test.ts new file mode 100644 index 0000000..628c762 --- /dev/null +++ b/__tests__/presentation-types/p4-normalized-store-types.test.ts @@ -0,0 +1,118025 @@ +import { describe, expect, test } from 'vitest'; +import type { Presentation4Entities } from '../../src/presentation-4-normalized/types'; + +// Generated by scripts/generate-p4-normalized-store-type-test.mjs from p4 fixtures and converted manifests. +const normalizedStoresByFixture = { + "3_to_4_converted_2_to_3_converted_manifests_british_library_manifest": { + "Collection": {}, + "Manifest": { + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000001", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000002", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000003", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000004", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000005", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "Digital Store 12603.h.15." + ] + } + }, + { + "label": { + "@none": [ + "Held by" + ] + }, + "value": { + "@none": [ + "The British Library" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]" + ] + } + }, + { + "label": { + "@none": [ + "Creator" + ] + }, + "value": { + "@none": [ + "Dickens, Charles" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Undetermined" + ] + } + }, + { + "label": { + "@none": [ + "Catalogue record" + ] + }, + "value": { + "@none": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "@none": [ + "Digitised from" + ] + }, + "value": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]." + ] + } + }, + { + "label": { + "@none": [ + "Citation" + ] + }, + "value": { + "@none": [ + "Dickens, Charles, The Works of Charles Dickens. Household edition. [With illustrations.] <http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E>" + ] + } + }, + { + "label": { + "@none": [ + "Digitised by" + ] + }, + "value": { + "@none": [ + "The British Library" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Item supplied by the British Library" + ] + } + } + ], + "provider": [], + "thumbnail": [ + { + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1", + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1", + "service": [], + "profile": "http://iiif.io/api/auth/0/token" + } + ], + "profile": "http://iiif.io/api/auth/0/login", + "description": "Some content may only be available to registered readers or staff. Please log-in to The British Library to continue.", + "header": "Please Log-In", + "label": "Login to The British Library" + }, + { + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E", + "type": "SearchService1", + "service": [ + { + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E/autocomplete", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words in this item" + } + ], + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this item" + }, + { + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_00000004216E", + "type": "Service", + "service": [], + "profile": "http://universalviewer.io/share-extensions-profile" + }, + { + "id": "http://access.bl.uk/item/feedback/ark:/81055/vdc_00000004216E", + "type": "Service", + "service": [], + "profile": "http://universalviewer.io/feedback-extensions-profile" + }, + { + "id": "http://access.bl.uk/item/print/ark:/81055/vdc_00000004216E", + "type": "Service", + "service": [], + "profile": "http://universalviewer.io/print-extensions-profile" + } + ], + "services": [], + "homepage": [ + { + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]" + ] + }, + "logo": [ + { + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "ContentResource" + } + ], + "rights": "https://creativecommons.org/publicdomain/mark/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Public Domain

" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/585ba371-e4e1-43ab-88b0-8c66134e7c0f", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000001", + "type": "ContentResource" + }, + { + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000001", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "1" + ] + }, + "width": 2181, + "height": 2920, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/585ba371-e4e1-43ab-88b0-8c66134e7c0f", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": [ + { + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000001", + "type": "ContentResource" + }, + { + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000001", + "type": "ContentResource" + } + ], + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + }, + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000001", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "seeAlso": [], + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000002", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000003", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000004", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000005", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/585ba371-e4e1-43ab-88b0-8c66134e7c0f": { + "id": "https://example.org/uuid/585ba371-e4e1-43ab-88b0-8c66134e7c0f", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/uuid/da433b74-66b1-492d-b9d8-74211014f1ca", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "id": "https://example.org/uuid/585ba371-e4e1-43ab-88b0-8c66134e7c0f", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/uuid/da433b74-66b1-492d-b9d8-74211014f1ca": { + "id": "https://example.org/uuid/da433b74-66b1-492d-b9d8-74211014f1ca", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/585ba371-e4e1-43ab-88b0-8c66134e7c0f", + "id": "https://example.org/uuid/da433b74-66b1-492d-b9d8-74211014f1ca", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001/full/max/0/default.jpg": { + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 2181, + "height": 2920, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/da433b74-66b1-492d-b9d8-74211014f1ca", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000001": { + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000001", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000001", + "type": "Dataset" + } + ] + }, + "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000001": { + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000001", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000001", + "type": "Dataset" + } + ] + }, + "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg": { + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E": { + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "label": { + "@none": [ + "View at the British Library" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E", + "type": "Text" + } + ] + }, + "https://www.bl.uk/images/bl_logo_100.gif": { + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "Image" + } + ] + } + }, + "Range": { + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000001": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000001", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Section" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000001", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000002": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000002", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Title" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000002", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000003": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000003", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Table of Contents" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000003", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000004": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000004", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Table of Contents" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000004", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000005": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000005", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Section" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000005", + "type": "Range" + } + ] + } + }, + "Service": { + "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001": { + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 2181, + "height": 2920, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001/full/max/0/default.jpg", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "width": {}, + "height": {}, + "tiles": {}, + "profile": {} + } + ] + }, + "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007": { + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "width": {}, + "height": {}, + "tiles": {}, + "profile": {} + } + ] + }, + "https://api.bl.uk/auth/iiif/token": { + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1", + "service": [], + "profile": "http://iiif.io/api/auth/0/token", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/auth/iiif/login", + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1" + } + ] + }, + "https://api.bl.uk/auth/iiif/login": { + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1", + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1", + "service": [], + "profile": "http://iiif.io/api/auth/0/token" + } + ], + "profile": "http://iiif.io/api/auth/0/login", + "description": "Some content may only be available to registered readers or staff. Please log-in to The British Library to continue.", + "header": "Please Log-In", + "label": "Login to The British Library", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1" + } + ] + }, + "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E/autocomplete": { + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E/autocomplete", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words in this item", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E", + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E/autocomplete", + "type": "AutoCompleteService1" + } + ] + }, + "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E": { + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E", + "type": "SearchService1", + "service": [ + { + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E/autocomplete", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words in this item" + } + ], + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this item", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E", + "type": "SearchService1" + } + ] + }, + "http://access.bl.uk/item/share/ark:/81055/vdc_00000004216E": { + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_00000004216E", + "type": "Service", + "service": [], + "profile": "http://universalviewer.io/share-extensions-profile", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_00000004216E", + "type": "Service" + } + ] + }, + "http://access.bl.uk/item/feedback/ark:/81055/vdc_00000004216E": { + "id": "http://access.bl.uk/item/feedback/ark:/81055/vdc_00000004216E", + "type": "Service", + "service": [], + "profile": "http://universalviewer.io/feedback-extensions-profile", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "http://access.bl.uk/item/feedback/ark:/81055/vdc_00000004216E", + "type": "Service" + } + ] + }, + "http://access.bl.uk/item/print/ark:/81055/vdc_00000004216E": { + "id": "http://access.bl.uk/item/print/ark:/81055/vdc_00000004216E", + "type": "Service", + "service": [], + "profile": "http://universalviewer.io/print-extensions-profile", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "id": "http://access.bl.uk/item/print/ark:/81055/vdc_00000004216E", + "type": "Service" + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_data_getty_edu_museum_api_iiif_298147_manifest": { + "Collection": { + "http://www.getty.edu/art/collection/": { + "id": "http://www.getty.edu/art/collection/", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "id": "http://www.getty.edu/art/collection/", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "https://data.getty.edu/museum/api/iiif/298147/manifest.json": { + "id": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Artist / Maker" + ] + }, + "value": { + "@none": [ + "Jean-Antoine Watteau (French, 1684 - 1721)" + ] + } + }, + { + "label": { + "@none": [ + "Culture & Date" + ] + }, + "value": { + "@none": [ + "French, 1718–1719" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Oil on panel" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "36.4 × 28.2 cm (14 5/16 × 11 1/8 in.)" + ] + } + }, + { + "label": { + "@none": [ + "Object Number" + ] + }, + "value": { + "@none": [ + "2017.72" + ] + } + }, + { + "label": { + "@none": [ + "Object Type" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + }, + { + "label": { + "@none": [ + "Place Created" + ] + }, + "value": { + "@none": [ + "France" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "The J. Paul Getty Museum" + ] + } + }, + { + "label": { + "@none": [ + "Rights Statement" + ] + }, + "value": { + "@none": [ + "
Images provided here are believed to be in the public domain and are made available under the terms of the Getty's Open Content Program. Texts provided here are © J. Paul Getty Trust, licensed under CC BY 4.0. Terms of use for the Getty logo can be found here.
" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://www.getty.edu/legal/copyright.html#oc" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "In a verdant park at sunset, a young woman abandons herself to her tousle-haired companion’s ardent embrace. Coiled up in a pose of centrifugal energy, the impulsive lovers are oblivious to the third figure: Mezzetin, sitting on the same rocky outcrop. Drawn from the theatrical tradition of the commedia dell’arte, this character represents a poignant foil to the couple’s unbridled passion. Introverted and with a melancholy air, he tunes his guitar, knowing that his serenading will mean nothing to the lovers and serve only to heighten his own sense of lonely longing as he gazes upon them. His costume, a rose-coloured jacket and knee-britches slashed with yellow and adorned with blue ribbons as well as a lace ruff and cuffs, is reminiscent of the paintings of Anthony van Dyck. The small dog at lower right, a quotation from Rubens, watches the couple with considerably more appreciation than Mezzetin can muster." + ] + } + } + ], + "provider": [], + "thumbnail": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://www.getty.edu/art/collection/objects/298147/jean-antoine-watteau-la-surprise-french-1718-1719/", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [ + { + "id": "http://www.getty.edu/art/collection/", + "type": "Collection" + } + ], + "annotations": [], + "label": { + "@none": [ + "La Surprise (1718–1719), Jean-Antoine Watteau (French, 1684 - 1721)" + ] + }, + "viewingDirection": "left-to-right", + "logo": [ + { + "id": "http://www.getty.edu/museum/media/graphics/web/logos/getty-logo.png", + "type": "ContentResource" + } + ], + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Digital image courtesy of the Getty's Open Content Program." + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "id": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://data.getty.edu/museum/api/iiif/298147/canvas/main": { + "id": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/7817ebfa-5c4b-4dc6-8af9-8dd6043ed31a", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Main Image" + ] + }, + "width": 4937, + "height": 6406, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "id": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/7817ebfa-5c4b-4dc6-8af9-8dd6043ed31a", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/7817ebfa-5c4b-4dc6-8af9-8dd6043ed31a": { + "id": "https://example.org/uuid/7817ebfa-5c4b-4dc6-8af9-8dd6043ed31a", + "type": "AnnotationPage", + "items": [ + { + "id": "https://data.getty.edu/museum/api/iiif/298147/annotation/main-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "id": "https://example.org/uuid/7817ebfa-5c4b-4dc6-8af9-8dd6043ed31a", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://data.getty.edu/museum/api/iiif/298147/annotation/main-image": { + "id": "https://data.getty.edu/museum/api/iiif/298147/annotation/main-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/789,1024/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/7817ebfa-5c4b-4dc6-8af9-8dd6043ed31a", + "id": "https://data.getty.edu/museum/api/iiif/298147/annotation/main-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://data.getty.edu/museum/api/iiif/633385/full/789,1024/0/default.jpg": { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/789,1024/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 789, + "height": 1024, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/annotation/main-image", + "id": "https://data.getty.edu/museum/api/iiif/633385/full/789,1024/0/default.jpg", + "type": "Image" + } + ] + }, + "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg": { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "Image", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "language": [], + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "Image" + } + ] + }, + "https://www.getty.edu/art/collection/objects/298147/jean-antoine-watteau-la-surprise-french-1718-1719/": { + "id": "https://www.getty.edu/art/collection/objects/298147/jean-antoine-watteau-la-surprise-french-1718-1719/", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "id": "https://www.getty.edu/art/collection/objects/298147/jean-antoine-watteau-la-surprise-french-1718-1719/", + "type": "Text" + } + ] + }, + "http://www.getty.edu/museum/media/graphics/web/logos/getty-logo.png": { + "id": "http://www.getty.edu/museum/media/graphics/web/logos/getty-logo.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "id": "http://www.getty.edu/museum/media/graphics/web/logos/getty-logo.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://data.getty.edu/museum/api/iiif/633385": { + "id": "https://data.getty.edu/museum/api/iiif/633385", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.getty.edu/museum/api/iiif/633385/full/789,1024/0/default.jpg", + "id": "https://data.getty.edu/museum/api/iiif/633385", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_data_ucd_ie_api_img_manifests_ucdlib_33064": { + "Collection": { + "https://data.ucd.ie/api/img/collection/ucdlib:33058": { + "id": "https://data.ucd.ie/api/img/collection/ucdlib:33058", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Dublin Town Planning Competition 1914" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://data.ucd.ie/api/img/collection/ucdlib:33058", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "https://data.ucd.ie/api/img/manifests/ucdlib:33064": { + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "type": "Manifest", + "items": [ + { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064/sequence/normal", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Housing Plans for Greater Dublin" + ] + } + }, + { + "label": { + "@none": [ + "Type of resource" + ] + }, + "value": { + "@none": [ + "dctypes:StillImage" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "@none": [ + "Urbana, Ill." + ] + } + }, + { + "label": { + "@none": [ + "created" + ] + }, + "value": { + "@none": [ + "1914" + ] + } + }, + { + "label": { + "@none": [ + "Exhibitions" + ] + }, + "value": { + "@none": [ + "A label included with the drawings indicates that Cushing Smith later exhibited the drawings in the Thirtieth Annual Chicago Architectural Exhibition, Art Institute of Chicago, 5-29 April, 1917." + ] + } + }, + { + "label": { + "@none": [ + "Ownership/custodial history" + ] + }, + "value": { + "@none": [ + "The drawings were donated to the Wilmette Historical Museum, Wilmette, Illinois by Cushing Smith's granddaughter, Mary Duke Smith, and daughter-in-law, Joan Smith. With the Smiths permission, Wilmette Historical Museum donated the drawings to the Irish Architectural Archive in 2011." + ] + } + }, + { + "label": { + "@none": [ + "permalink" + ] + }, + "value": { + "@none": [ + "doi:10.7925/drs1.ucdlib_33064" + ] + } + }, + { + "label": { + "@none": [ + "topic-LCSH" + ] + }, + "value": { + "@none": [ + "City planning", + "Architecture, Domestic" + ] + } + }, + { + "label": { + "@none": [ + "genre" + ] + }, + "value": { + "@none": [ + "Competition drawings" + ] + } + }, + { + "label": { + "@none": [ + "genre" + ] + }, + "value": { + "@none": [ + "Architectural drawings" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Drawing submitted by F.A. Cushing Smith to the town plan for Dublin international competition organised by the Civics Institute of Ireland in 1914. Cushing Smith was the sole US entrant and also one of only two single-person entrants. His address at the time of the competition was the University Club, Urbana, Illinois. To ensure anonymity during the adjudication process his entry was give the designation 'B'. Aside from the winners, the adjudicators were unanimous in giving Honourable Mention to four entries including Cushing Smith's. This drawing includes plans and elevations for various types of housing and a block plan of suburban house arrangements." + ] + } + } + ], + "provider": [], + "thumbnail": [ + { + "id": "https://digital.ucd.ie/get/ucdlib:33064/thumbnail", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [ + { + "id": "https://digital.ucd.ie/view/ucdlib:33064.xml", + "type": "ContentResource" + }, + { + "id": "https://digital.ucd.ie/view/ucdlib:33064.n3", + "type": "ContentResource" + }, + { + "id": "https://data.ucd.ie/api/edm/v1/ucdlib:33064", + "type": "ContentResource" + }, + { + "id": "https://digital.ucd.ie/view/ucdlib:33064.rdf", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [ + { + "id": "https://data.ucd.ie/api/img/collection/ucdlib:33058", + "type": "Collection" + } + ], + "annotations": [], + "logo": [ + { + "id": "https://digital.ucd.ie/images/logos/ucd_logo_sm.png", + "type": "ContentResource" + } + ], + "label": { + "@none": [ + "Housing Plans for Greater Dublin" + ] + }, + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Irish Architectural Archive" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543": { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/46df4103-9fa4-4f30-b85d-f01fc6bbaa9c", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "vault://iiif-parser/v4/Service/3a33007a", + "type": "Service", + "service": [], + "profile": "http://iiif.io/api/annex/services/physdim", + "physicalScale": 0.00333333333333333, + "physicalUnits": "in" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "recto" + ] + }, + "width": 14451, + "height": 14214, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/46df4103-9fa4-4f30-b85d-f01fc6bbaa9c", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": [ + { + "id": "vault://iiif-parser/v4/Service/3a33007a", + "type": "Service", + "service": [], + "profile": "http://iiif.io/api/annex/services/physdim", + "physicalScale": 0.00333333333333333, + "physicalUnits": "in" + } + ], + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + }, + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064/sequence/normal", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "service": [], + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/46df4103-9fa4-4f30-b85d-f01fc6bbaa9c": { + "id": "https://example.org/uuid/46df4103-9fa4-4f30-b85d-f01fc6bbaa9c", + "type": "AnnotationPage", + "items": [ + { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/annotation/ucdlib:33543", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "id": "https://example.org/uuid/46df4103-9fa4-4f30-b85d-f01fc6bbaa9c", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://data.ucd.ie/api/img/ucdlib:33064/annotation/ucdlib:33543": { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/annotation/ucdlib:33543", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.ucd.ie/loris/ucdlib:33543/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/46df4103-9fa4-4f30-b85d-f01fc6bbaa9c", + "id": "https://data.ucd.ie/api/img/ucdlib:33064/annotation/ucdlib:33543", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.ucd.ie/loris/ucdlib:33543/full/full/0/default.jpg": { + "id": "https://iiif.ucd.ie/loris/ucdlib:33543/full/full/0/default.jpg", + "type": "dcTypes:Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ucd.ie/loris/ucdlib:33543", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 14214, + "width": 14451, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/ucdlib:33064/annotation/ucdlib:33543", + "id": "https://iiif.ucd.ie/loris/ucdlib:33543/full/full/0/default.jpg", + "type": "dcTypes:Image" + } + ] + }, + "https://digital.ucd.ie/get/ucdlib:33064/thumbnail": { + "id": "https://digital.ucd.ie/get/ucdlib:33064/thumbnail", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://digital.ucd.ie/get/ucdlib:33064/thumbnail", + "type": "Image" + } + ] + }, + "https://digital.ucd.ie/view/ucdlib:33064.xml": { + "id": "https://digital.ucd.ie/view/ucdlib:33064.xml", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/xml", + "profile": "http://www.loc.gov/mods/v3", + "label": { + "@none": [ + "MODS metadata describing this object" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://digital.ucd.ie/view/ucdlib:33064.xml", + "type": "Dataset" + } + ] + }, + "https://digital.ucd.ie/view/ucdlib:33064.n3": { + "id": "https://digital.ucd.ie/view/ucdlib:33064.n3", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/rdf+n3", + "label": { + "@none": [ + "RDF n3 serialisation of metadata describing this object" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://digital.ucd.ie/view/ucdlib:33064.n3", + "type": "Dataset" + } + ] + }, + "https://data.ucd.ie/api/edm/v1/ucdlib:33064": { + "id": "https://data.ucd.ie/api/edm/v1/ucdlib:33064", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/x.europeana-edm+xml", + "label": { + "@none": [ + "EDM (Europeana Data Model) RDF metadata" + ] + }, + "profile": "http://www.europeana.eu/schemas/edm/", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://data.ucd.ie/api/edm/v1/ucdlib:33064", + "type": "Dataset" + } + ] + }, + "https://digital.ucd.ie/view/ucdlib:33064.rdf": { + "id": "https://digital.ucd.ie/view/ucdlib:33064.rdf", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/rdf+xml", + "label": { + "@none": [ + "RDF-XML metadata describing this object" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://digital.ucd.ie/view/ucdlib:33064.rdf", + "type": "Dataset" + } + ] + }, + "https://digital.ucd.ie/images/logos/ucd_logo_sm.png": { + "id": "https://digital.ucd.ie/images/logos/ucd_logo_sm.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://digital.ucd.ie/images/logos/ucd_logo_sm.png", + "type": "Image" + } + ] + } + }, + "Range": { + "https://data.ucd.ie/api/img/manifests/ucdlib:33064/sequence/normal": { + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064/sequence/normal", + "type": "Range", + "items": [ + { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "sequence", + "individuals" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Current Page Order" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064/sequence/normal", + "type": "Range" + } + ] + } + }, + "Service": { + "https://iiif.ucd.ie/loris/ucdlib:33543": { + "id": "https://iiif.ucd.ie/loris/ucdlib:33543", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ucd.ie/loris/ucdlib:33543/full/full/0/default.jpg", + "id": "https://iiif.ucd.ie/loris/ucdlib:33543", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "vault://iiif-parser/v4/Service/3a33007a": { + "id": "vault://iiif-parser/v4/Service/3a33007a", + "type": "Service", + "service": [], + "profile": "http://iiif.io/api/annex/services/physdim", + "physicalScale": 0.00333333333333333, + "physicalUnits": "in", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "id": "vault://iiif-parser/v4/Service/3a33007a", + "type": "Service" + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_demos_biblissima_condorcet_fr_iiif_metadata_bvmm_chateauroux_manifest": { + "Collection": {}, + "Manifest": { + "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json": { + "id": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "Reconstructed manuscrit (partial reconstruction)" + ] + } + }, + { + "label": { + "@none": [ + "Holding institution (manuscript)" + ] + }, + "value": { + "@none": [ + "Bibliothèque municipale de Châteauroux" + ] + } + }, + { + "label": { + "@none": [ + "Holding institution (cuttings)" + ] + }, + "value": { + "@none": [ + "Bibliothèque nationale de France, Département des Estampes et de la photographie" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmarks" + ] + }, + "value": { + "@none": [ + "Châteauroux, Bibliothèque municipale, ms. 5", + "Paris, BnF, Département des Estampes et de la photographie, RESERVE 4-AD-133" + ] + } + }, + { + "label": { + "@none": [ + "Images Providers" + ] + }, + "value": { + "@none": [ + "Gallica - Bibliothèque nationale de France", + "BVMM (IRHT-CNRS) - Bibliothèque municipale de Châteauroux" + ] + } + }, + { + "label": { + "@none": [ + "Manifest Provider" + ] + }, + "value": { + "@none": [ + "Equipex Biblissima" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This manifest is a partial reconstruction of the Grandes Chroniques de France manuscript (Châteauroux, BM, ms 5 ; full page images coming from the BVMM). The miniatures are associated as detail images on their respective canvas (images coming from Gallica). It only shows the mutilated pages of the original manuscript, not the full object." + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Catalogue record (CCFr)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Digitized miscellany containing the miniatures (Gallica)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Digitized miniatures, retail (Gallica)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Catalogue record of the miscellany (BnF)" + ] + } + } + ], + "provider": [], + "thumbnail": [ + { + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/150,/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "http://bvmm.irht.cnrs.fr/consult/consult.php?reproductionId=4490", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Reconstructed manifest (partial): Grandes Chroniques de France (Châteauroux, BM, ms 5)" + ] + }, + "logo": [ + { + "id": "http://static.biblissima.fr/images/logo-biblissima-350w.jpg", + "type": "ContentResource" + } + ], + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Images : Gallica - Bibliothèque nationale de France / BVMM (IRHT-CNRS) - Bibliothèque municipale de Châteauroux ; Manifest IIIF : Régis Robineau (Biblissima)" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "id": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394": { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/59103bf1-d5b2-48f3-bcdb-757a43bd6d2b", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "@explicit": true, + "label": {}, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771", + "type": "AnnotationPage" + } + ], + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "type": "Canvas" + } + ], + "label": { + "@none": [ + "f. 033v - 034" + ] + }, + "height": 5412, + "width": 7216 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771": { + "id": "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/uuid/e9618d7e-ed21-47ed-ad33-4206ed79762e", + "type": "Annotation" + }, + { + "id": "https://example.org/uuid/59103bf1-d5b2-48f3-bcdb-757a43bd6d2b", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "id": "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/uuid/e9618d7e-ed21-47ed-ad33-4206ed79762e": { + "id": "https://example.org/uuid/e9618d7e-ed21-47ed-ad33-4206ed79762e", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771", + "id": "https://example.org/uuid/e9618d7e-ed21-47ed-ad33-4206ed79762e", + "type": "Annotation" + } + ] + }, + "https://example.org/uuid/59103bf1-d5b2-48f3-bcdb-757a43bd6d2b": { + "id": "https://example.org/uuid/59103bf1-d5b2-48f3-bcdb-757a43bd6d2b", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1/full/full/0/native.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/144770f7", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=3949,994,1091,1232" + } + ], + "transform": [], + "action": [], + "source": { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771", + "id": "https://example.org/uuid/59103bf1-d5b2-48f3-bcdb-757a43bd6d2b", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/full/0/default.jpg": { + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/e9618d7e-ed21-47ed-ad33-4206ed79762e", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1/full/full/0/native.jpg": { + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1/full/full/0/native.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 2138, + "height": 2414, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/59103bf1-d5b2-48f3-bcdb-757a43bd6d2b", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1/full/full/0/native.jpg", + "type": "Image" + } + ] + }, + "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/150,/0/default.jpg": { + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/150,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/150,/0/default.jpg", + "type": "Image" + } + ] + }, + "http://bvmm.irht.cnrs.fr/consult/consult.php?reproductionId=4490": { + "id": "http://bvmm.irht.cnrs.fr/consult/consult.php?reproductionId=4490", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Digitized manuscript (BVMM, IRHT-CNRS)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "id": "http://bvmm.irht.cnrs.fr/consult/consult.php?reproductionId=4490", + "type": "Text" + } + ] + }, + "http://static.biblissima.fr/images/logo-biblissima-350w.jpg": { + "id": "http://static.biblissima.fr/images/logo-biblissima-350w.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "id": "http://static.biblissima.fr/images/logo-biblissima-350w.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038": { + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/full/0/default.jpg", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1": { + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1/full/full/0/native.jpg", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1", + "type": "ImageService1", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/144770f7": { + "id": "vault://iiif-parser/v4/Selector/144770f7", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=3949,994,1091,1232" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_dzkimgs_l_u_tokyo_ac_jp_iiif_zuzoubu_12b02_manifest": { + "Collection": {}, + "Manifest": { + "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json": { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Author" + ] + }, + "value": { + "@none": [ + "高楠順次郎" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "ja": [ + "大蔵出版" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "大正新脩大藏經 図像部" + ] + } + }, + { + "label": { + "@none": [ + "manifest URI" + ] + }, + "value": { + "@none": [ + "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "大正新脩大藏經図像部" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [ + "paged" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "大正新脩大藏經図像部第12b02巻" + ] + }, + "viewingDirection": "right-to-left", + "logo": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/satlogo80.png", + "type": "ContentResource" + } + ], + "rights": "http://creativecommons.org/licenses/by-sa/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "大蔵出版(Daizo shuppan) and SAT大蔵経テキストデータベース研究会(SAT Daizōkyō Text Database Committee) " + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025": { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/3c1e463e-7ce0-46e2-b91d-e21786168d7c", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/list/p0001-0025.json", + "type": "AnnotationPage" + } + ], + "label": { + "@none": [ + "" + ] + }, + "width": 22779, + "height": 30000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/3c1e463e-7ce0-46e2-b91d-e21786168d7c", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/list/p0001-0025.json", + "type": "AnnotationPage" + } + ], + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/3c1e463e-7ce0-46e2-b91d-e21786168d7c": { + "id": "https://example.org/uuid/3c1e463e-7ce0-46e2-b91d-e21786168d7c", + "type": "AnnotationPage", + "items": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/ano0001-0025", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "id": "https://example.org/uuid/3c1e463e-7ce0-46e2-b91d-e21786168d7c", + "type": "AnnotationPage" + } + ] + }, + "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/list/p0001-0025.json": { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/list/p0001-0025.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/list/p0001-0025.json", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/ano0001-0025": { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/ano0001-0025", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/3c1e463e-7ce0-46e2-b91d-e21786168d7c", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/ano0001-0025", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif/full/full/0/default.jpg": { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 22779, + "height": 30000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/ano0001-0025", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/satlogo80.png": { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/satlogo80.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/satlogo80.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif": { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif/full/full/0/default.jpg", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_ghent_university_manifest": { + "Collection": {}, + "Manifest": { + "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91": { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "type": "Manifest", + "items": [ + { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Record" + ] + }, + "value": { + "@none": [ + "https://lib.ugent.be/catalog/rug01%3A001484515/items/800000096237" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "[papyrus] Document uit het archief van de dichter Dioskoros van Aphrodite (?)." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "34 regels ; 29 x 72,5 cm." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Papyrus" + ] + } + }, + { + "label": { + "@none": [ + "Publisher" + ] + }, + "value": { + "@none": [ + "537-538?" + ] + } + }, + { + "label": { + "@none": [ + "Provenance" + ] + }, + "value": { + "@none": [ + "BHSL.PAP.000044 Herkomst: Aphroditô" + ] + } + }, + { + "label": { + "@none": [ + "Contents" + ] + }, + "value": { + "@none": [ + "Het document bevat een overeenkomst tussen een corporatie en haar leiders. De leden van de corporatie van jagers (en waarschijnlijk ook van vissers) gaan de verbintenis aan t.o.v. Flavius Hermauos en Flavius Dios, hen als hun chefs te erkennen voor de duu" + ] + } + }, + { + "label": { + "@none": [ + "Object ID" + ] + }, + "value": { + "@none": [ + "archive.ugent.be:4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Het document bevat een overeenkomst tussen een corporatie en haar leiders. De leden van de corporatie van jagers (en waarschijnlijk ook van vissers) gaan de verbintenis aan t.o.v. Flavius Hermauos en Flavius Dios, hen als hun chefs te erkennen voor de duu" + ] + } + } + ], + "provider": [], + "thumbnail": [ + { + "id": "https://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [ + { + "id": "https://lib.ugent.be/catalog/rug01%3A001484515.marcxml", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://lib.ugent.be/viewer/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "logo": [ + { + "id": "http://adore.ugent.be/IIIF/img/logo_i.svg", + "type": "ContentResource" + } + ], + "label": { + "@none": [ + "Document uit het archief van de dichter Dioskoros van Aphrodite (?)[manuscript]" + ] + }, + "rights": "http://rightsstatements.org/vocab/UND/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by Ghent University Library" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1": { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/e68bf9f3-4544-4e31-a4cf-ef0810019f76", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1&svc_id=original", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "1" + ] + }, + "height": 15076, + "width": 6215, + "rights": "http://rightsstatements.org/vocab/UND/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by Ghent University Library" + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/e68bf9f3-4544-4e31-a4cf-ef0810019f76", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": [ + { + "id": "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1&svc_id=original", + "type": "ContentResource" + } + ], + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {}, + "rights": {}, + "requiredStatement": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/e68bf9f3-4544-4e31-a4cf-ef0810019f76": { + "id": "https://example.org/uuid/e68bf9f3-4544-4e31-a4cf-ef0810019f76", + "type": "AnnotationPage", + "items": [ + { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1/image-annotations/0", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "id": "https://example.org/uuid/e68bf9f3-4544-4e31-a4cf-ef0810019f76", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1/image-annotations/0": { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1/image-annotations/0", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/full/full/0/native.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/e68bf9f3-4544-4e31-a4cf-ef0810019f76", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1/image-annotations/0", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/full/full/0/native.jpg": { + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/full/full/0/native.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 15076, + "label": { + "@none": [ + "BHSL-PAP-000044_2010_0001_AC.jp2" + ] + }, + "width": 6215, + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1/image-annotations/0", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/full/full/0/native.jpg", + "type": "Image" + } + ] + }, + "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg": { + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg", + "type": "Image" + } + ] + }, + "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1&svc_id=original": { + "id": "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1&svc_id=original", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jp2", + "label": { + "@none": [ + "Download as jpeg2000 (78.77 MB)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "id": "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1&svc_id=original", + "type": "Image" + } + ] + }, + "https://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg": { + "id": "https://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "id": "https://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg", + "type": "Image" + } + ] + }, + "https://lib.ugent.be/viewer/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91": { + "id": "https://lib.ugent.be/viewer/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "id": "https://lib.ugent.be/viewer/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "type": "Text" + } + ] + }, + "https://lib.ugent.be/catalog/rug01%3A001484515.marcxml": { + "id": "https://lib.ugent.be/catalog/rug01%3A001484515.marcxml", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "dcterms:format": "application/marcxml+xml", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "id": "https://lib.ugent.be/catalog/rug01%3A001484515.marcxml", + "type": "Dataset" + } + ] + }, + "http://adore.ugent.be/IIIF/img/logo_i.svg": { + "id": "http://adore.ugent.be/IIIF/img/logo_i.svg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "id": "http://adore.ugent.be/IIIF/img/logo_i.svg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1": { + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/full/full/0/native.jpg", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_iiif_bodleian_ox_ac_uk_iiif_manifest_60834383_7146_41ab_bfe1_48ee97bc04be": { + "Collection": {}, + "Manifest": { + "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json": { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json", + "type": "Manifest", + "items": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Digital.Bodleian" + ] + }, + "value": { + "@none": [ + "View at: Digital.Bodleian" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "MS. Bodl. 264" + ] + } + }, + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "Multi-page record" + ] + } + }, + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "GEN" + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1400" + ] + } + }, + { + "label": { + "@none": [ + "Catalogueid" + ] + }, + "value": { + "@none": [ + "SC: 2464" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Romance of Alexander, Alexander and Dindimus, Li Livres du Graunt Caam" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "ox:uuid: urn:uuid:60834383-7146-41ab-bfe1-48ee97bc04be" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "goobi:PPNanalog: SC: 2464" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "ox:shelfmark: MS. Bodl. 264" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "Western Manuscripts" + ] + } + }, + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "Bruges?" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "(fols. 3r-208r) The Romance of Alexander in French verse, with miniatures illustrating legends of Alexander the Great and with marginal scenes of everyday life, by the Flemish illuminator Jehan de Grise and his workshop, 1338-44; with two sections added in England c. 1400, (fols. 209r-215v, with fol. 1r) Alexander and Dindimus (Alexander Fragment B) in Middle English verse, with coarser miniatures, and (fols. 218r- 71v, with fol. 2v) Marco Polo, Li Livres du Graunt Caam, in French prose, with miniatures by Johannes and his school." + ] + } + }, + { + "label": { + "@none": [ + "Id" + ] + }, + "value": { + "@none": [ + "60834383-7146-41ab-bfe1-48ee97bc04be" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "(fols. 3r-208r) The Romance of Alexander in French verse, with miniatures illustrating legends of Alexander the Great and with marginal scenes of everyday life, by the Flemish illuminator Jehan de Grise and his workshop, 1338-44; with two sections added in England c. 1400, (fols. 209r-215v, with fol. 1r) Alexander and Dindimus (Alexander Fragment B) in Middle English verse, with coarser miniatures, and (fols. 218r- 71v, with fol. 2v) Marco Polo, Li Livres du Graunt Caam, in French prose, with miniatures by Johannes and his school." + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [ + "paged" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://digital.bodleian.ox.ac.uk/inquire/p/60834383-7146-41ab-bfe1-48ee97bc04be", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "MS. Bodl. 264" + ] + }, + "logo": [ + { + "id": "https://www.bodleian.ox.ac.uk/__data/assets/image/0005/117176/logo.jpg", + "type": "ContentResource" + } + ], + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "

From:
Rights: Photo: © Bodleian Libraries, University of Oxford
Terms of Access: http://digital.bodleian.ox.ac.uk/terms.html

" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json": { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/a6dac2e5-0f86-4217-a1fe-0c738b838588", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Inside upper cover" + ] + }, + "height": 7520, + "width": 5712, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/a6dac2e5-0f86-4217-a1fe-0c738b838588", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/a6dac2e5-0f86-4217-a1fe-0c738b838588": { + "id": "https://example.org/uuid/a6dac2e5-0f86-4217-a1fe-0c738b838588", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/uuid/22acd221-e5d8-438f-a179-f105fb99b8ec", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "id": "https://example.org/uuid/a6dac2e5-0f86-4217-a1fe-0c738b838588", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/uuid/22acd221-e5d8-438f-a179-f105fb99b8ec": { + "id": "https://example.org/uuid/22acd221-e5d8-438f-a179-f105fb99b8ec", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/a6dac2e5-0f86-4217-a1fe-0c738b838588", + "id": "https://example.org/uuid/22acd221-e5d8-438f-a179-f105fb99b8ec", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468/full/full/0/default.jpg": { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 7520, + "width": 5712, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/22acd221-e5d8-438f-a179-f105fb99b8ec", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://digital.bodleian.ox.ac.uk/inquire/p/60834383-7146-41ab-bfe1-48ee97bc04be": { + "id": "https://digital.bodleian.ox.ac.uk/inquire/p/60834383-7146-41ab-bfe1-48ee97bc04be", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json", + "id": "https://digital.bodleian.ox.ac.uk/inquire/p/60834383-7146-41ab-bfe1-48ee97bc04be", + "type": "Text" + } + ] + }, + "https://www.bodleian.ox.ac.uk/__data/assets/image/0005/117176/logo.jpg": { + "id": "https://www.bodleian.ox.ac.uk/__data/assets/image/0005/117176/logo.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json", + "id": "https://www.bodleian.ox.ac.uk/__data/assets/image/0005/117176/logo.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468": { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468/full/full/0/default.jpg", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_iiif_harvardartmuseums_org_manifests_object_299843": { + "Collection": { + "https://www.harvardartmuseums.org/collections": { + "id": "https://www.harvardartmuseums.org/collections", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "id": "https://www.harvardartmuseums.org/collections", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "https://iiif.harvardartmuseums.org/manifests/object/299843": { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/sequence/normal", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1888" + ] + } + }, + { + "label": { + "@none": [ + "Classification" + ] + }, + "value": { + "@none": [ + "Paintings" + ] + } + }, + { + "label": { + "@none": [ + "Credit Line" + ] + }, + "value": { + "@none": [ + "Harvard Art Museums/Fogg Museum, Bequest from the Collection of Maurice Wertheim, Class of 1906" + ] + } + }, + { + "label": { + "@none": [ + "Object Number" + ] + }, + "value": { + "@none": [ + "1951.65" + ] + } + }, + { + "label": { + "@none": [ + "People" + ] + }, + "value": { + "@none": [ + "Artist: Vincent van Gogh, Dutch, 1853 - 1890" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Oil on canvas" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "61.5 x 50.3 cm (24 3/16 x 19 13/16 in.)\r\nframed: 90.4 x 79.7 x 8.3 cm (35 9/16 x 31 3/8 x 3 1/4 in.)" + ] + } + }, + { + "label": { + "@none": [ + "Provenance" + ] + }, + "value": { + "@none": [ + "Vincent van Gogh, Arles, (1888,) gift; to Paul Gauguin, (1888-1897) sold. [Ambroise Vollard, Paris.] [Paul Cassirer Gallery, Berlin.] Dr. Hugo von Tschudi, Berlin, (1906-1911), by descent; to his widow, Angela von Tschudi, Munich (1911-1919), to Neue Staatsgalerie, Munich (1919-1938); removed from the collection by the National Socialist (Nazi) authorities in 1938, consigned; to [Theodor Fischer Gallery, Lucerne, Switzerland, for sale June 30, 1939, lot 45]; to Maurice Wertheim (1939-1951) bequest; to Fogg Art Museum, 1951.\r\n\r\n \r\n\r\nNotes:\r\nGauguin sold the painting for Fr 300\r\nHugo von Tschudi bought the painting for the Nationalgalerie, Berlin, with funds from sponsors, but did not submit it to the Kaiser for pre-approval. He took the painting to Munich when he assumed a post there.\r\nAccording to Stephanie Barron, the van Gogh was removed from the Neue Staatsgalerie on March 27, 1938 and stored at Schloss Niederschönhausen in August of that year. (Barron, 1990,pp. 135-146)\r\n" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://www.harvardartmuseums.org/collections/object/299843", + "type": "ContentResource" + } + ], + "partOf": [ + { + "id": "https://www.harvardartmuseums.org/collections", + "type": "Collection" + } + ], + "annotations": [], + "label": { + "@none": [ + "Self-Portrait Dedicated to Paul Gauguin" + ] + }, + "logo": [ + { + "id": "https://www.harvardartmuseums.org/assets/images/logo.png", + "type": "ContentResource" + } + ], + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Harvard Art Museums" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896": { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/b9064845-7e07-41f0-bb32-6b7348d79301", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174896", + "type": "AnnotationPage" + } + ], + "height": 2550, + "label": { + "@none": [ + "1" + ] + }, + "width": 2087, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/b9064845-7e07-41f0-bb32-6b7348d79301", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174896", + "type": "AnnotationPage" + } + ], + "height": {}, + "label": {}, + "width": {} + }, + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843/sequence/normal", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [], + "annotations": [], + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/b9064845-7e07-41f0-bb32-6b7348d79301": { + "id": "https://example.org/uuid/b9064845-7e07-41f0-bb32-6b7348d79301", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174896", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "id": "https://example.org/uuid/b9064845-7e07-41f0-bb32-6b7348d79301", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174896": { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174896", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174896", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174896": { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174896", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896/full/full/0/native.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/b9064845-7e07-41f0-bb32-6b7348d79301", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174896", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://ids.lib.harvard.edu/ids/iiif/47174896/full/full/0/native.jpg": { + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896/full/full/0/native.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 2550, + "width": 2087, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174896", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896/full/full/0/native.jpg", + "type": "Image" + } + ] + }, + "https://www.harvardartmuseums.org/collections/object/299843": { + "id": "https://www.harvardartmuseums.org/collections/object/299843", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "label": { + "@none": [ + "Full record view" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "id": "https://www.harvardartmuseums.org/collections/object/299843", + "type": "Text" + } + ] + }, + "https://www.harvardartmuseums.org/assets/images/logo.png": { + "id": "https://www.harvardartmuseums.org/assets/images/logo.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "id": "https://www.harvardartmuseums.org/assets/images/logo.png", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif.harvardartmuseums.org/manifests/object/299843/sequence/normal": { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/sequence/normal", + "type": "Range", + "items": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "sequence", + "individuals" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/sequence/normal", + "type": "Range" + } + ] + } + }, + "Service": { + "https://ids.lib.harvard.edu/ids/iiif/47174896": { + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ids.lib.harvard.edu/ids/iiif/47174896/full/full/0/native.jpg", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896", + "type": "ImageService1", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_iiif_io_api_presentation_2_1_example_fixtures_1_manifest": { + "Collection": { + "http://iiif.io/api/presentation/2.1/example/fixtures/collection.json": { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/collection.json", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/collection.json", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json": { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/collection.json", + "type": "Collection" + } + ], + "annotations": [], + "label": { + "@none": [ + "Test 1 Manifest: Minimum Required Fields" + ] + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json": { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/1dad04b3-79c6-4a97-a831-634f2ee50a26", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Test 1 Canvas: 1" + ] + }, + "height": 1800, + "width": 1200, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/1dad04b3-79c6-4a97-a831-634f2ee50a26", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/1dad04b3-79c6-4a97-a831-634f2ee50a26": { + "id": "https://example.org/uuid/1dad04b3-79c6-4a97-a831-634f2ee50a26", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/uuid/3644c005-bf7a-48d0-9fa9-1e1757bf8df1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "id": "https://example.org/uuid/1dad04b3-79c6-4a97-a831-634f2ee50a26", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/uuid/3644c005-bf7a-48d0-9fa9-1e1757bf8df1": { + "id": "https://example.org/uuid/3644c005-bf7a-48d0-9fa9-1e1757bf8df1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/1dad04b3-79c6-4a97-a831-634f2ee50a26", + "id": "https://example.org/uuid/3644c005-bf7a-48d0-9fa9-1e1757bf8df1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png": { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 1800, + "width": 1200, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/3644c005-bf7a-48d0-9fa9-1e1757bf8df1", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_iiif_lib_harvard_edu_manifests_drs_48309543": { + "Collection": {}, + "Manifest": { + "https://iiif.lib.harvard.edu/manifests/drs:48309543": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://nrs.harvard.edu/urn-3:hul.ois:hlviewerterms" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Chronique du monde depuis la création, et des rois de France et d'Angleterre, jusqu'à l'an 1461: manuscript, [ca. 1461]. MS Typ 41. Houghton Library, Harvard University, Cambridge, Mass." + ] + }, + "logo": [ + { + "id": "https://iiif.lib.harvard.edu/static/manifests/harvard_logo.jpg", + "type": "ContentResource" + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/63d7a009-3671-4518-9b6d-70dd1d4334f7", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/,150/0/native.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 1)" + ] + }, + "width": 1694, + "height": 2317, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/63d7a009-3671-4518-9b6d-70dd1d4334f7", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/,150/0/native.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + }, + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-1.json", + "@explicit": true, + "metadata": {}, + "provider": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "thumbnail": [], + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-3.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-4.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-5.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-6.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-7.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-8.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-9.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-10.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-11.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-12.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-13.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-14.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-15.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-16.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-17.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-18.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-19.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-20.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-3.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-4.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-5.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-6.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-7.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-8.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-9.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-10.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-11.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-12.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-13.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-14.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-15.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-16.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-17.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-18.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-19.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-20.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "type": "Canvas" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-3.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/63d7a009-3671-4518-9b6d-70dd1d4334f7": { + "id": "https://example.org/uuid/63d7a009-3671-4518-9b6d-70dd1d4334f7", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309544.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "id": "https://example.org/uuid/63d7a009-3671-4518-9b6d-70dd1d4334f7", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309544.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309544.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/full/0/native.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/63d7a009-3671-4518-9b6d-70dd1d4334f7", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309544.json", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://ids.lib.harvard.edu/ids/iiif/48309544/full/full/0/native.jpg": { + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/full/0/native.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 2317, + "width": 1694, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309544.json", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/full/0/native.jpg", + "type": "Image" + } + ] + }, + "https://ids.lib.harvard.edu/ids/iiif/48309544/full/,150/0/native.jpg": { + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/,150/0/native.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/,150/0/native.jpg", + "type": "Image" + } + ] + }, + "https://iiif.lib.harvard.edu/static/manifests/harvard_logo.jpg": { + "id": "https://iiif.lib.harvard.edu/static/manifests/harvard_logo.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543", + "id": "https://iiif.lib.harvard.edu/static/manifests/harvard_logo.jpg", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-1.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-1.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 1)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-1.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-2.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-2.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 2)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-2.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-3.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-3.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 3)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-3.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-4.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-4.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 4)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-4.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-5.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-5.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 5)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-5.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-6.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-6.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 6)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-6.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-7.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-7.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 7)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-7.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-8.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-8.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 8)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-8.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-9.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-9.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 9)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-9.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-10.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-10.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 10)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-10.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-11.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-11.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 11)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-11.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-12.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-12.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 12)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-12.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-13.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-13.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 13)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-13.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-14.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-14.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 14)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-14.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-15.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-15.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 15)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-15.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-16.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-16.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 16)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-16.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-17.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-17.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 17)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-17.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-18.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-18.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 18)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-18.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-19.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-19.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 19)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-19.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-20.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-20.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 20)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-20.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-1.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-2.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-3.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-4.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-5.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-6.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-7.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-8.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-9.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-10.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-11.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-12.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-13.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-14.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-15.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-16.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-17.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-18.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-19.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-20.json", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Bibliographic information (seq. 1-20)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-1.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-1.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 21)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-1.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-2.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-2.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 22)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-2.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-3.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-3.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 23)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-3.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-4.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-4.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 24)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-4.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-5.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-5.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 25)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-5.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-6.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-6.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 26)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-6.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-7.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-7.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 27)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-7.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-8.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-8.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 28)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-8.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-9.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-9.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 29)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-9.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-10.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-10.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 30)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-10.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-11.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-11.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 31)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-11.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-12.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-12.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 32)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-12.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-13.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-13.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 33)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-13.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-14.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-14.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 34)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-14.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-15.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-15.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 35)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-15.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-16.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-16.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 36)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-16.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-17.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-17.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 37)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-17.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-18.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-18.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 38)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-18.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-19.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-19.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 39)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-19.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-20.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-20.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "(seq. 40)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-20.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-1.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-2.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-3.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-4.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-5.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-6.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-7.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-8.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-9.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-10.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-11.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-12.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-13.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-14.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-15.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-16.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-17.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-18.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-19.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-20.json", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Recto (seq. 21-40)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-3.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-3.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Scroll view (stitched digital image) (seq. 41)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-3.json", + "type": "Range" + } + ] + }, + "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json": { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json", + "type": "Range", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "type": "Range" + }, + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-3.json", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Table of Contents" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.harvard.edu/manifests/drs:48309543", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json", + "type": "Range" + } + ] + } + }, + "Service": { + "https://ids.lib.harvard.edu/ids/iiif/48309544": { + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/full/0/native.jpg", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544", + "type": "ImageService1", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_lbiiif_riksarkivet_se_arkis_r0000004_manifest": { + "Collection": {}, + "Manifest": { + "https://lbiiif.riksarkivet.se/arkis!R0000004/manifest": { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/manifest", + "type": "Manifest", + "items": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "sv": [ + "Arkiv" + ], + "en-GB": [ + "Archive" + ] + }, + "value": { + "@none": [ + "Originaltraktater med främmande makter (traktater)" + ] + } + }, + { + "label": { + "sv": [ + "Serie" + ], + "en-GB": [ + "Serie" + ] + }, + "value": { + "@none": [ + "Danmark" + ] + } + }, + { + "label": { + "sv": [ + "Referenskod" + ], + "en-GB": [ + "Reference code" + ] + }, + "value": { + "@none": [ + "SE/RA/25.3/1/1" + ] + } + }, + { + "label": { + "sv": [ + "Titel" + ], + "en-GB": [ + "Title" + ] + }, + "value": { + "@none": [ + "18 november 1568" + ] + } + }, + { + "label": { + "sv": [ + "Datering" + ], + "en-GB": [ + "Date" + ] + }, + "value": { + "@none": [ + "1568" + ] + } + }, + { + "label": { + "sv": [ + "Anmärkning" + ], + "en-GB": [ + "Remark" + ] + }, + "value": { + "@none": [ + "Fredsfördrag. Dat. Roskilde" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "@none": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ], + "en": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ] + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://lbiiif.riksarkivet.se/arkis!R0000004/manifest", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/manifest", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1": { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/d6bf1c22-dd03-4f63-9a95-54da248c4b7c", + "type": "AnnotationPage" + } + ], + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00001" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00001" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00001" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00001" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "sv": [ + "Bild 1" + ], + "en-GB": [ + "Image 1" + ] + }, + "height": 5001, + "width": 7022, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://lbiiif.riksarkivet.se/arkis!R0000004/manifest", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/d6bf1c22-dd03-4f63-9a95-54da248c4b7c", + "type": "AnnotationPage" + } + ], + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00001" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00001" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00001" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00001" + ] + } + } + ], + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/d6bf1c22-dd03-4f63-9a95-54da248c4b7c": { + "id": "https://example.org/uuid/d6bf1c22-dd03-4f63-9a95-54da248c4b7c", + "type": "AnnotationPage", + "items": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "id": "https://example.org/uuid/d6bf1c22-dd03-4f63-9a95-54da248c4b7c", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p1": { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/d6bf1c22-dd03-4f63-9a95-54da248c4b7c", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://lbiiif.riksarkivet.se/arkis!R0000004_00001/full/full/0/default.jpg": { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 5001, + "width": 7022, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p1", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001/full/full/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://lbiiif.riksarkivet.se/arkis!R0000004_00001": { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001/full/full/0/default.jpg", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_manifests_britishart_yale_edu_manifest_1474": { + "Collection": {}, + "Manifest": { + "https://manifests.britishart.yale.edu/manifest/1474": { + "id": "https://manifests.britishart.yale.edu/manifest/1474", + "type": "Manifest", + "items": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://manifests.britishart.yale.edu/sequence/1474", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Creator(s)" + ] + }, + "value": { + "@none": [ + "Peter Gaspar Scheemakers, 1691–1781, Flemish, active in Britain (from ca. 1720)" + ] + } + }, + { + "label": { + "@none": [ + "Titles" + ] + }, + "value": { + "@none": [ + "Alexander Pope" + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "ca. 1740" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Marble" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "Overall: 27 x 18 x 9 inches (68.6 x 45.7 x 22.9 cm)" + ] + } + }, + { + "label": { + "@none": [ + "Inscriptions" + ] + }, + "value": { + "@none": [ + "Chiseled on front of socle: \"POPE.\"" + ] + } + }, + { + "label": { + "@none": [ + "Credit line" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art, Paul Mellon Collection" + ] + } + }, + { + "label": { + "@none": [ + "Institution" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "Paintings and Sculpture" + ] + } + }, + { + "label": { + "@none": [ + "Accession number" + ] + }, + "value": { + "@none": [ + "B1977.14.29" + ] + } + }, + { + "label": { + "@none": [ + "Bibliography" + ] + }, + "value": { + "@none": [ + "Prof. Maynard Mack, The World of Alexander Pope, Yale University Press, New Haven, no. 20, Z8704 M37", + "Malcolm Baker, Literary Figures, Apollo, 179, June 2014, p. 76, N1 A54+ 179:2" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Overall: 27 x 18 x 9 inches (68.6 x 45.7 x 22.9 cm), Chiseled on front of socle: \"POPE.\"" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "https://manifests.britishart.yale.edu/xml/1474.xml", + "type": "ContentResource" + }, + { + "id": "http://collection.britishart.yale.edu/id/data/object/1474", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [ + { + "id": "http://collections.britishart.yale.edu/vufind/Record/1666375", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Peter Gaspar Scheemakers, 1691–1781, Flemish, active in Britain (from ca. 1720), Alexander Pope, ca. 1740, Marble, Yale Center for British Art, B1977.14.29, Paintings and Sculpture" + ] + }, + "logo": [ + { + "id": "https://static.britishart.yale.edu/images/ycba_logo.jpg", + "type": "ContentResource" + } + ], + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art, Paul Mellon Collection,
Public Domain
" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/manifest/1474", + "id": "https://manifests.britishart.yale.edu/manifest/1474", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub": { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/ad8fecde-2b8a-4760-aaf9-e7a700c6ac41", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8173, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/manifest/1474", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/ad8fecde-2b8a-4760-aaf9-e7a700c6ac41", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "width": {}, + "label": {}, + "height": {} + }, + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/sequence/1474", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/ad8fecde-2b8a-4760-aaf9-e7a700c6ac41": { + "id": "https://example.org/uuid/ad8fecde-2b8a-4760-aaf9-e7a700c6ac41", + "type": "AnnotationPage", + "items": [ + { + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-pub", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "id": "https://example.org/uuid/ad8fecde-2b8a-4760-aaf9-e7a700c6ac41", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-pub": { + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-pub", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1/full/full/0/native.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/ad8fecde-2b8a-4760-aaf9-e7a700c6ac41", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-pub", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1/full/full/0/native.jpg": { + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1/full/full/0/native.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8173, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-pub", + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1/full/full/0/native.jpg", + "type": "Image" + } + ] + }, + "http://collections.britishart.yale.edu/vufind/Record/1666375": { + "id": "http://collections.britishart.yale.edu/vufind/Record/1666375", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "catalog entry at the Yale Center for British Art" + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/manifest/1474", + "id": "http://collections.britishart.yale.edu/vufind/Record/1666375", + "type": "Text" + } + ] + }, + "https://manifests.britishart.yale.edu/xml/1474.xml": { + "id": "https://manifests.britishart.yale.edu/xml/1474.xml", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/xml", + "profile": "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/manifest/1474", + "id": "https://manifests.britishart.yale.edu/xml/1474.xml", + "type": "Dataset" + } + ] + }, + "http://collection.britishart.yale.edu/id/data/object/1474": { + "id": "http://collection.britishart.yale.edu/id/data/object/1474", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/rdf+n3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/manifest/1474", + "id": "http://collection.britishart.yale.edu/id/data/object/1474", + "type": "Dataset" + } + ] + }, + "https://static.britishart.yale.edu/images/ycba_logo.jpg": { + "id": "https://static.britishart.yale.edu/images/ycba_logo.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/manifest/1474", + "id": "https://static.britishart.yale.edu/images/ycba_logo.jpg", + "type": "Image" + } + ] + } + }, + "Range": { + "https://manifests.britishart.yale.edu/sequence/1474": { + "id": "https://manifests.britishart.yale.edu/sequence/1474", + "type": "Range", + "items": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "sequence", + "individuals" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "default sequence" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://manifests.britishart.yale.edu/manifest/1474", + "id": "https://manifests.britishart.yale.edu/sequence/1474", + "type": "Range" + } + ] + } + }, + "Service": { + "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1": { + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1/full/full/0/native.jpg", + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1", + "type": "ImageService1", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_manifests_ydc2_yale_edu_manifest_admont43": { + "Collection": {}, + "Manifest": { + "http://manifests.ydc2.yale.edu/manifest/Admont43": { + "id": "http://manifests.ydc2.yale.edu/manifest/Admont43", + "type": "Manifest", + "items": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1160-1180" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Admont MS 43 - Aa 43 (Gratian Decretum)" + ] + } + }, + { + "label": { + "@none": [ + "Number of leaves" + ] + }, + "value": { + "@none": [ + "342" + ] + } + }, + { + "label": { + "@none": [ + "Origin" + ] + }, + "value": { + "@none": [ + "Austria" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "parchment" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Aa, Admont, Benediktinerstift Admont Bibliothek & Museum, Admont 43 IIIF Manifest created for the Digitally Enabled Scholarship with Medieval Manuscripts project at Yale University." + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Aa, Admont, Benediktinerstift Admont Bibliothek & Museum, Admont MS 43" + ] + }, + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Admont, Stiftsbibliothek" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://manifests.ydc2.yale.edu/manifest/Admont43", + "id": "http://manifests.ydc2.yale.edu/manifest/Admont43", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7": { + "id": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/c0c1378f-5b20-461a-9b9c-de56579781a2", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 4525, + "label": { + "@none": [ + "1r" + ] + }, + "width": 3115, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://manifests.ydc2.yale.edu/manifest/Admont43", + "id": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/c0c1378f-5b20-461a-9b9c-de56579781a2", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "label": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/c0c1378f-5b20-461a-9b9c-de56579781a2": { + "id": "https://example.org/uuid/c0c1378f-5b20-461a-9b9c-de56579781a2", + "type": "AnnotationPage", + "items": [ + { + "id": "http://manifests.ydc2.yale.edu/annotation/5fd274ff-0b1c-47f5-af2a-c0f26a468016", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "id": "https://example.org/uuid/c0c1378f-5b20-461a-9b9c-de56579781a2", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "http://manifests.ydc2.yale.edu/annotation/5fd274ff-0b1c-47f5-af2a-c0f26a468016": { + "id": "http://manifests.ydc2.yale.edu/annotation/5fd274ff-0b1c-47f5-af2a-c0f26a468016", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/full/full/0/native.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/c0c1378f-5b20-461a-9b9c-de56579781a2", + "id": "http://manifests.ydc2.yale.edu/annotation/5fd274ff-0b1c-47f5-af2a-c0f26a468016", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/full/full/0/native.jpg": { + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/full/full/0/native.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4525, + "label": { + "@none": [ + "1r" + ] + }, + "width": 3115, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://manifests.ydc2.yale.edu/annotation/5fd274ff-0b1c-47f5-af2a-c0f26a468016", + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/full/full/0/native.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/": { + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/", + "type": "ImageService1", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/full/full/0/native.jpg", + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/", + "type": "ImageService1", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_media_nga_gov_public_manifests_nga_highlights": { + "Collection": {}, + "Manifest": { + "https://media.nga.gov/public/manifests/nga_highlights.json": { + "id": "https://media.nga.gov/public/manifests/nga_highlights.json", + "type": "Manifest", + "items": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/106382.json", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Highlights from the collection of the National Gallery of Art" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "A selection of highlights from the National Gallery of Art" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [ + "individuals" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "logo": [ + { + "id": "https://www.nga.gov/content/dam/ngaweb/imgs/NGAEB.jpg", + "type": "ContentResource" + } + ], + "label": { + "@none": [ + "National Gallery of Art Collection Highlights" + ] + }, + "guid": "e61700b6-7cb9-4c14-92ab-4246a345ec71", + "viewingDirection": "left-to-right", + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://media.nga.gov/public/manifests/nga_highlights.json", + "id": "https://media.nga.gov/public/manifests/nga_highlights.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://media.nga.gov/public/manifests/canvas/106382.json": { + "id": "https://media.nga.gov/public/manifests/canvas/106382.json", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/237475ab-f40d-40cb-b583-17d44cb8bb9a", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Self-Portrait" + ] + }, + "height": 402, + "width": 307, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://media.nga.gov/public/manifests/nga_highlights.json", + "id": "https://media.nga.gov/public/manifests/canvas/106382.json", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/237475ab-f40d-40cb-b583-17d44cb8bb9a", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/237475ab-f40d-40cb-b583-17d44cb8bb9a": { + "id": "https://example.org/uuid/237475ab-f40d-40cb-b583-17d44cb8bb9a", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/uuid/7bff4492-c4ab-4577-81c9-cfbf64ba3998", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://media.nga.gov/public/manifests/canvas/106382.json", + "id": "https://example.org/uuid/237475ab-f40d-40cb-b583-17d44cb8bb9a", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/uuid/7bff4492-c4ab-4577-81c9-cfbf64ba3998": { + "id": "https://example.org/uuid/7bff4492-c4ab-4577-81c9-cfbf64ba3998", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/106382.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/237475ab-f40d-40cb-b583-17d44cb8bb9a", + "id": "https://example.org/uuid/7bff4492-c4ab-4577-81c9-cfbf64ba3998", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg": { + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 402, + "width": 307, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/7bff4492-c4ab-4577-81c9-cfbf64ba3998", + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://www.nga.gov/content/dam/ngaweb/imgs/NGAEB.jpg": { + "id": "https://www.nga.gov/content/dam/ngaweb/imgs/NGAEB.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://media.nga.gov/public/manifests/nga_highlights.json", + "id": "https://www.nga.gov/content/dam/ngaweb/imgs/NGAEB.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif": { + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg", + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_ncsu_libraries_manifest": { + "Collection": {}, + "Manifest": { + "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json": { + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Nubian Message, November 30, 1992" + ] + } + }, + { + "label": { + "@none": [ + "Creator" + ] + }, + "value": { + "@none": [ + "Nubian Message (Raleigh, N.C.) (Publisher)" + ] + } + }, + { + "label": { + "@none": [ + "Created Date" + ] + }, + "value": { + "@none": [ + "1992-11-30" + ] + } + }, + { + "label": { + "@none": [ + "URL" + ] + }, + "value": { + "@none": [ + "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30" + ] + } + }, + { + "label": { + "@none": [ + "" + ] + }, + "value": { + "@none": [ + "IIIF drag & drop (About IIIF)" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "https://d.lib.ncsu.edu/collections/about#rights_and_use" + ] + } + } + ], + "provider": [], + "thumbnail": [ + { + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30/full/150,/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [ + { + "id": "https://d.lib.ncsu.edu/collections/catalog/oai?identifier=ncsul%2Fnubian-message-1992-11-30&metadataPrefix=oai_dc&verb=GetRecord", + "type": "ContentResource" + }, + { + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/schemaorg.json", + "type": "ContentResource" + } + ], + "service": [ + { + "id": "https://ocr.lib.ncsu.edu/search/nubian-message-1992-11-30", + "type": "SearchService1", + "service": [ + { + "id": "https://ocr.lib.ncsu.edu/suggest/nubian-message-1992-11-30", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words" + } + ], + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this thing" + } + ], + "services": [], + "homepage": [ + { + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Nubian Message, November 30, 1992" + ] + }, + "logo": [ + { + "id": "https://d.lib.ncsu.edu/collections/assets/ncsu-libraries-white-logo-placement-8e3a4e918262aa5993b0e0475989b02f.jpg", + "type": "ContentResource" + } + ], + "dcterms:modified": "2018-05-04T19:54:03.000Z", + "dcterms:created": "2016-02-19T16:47:04.000Z", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "The Nubian Message (LH1 .H6 N83), Special Collections Research Center at NCSU Libraries" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001": { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/207a5c53-5a00-4edb-8253-73f9126d5077", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.hocr", + "type": "ContentResource" + }, + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.txt", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-word.json", + "type": "AnnotationPage" + }, + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-line.json", + "type": "AnnotationPage" + }, + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-paragraph.json", + "type": "AnnotationPage" + } + ], + "width": 4703, + "height": 5639, + "label": { + "@none": [ + "1" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/207a5c53-5a00-4edb-8253-73f9126d5077", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": [ + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.hocr", + "type": "ContentResource" + }, + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.txt", + "type": "ContentResource" + } + ], + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-word.json", + "type": "AnnotationPage" + }, + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-line.json", + "type": "AnnotationPage" + }, + { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-paragraph.json", + "type": "AnnotationPage" + } + ], + "width": {}, + "height": {}, + "label": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/207a5c53-5a00-4edb-8253-73f9126d5077": { + "id": "https://example.org/uuid/207a5c53-5a00-4edb-8253-73f9126d5077", + "type": "AnnotationPage", + "items": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001/image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "id": "https://example.org/uuid/207a5c53-5a00-4edb-8253-73f9126d5077", + "type": "AnnotationPage" + } + ] + }, + "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-word.json": { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-word.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-word.json", + "type": "AnnotationPage" + } + ] + }, + "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-line.json": { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-line.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-line.json", + "type": "AnnotationPage" + } + ] + }, + "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-paragraph.json": { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-paragraph.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-paragraph.json", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001/image": { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001/full/1170,/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/207a5c53-5a00-4edb-8253-73f9126d5077", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001/image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001/full/1170,/0/default.jpg": { + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001/full/1170,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 1170, + "height": 1403, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001/image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001/full/1170,/0/default.jpg", + "type": "Image" + } + ] + }, + "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.hocr": { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.hocr", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.hocr", + "type": "Dataset" + } + ] + }, + "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.txt": { + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.txt", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.txt", + "type": "Dataset" + } + ] + }, + "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30/full/150,/0/default.jpg": { + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30/full/150,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30/full/150,/0/default.jpg", + "type": "Image" + } + ] + }, + "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30": { + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "label": { + "@none": [ + "HTML page for the resource" + ] + }, + "dcterms:modified": "2018-05-04T19:59:35.01Z", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30", + "type": "Text" + } + ] + }, + "https://d.lib.ncsu.edu/collections/catalog/oai?identifier=ncsul%2Fnubian-message-1992-11-30&metadataPrefix=oai_dc&verb=GetRecord": { + "id": "https://d.lib.ncsu.edu/collections/catalog/oai?identifier=ncsul%2Fnubian-message-1992-11-30&metadataPrefix=oai_dc&verb=GetRecord", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/xml", + "label": { + "@none": [ + "Dublin Core XML via OAI-PMH" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "id": "https://d.lib.ncsu.edu/collections/catalog/oai?identifier=ncsul%2Fnubian-message-1992-11-30&metadataPrefix=oai_dc&verb=GetRecord", + "type": "Dataset" + } + ] + }, + "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/schemaorg.json": { + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/schemaorg.json", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/ld+json", + "profile": "https://schema.org", + "label": { + "@none": [ + "Schema.org metadata as JSON-LD" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/schemaorg.json", + "type": "Dataset" + } + ] + }, + "https://d.lib.ncsu.edu/collections/assets/ncsu-libraries-white-logo-placement-8e3a4e918262aa5993b0e0475989b02f.jpg": { + "id": "https://d.lib.ncsu.edu/collections/assets/ncsu-libraries-white-logo-placement-8e3a4e918262aa5993b0e0475989b02f.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "id": "https://d.lib.ncsu.edu/collections/assets/ncsu-libraries-white-logo-placement-8e3a4e918262aa5993b0e0475989b02f.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001": { + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001/full/1170,/0/default.jpg", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30": { + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30/full/150,/0/default.jpg", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://ocr.lib.ncsu.edu/suggest/nubian-message-1992-11-30": { + "id": "https://ocr.lib.ncsu.edu/suggest/nubian-message-1992-11-30", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ocr.lib.ncsu.edu/search/nubian-message-1992-11-30", + "id": "https://ocr.lib.ncsu.edu/suggest/nubian-message-1992-11-30", + "type": "AutoCompleteService1" + } + ] + }, + "https://ocr.lib.ncsu.edu/search/nubian-message-1992-11-30": { + "id": "https://ocr.lib.ncsu.edu/search/nubian-message-1992-11-30", + "type": "SearchService1", + "service": [ + { + "id": "https://ocr.lib.ncsu.edu/suggest/nubian-message-1992-11-30", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words" + } + ], + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this thing", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "id": "https://ocr.lib.ncsu.edu/search/nubian-message-1992-11-30", + "type": "SearchService1" + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_nlw_manuscript_manifest": { + "Collection": {}, + "Manifest": { + "https://damsssl.llgc.org.uk/iiif/2.0/4389767/manifest.json": { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "en": [ + "Title" + ], + "cy-GB": [ + "Teitl" + ] + }, + "value": { + "@none": [ + "Cardiganshire Constabulary register of criminals" + ] + } + }, + { + "label": { + "en": [ + "Author" + ], + "cy-GB": [ + "Awdur" + ] + }, + "value": { + "@none": [ + "Cardiganshire Constabulary" + ] + } + }, + { + "label": { + "en": [ + "Date" + ], + "cy-GB": [ + "Dyddiad" + ] + }, + "value": { + "@none": [ + "1897-1933" + ] + } + }, + { + "label": { + "en": [ + "Physical description" + ], + "cy-GB": [ + "Disgrifiad ffisegol" + ] + }, + "value": { + "@none": [ + "1 241ff. (ff.116-237 blank; leaves cut out after ff.80, 83) Vellum over boards, rebacked at NLW. 22.5 x 18 cm." + ] + } + }, + { + "label": { + "en": [ + "Permalink" + ], + "cy-GB": [ + "Dolen barhaol" + ] + }, + "value": { + "@none": [ + "http://hdl.handle.net/10107/4389767" + ] + } + }, + { + "label": { + "en": [ + "Repository" + ], + "cy-GB": [ + "Ystorfa" + ] + }, + "value": { + "en": [ + "This content has been digitised by The National Library of Wales" + ], + "cy-GB": [ + "Digidwyd y cynnwys hwn gan Lyfrgell Genedlaethol Cymru" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://hdl.handle.net/10107/PublicDomainMark" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Register of criminals apprehended by Cardiganshire Constabulary, 1897-1933 with physical descriptions of prisoners and details of previous convictions. Photographs are included of most of those sentenced between 1897 and 1909." + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Cardiganshire Constabulary register of criminals" + ] + }, + "logo": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg", + "type": "ContentResource" + } + ], + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Llyfrgell Genedlaethol Cymru – The National Library of Wales" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/manifest.json", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json": { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/64d80679-934e-4244-9fc4-2262ed0f1271", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "front cover" + ] + }, + "height": 4080, + "width": 4080, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/manifest.json", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/64d80679-934e-4244-9fc4-2262ed0f1271", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/64d80679-934e-4244-9fc4-2262ed0f1271": { + "id": "https://example.org/uuid/64d80679-934e-4244-9fc4-2262ed0f1271", + "type": "AnnotationPage", + "items": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389768.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "id": "https://example.org/uuid/64d80679-934e-4244-9fc4-2262ed0f1271", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389768.json": { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389768.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389768.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/64d80679-934e-4244-9fc4-2262ed0f1271", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389768.json", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389768.jpg": { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389768.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389768", + "type": "ImageService2", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4080, + "width": 4080, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389768.json", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389768.jpg", + "type": "Image" + } + ] + }, + "https://damsssl.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg": { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": " https://damsssl.llgc.org.uk/iiif/2.0/image/logo", + "type": "Service", + "service": [], + "profile": " http://iiif.io/api/image/2/level1.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/manifest.json", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://damsssl.llgc.org.uk/iiif/2.0/image/4389768": { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389768", + "type": "ImageService2", + "service": [], + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389768.jpg", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389768", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {}, + "height": {}, + "width": {}, + "tiles": {} + } + ] + }, + " https://damsssl.llgc.org.uk/iiif/2.0/image/logo": { + "id": " https://damsssl.llgc.org.uk/iiif/2.0/image/logo", + "type": "Service", + "service": [], + "profile": " http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://damsssl.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg", + "id": " https://damsssl.llgc.org.uk/iiif/2.0/image/logo", + "type": "Service", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_nlw_newspaper_manifest": { + "Collection": { + "http://dams.llgc.org.uk/iiif/newspapers/3320639.json": { + "id": "http://dams.llgc.org.uk/iiif/newspapers/3320639.json", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/newspapers/3320639.json", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json": { + "id": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle1", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle2", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle3", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle4", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle5", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle6", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle7", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle8", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle9", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle10", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle11", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle12", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle13", + "type": "Range" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle14", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Publisher" + ], + "cy-GB": [ + "Cyhoeddwr" + ] + }, + "value": { + "@none": [ + "T. Jenkins" + ] + } + }, + { + "label": { + "@none": [ + "Place of Publication" + ] + }, + "value": { + "@none": [ + "Swansea" + ] + } + }, + { + "label": { + "en": [ + "Frequency" + ], + "cy-GB": [ + "Amlder" + ] + }, + "value": { + "@none": [ + "Weekly" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "eng" + ] + } + }, + { + "label": { + "@none": [ + "Subject" + ] + }, + "value": { + "@none": [ + "Swansea (Wales) Newspapers" + ] + } + }, + { + "label": { + "en": [ + "Repository" + ], + "cy-GB": [ + "Ystorfa" + ] + }, + "value": { + "en": [ + "This content has been digitised by The National Library of Wales" + ], + "cy-GB": [ + "Digidwyd y cynnwys hwn gan Lyfrgell Gendlaethol Cymru" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "http://hdl.handle.net/10107/3320640", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [ + { + "id": "http://dams.llgc.org.uk/iiif/newspapers/3320639.json", + "type": "Collection" + } + ], + "annotations": [], + "label": { + "@none": [ + "Cambrian (1804-01-28)" + ] + }, + "navDate": "1804-01-28T00:00:00Z", + "logo": [ + { + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg", + "type": "ContentResource" + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/d3be76ef-08c2-4785-af95-9fbdfe9f51c4", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART1.json", + "type": "AnnotationPage" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART2.json", + "type": "AnnotationPage" + } + ], + "label": { + "@none": [ + "[1]" + ] + }, + "height": 7905, + "width": 5826, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/d3be76ef-08c2-4785-af95-9fbdfe9f51c4", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART1.json", + "type": "AnnotationPage" + }, + { + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART2.json", + "type": "AnnotationPage" + } + ], + "label": {}, + "height": {}, + "width": {} + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=540,5040,3306,18510": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=540,5040,3306,18510", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle1", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=540,5040,3306,18510", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=3834,4983,13134,18528": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=3834,4983,13134,18528", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle2", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=3834,4983,13134,18528", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=582,555,16413,22638": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=582,555,16413,22638", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle3", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=582,555,16413,22638", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=13773,9642,3387,13467": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=13773,9642,3387,13467", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle4", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=13773,9642,3387,13467", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=525,525,9993,22614": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=525,525,9993,22614", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle5", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=525,525,9993,22614", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7173,14520,3303,6357": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7173,14520,3303,6357", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle6", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7173,14520,3303,6357", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7209,20913,3120,1470": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7209,20913,3120,1470", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle7", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7209,20913,3120,1470", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7218,22359,3222,714": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7218,22359,3222,714", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle8", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7218,22359,3222,714", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10401,540,3360,15036": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10401,540,3360,15036", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle9", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10401,540,3360,15036", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10377,546,6693,22560": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10377,546,6693,22560", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle10", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10377,546,6693,22560", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,744,3213,9366": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,744,3213,9366", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle11", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,744,3213,9366", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=510,10398,3210,8079": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=510,10398,3210,8079", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle12", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=510,10398,3210,8079", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,576,16377,20817": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,576,16377,20817", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle13", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,576,16377,20817", + "type": "Canvas" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=660,21486,16311,1770": { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=660,21486,16311,1770", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle14", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=660,21486,16311,1770", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/d3be76ef-08c2-4785-af95-9fbdfe9f51c4": { + "id": "https://example.org/uuid/d3be76ef-08c2-4785-af95-9fbdfe9f51c4", + "type": "AnnotationPage", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320641.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "id": "https://example.org/uuid/d3be76ef-08c2-4785-af95-9fbdfe9f51c4", + "type": "AnnotationPage" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART1.json": { + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART1.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json", + "type": "AnnotationCollection" + } + ], + "annotations": [], + "label": { + "@none": [ + "TO THE PUBLIC." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART1.json", + "type": "AnnotationPage" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART2.json": { + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART2.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json", + "type": "AnnotationCollection" + } + ], + "annotations": [], + "label": { + "@none": [ + "Advertising" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART2.json", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": { + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json", + "type": "AnnotationCollection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART1.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json", + "type": "AnnotationCollection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART2.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json", + "type": "AnnotationCollection" + } + ] + } + }, + "Annotation": { + "http://dams.llgc.org.uk/iiif/3320640/annotation/3320641.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320641.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://dams.llgc.org.uk/iiif/2.0/3320641/image/full/512,/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/d3be76ef-08c2-4785-af95-9fbdfe9f51c4", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320641.json", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://dams.llgc.org.uk/iiif/2.0/3320641/image/full/512,/0/default.jpg": { + "id": "http://dams.llgc.org.uk/iiif/2.0/3320641/image/full/512,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320641", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 7905, + "width": 5826, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320641.json", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320641/image/full/512,/0/default.jpg", + "type": "Image" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle1", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle2", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle3.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle3.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle3", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle3.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle4.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle4.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle4", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle4.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle5.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle5.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle5", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle5.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle6.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle6.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle6", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle6.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle7.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle7.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle7", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle7.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle8.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle8.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle8", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle8.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle9.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle9.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle9", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle9.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle10.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle10.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle10", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle10.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle11.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle11.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle11", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle11.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle12.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle12.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle12", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle12.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle13.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle13.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle13", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle13.json", + "type": "AnnotationCollection" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle14.json": { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle14.json", + "type": "AnnotationCollection", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle14", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle14.json", + "type": "AnnotationCollection" + } + ] + }, + "http://hdl.handle.net/10107/3320640": { + "id": "http://hdl.handle.net/10107/3320640", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/rdf+xml", + "profile": "http://www.europeana.eu/schemas/edm/", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://hdl.handle.net/10107/3320640", + "type": "Dataset" + } + ] + }, + "http://dams.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg": { + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": { + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle1": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle1", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=540,5040,3306,18510", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "ON the first appearance of a New Paper be-Cyfore that august Tribunal which is ultimately to fix its destiny, Custom exacts a disclosure of its claim to notice: obedient to. her" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "TO THE PUBLIC." + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle1", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle2": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle2", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=3834,4983,13134,18528", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Advertising" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle2", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle3": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle3", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=582,555,16413,22638", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "___THURSDAY, Jan. 19. THE invasion of this country by the French has for some time been the general topic of .. conversation, and various rumours are con" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "LONDON." + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle3.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle3", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle4": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle4", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=13773,9642,3387,13467", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Advertising" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle4.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle4", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle5": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle5", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=525,525,9993,22614", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "m The difficulties attending the first publications of a Newspaper being inconceivably great, we trust they will operate in extenuation of whatever errors and imperfections may be observed. Maturity will speedily" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "-THE -" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle5.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle5", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle6": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle6", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7173,14520,3303,6357", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Family Notices" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Family Notices" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle6.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle6", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle7": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle7", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7209,20913,3120,1470", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Detailed Lists, Results and Guides" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "HIGH WATER ON SWANSEA BAR" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle7.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle7", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle8": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle8", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7218,22359,3222,714", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "The Parody from Gray in our next. Communications from our Holywell Correspondent will always be acceptable. We have, for the present, omitted his last favour, on account of the extraordinary mildness of" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "TO CORRESPONDENTS." + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle8.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle8", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle9": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle9", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10401,540,3360,15036", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Detailed Lists, Results and Guides" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "COUNTRY MARKETS. I" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle9.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle9", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle10": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle10", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10377,546,6693,22560", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Advertising" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle10.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle10", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle11": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle11", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,744,3213,9366", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "WHEN, at the Despot's dread command, Bridg'd Hellespont his myriads bore From servile Asia's peopled strand To Graecia's and to Freedom's share—" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "ODE FOR THE NEW YEAR." + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle11.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle11", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle12": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle12", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=510,10398,3210,8079", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "O'ER the pale embers of a-dying fire, His little lampe fed with but little oile, The Curate sat (for scantie was his hire) ;And ruminated sad the morrow's toil." + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "THE CURATE.—A FRAGMENT." + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle12.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle12", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle13": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle13", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,576,16377,20817", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Copy of a circular letter _from Mr. Secretary . Yorke to the Lieutenants in the several counties in Great Britain :-My Lord, \" Whitehall, Jan. 14, 1804." + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "VOLUNTEERS.\"" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle13.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle13", + "type": "Range" + } + ] + }, + "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle14": { + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle14", + "type": "Range", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=660,21486,16311,1770", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Advertising" + ] + }, + "supplementary": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle14.json", + "type": "ContentResource" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle14", + "type": "Range" + } + ] + } + }, + "Service": { + "http://dams.llgc.org.uk/iiif/2.0/image/3320641": { + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320641", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/2.0/3320641/image/full/512,/0/default.jpg", + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320641", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {}, + "height": {}, + "width": {}, + "tiles": {} + } + ] + }, + "http://dams.llgc.org.uk/iiif/2.0/image/logo": { + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://dams.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg", + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_princeton_manifest": { + "Collection": { + "within URI": { + "id": "within URI", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest", + "id": "within URI", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest", + "type": "Manifest", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Dada (Zurich, Switzerland)" + ] + } + }, + { + "label": { + "@none": [ + "display-date" + ] + }, + "value": { + "@none": [ + "Décembre 1918" + ] + } + }, + { + "label": { + "@none": [ + "part" + ] + }, + "value": { + "@none": [ + "3" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "a license" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "a description" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [ + { + "id": "within URI", + "type": "Collection" + } + ], + "annotations": [], + "label": { + "@none": [ + "Dada (Zurich, Switzerland), 3" + ] + }, + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by the Blue Mountain Project at Princeton University" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/a2cdd64c-716f-4917-bb4c-413ce9b9573a", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "OUTSIDE_FRONT_COVER" + ] + }, + "height": 6532, + "width": 4668, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/a2cdd64c-716f-4917-bb4c-413ce9b9573a", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c001", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c003", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c007", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c009", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c012", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c042", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c043", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c013", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c014", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c045", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c015", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c044", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c019", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c020", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c021", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c048", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c022", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c028", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c029", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c031", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c046", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c032", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033a", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c034", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c035", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c049", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c036", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c038", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c047", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c039", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/a2cdd64c-716f-4917-bb4c-413ce9b9573a": { + "id": "https://example.org/uuid/a2cdd64c-716f-4917-bb4c-413ce9b9573a", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/uuid/bbc2832b-6fa7-4d05-8de0-3bb522aa2d10", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "id": "https://example.org/uuid/a2cdd64c-716f-4917-bb4c-413ce9b9573a", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/uuid/bbc2832b-6fa7-4d05-8de0-3bb522aa2d10": { + "id": "https://example.org/uuid/bbc2832b-6fa7-4d05-8de0-3bb522aa2d10", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2/full/!200,200/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/a2cdd64c-716f-4917-bb4c-413ce9b9573a", + "id": "https://example.org/uuid/bbc2832b-6fa7-4d05-8de0-3bb522aa2d10", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2/full/!200,200/0/default.jpg": { + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2/full/!200,200/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jp2", + "height": 6532, + "width": 4668, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/bbc2832b-6fa7-4d05-8de0-3bb522aa2d10", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2/full/!200,200/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": { + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c001": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c001", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Untitled Text" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c001", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c003": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c003", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "MANIFESTE DADA 1918." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c003", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c007": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c007", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "SOPRA UN QUADRO CUBISTA" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c007", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c009": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c009", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Regard" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c009", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c012": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c012", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Avant l'heure" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c012", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c013": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c013", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "SALIVE AMÉRICAINE" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c013", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c014": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c014", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Bois de E. PRAMPOLINI" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c014", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c045": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c045", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "ABRI" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c045", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c015": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c015", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "LA JOIE DES SEPT COULEURS: (Fragment)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c015", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c019": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c019", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "CRAYON BLEU: Poème à trois voix simultanées" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c019", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c020": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c020", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Guillaume Apollinaire" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c020", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c021": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c021", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "BOIS de H. RICHTER" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c021", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c022": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c022", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Bâton" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c022", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c028": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c028", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "3 gravures sur bois par H. ARP" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c028", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c029": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c029", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "GUILLAUME APOLLINAIRE" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c029", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c031": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c031", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "circuit total par la lune et par la couleur" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c031", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c032": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c032", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Gravure originale de MARCEL JANCO." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c032", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "à Kisling" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033a": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033a", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Bulletin" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033a", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c034": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c034", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Untitled Image" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c034", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c035": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c035", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Untitled Image" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c035", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c036": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c036", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "LE MARIN" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c036", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c038": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c038", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "CALENDRIER" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c038", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c039": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c039", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "COW-BOY" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c039", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c042": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c042", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c042", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c043": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c043", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c043", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c044": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c044", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c044", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c046": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c046", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c046", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c047": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c047", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c047", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c048": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c048", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Ad for Editions SIC" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c048", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c049": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c049", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Ad for Tzara's 25 Poemes" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c049", + "type": "Range" + } + ] + }, + "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc": { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "type": "Range", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c001", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c003", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c007", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c009", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c012", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c013", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c014", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c045", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c015", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c019", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c020", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c021", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c022", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c028", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c029", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c031", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c032", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033a", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c034", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c035", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c036", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c038", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c039", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c042", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c043", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c044", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c046", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c047", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c048", + "type": "Range" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c049", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Table of Contents" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "type": "Range" + } + ] + } + }, + "Service": { + "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2": { + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2/full/!200,200/0/default.jpg", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_purl_stanford_edu_qm670kv1873_iiif_manifest": { + "Collection": {}, + "Manifest": { + "https://purl.stanford.edu/qm670kv1873/iiif/manifest": { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "type": "Manifest", + "items": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Available Online" + ] + }, + "value": { + "@none": [ + "https://purl.stanford.edu/qm670kv1873" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Walters Ms. W.168, Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Calendar" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Office of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Mass of the Virgin" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Gospel sequences" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Obsecro te" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "O intermerata" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Stabat Mater" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Prayer" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Seven Last Words of Christ" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Hours of the Virgin, Use of Rome" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Long Hours of the Holy Spirit" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Short Hours of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Seven Penitential Psalms" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Litany and one collect" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Office of the Dead" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Suffrages" + ] + } + }, + { + "label": { + "@none": [ + "Contributor" + ] + }, + "value": { + "@none": [ + "Masters of Zweder van Culemborg (artist)" + ] + } + }, + { + "label": { + "@none": [ + "Contributor" + ] + }, + "value": { + "@none": [ + "Style of Willem Vrelant (artist)" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This fine illuminated Book of Hours was produced in two stages in the second and third quarters of the fifteenth century. The manuscript contains eleven full-page miniatures and twenty historiated initials. The first stage of production includes a section attributed to the Masters of Zweder van Culemborg and the calendar (fols. 3r-14v, 52v-211v), while additional prayers illustrated in the style of the workshop of Willem Vrelant were added later in the fifteenth century (fols. 16r-50v, 213r-223r), presumably when the book was bound in its present binding. The Hours of the Virgin is for the Use of Rome. The Use of the Office of the Dead is unidentified, but the calendar is for the Use of Utrecht. The two separate parts of the manuscript were bound together in Flanders. The sections of W.168 attributed to the Masters of Zweder van Culemborg have been compared to Utrecht, Utrecht University Ms. 1037; Cambridge, Fitzwilliam Museum James Ms. 141; the second hand in New York, Pierpont Morgan Library Ms. M.87; Stockholm, Royal Library A 226, and Philadelphia, Free Library Lewis Ms. 88. \n For full description, see http://www.thedigitalwalters.org/Data/WaltersManuscripts/html/W168/description.html" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "The primary language in this manuscript is Latin." + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Calendar" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Office of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Mass of the Virgin" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Gospel sequences" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Obsecro te" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "O intermerata" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Stabat Mater" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Prayer" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Seven Last Words of Christ" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Hours of the Virgin, Use of Rome" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Long Hours of the Holy Spirit" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Short Hours of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Seven Penitential Psalms" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Litany and one collect" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Office of the Dead" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Suffrages" + ] + } + }, + { + "label": { + "@none": [ + "Format" + ] + }, + "value": { + "@none": [ + "parchment" + ] + } + }, + { + "label": { + "@none": [ + "Format" + ] + }, + "value": { + "@none": [ + "image/jpeg" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"D,\" fol. 16r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"I,\" fol. 23r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"O,\" fol. 34v" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniatures on fols. 52v, 76v, 81v, 85v, 90v, 94v, and 102v; historiated initial \"D,\" fol. 53r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 108v; historiated initial \"D,\" fol. 109r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Eleven full-page miniatures edged in gold and white-streaked blue/rose; Zweder Master sections feature five historiated initials (1 to 9 lines high); Vrelant Master sections feature fifteen historiated initials (8 lines high), as well as ornamental initials (1 to 4 lines high); borders decorated as in Zweder Master sections; floral sprays often found in margins; rubrics in red; text in black ink" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 128v; historiated initial \"D,\" fol. 129r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 148v; historiated initial \"D,\" fol. 149r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 166v; historiated initial \"D,\" fol. 167r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initials on fols. 213r, 213v, 214v, 215v, 216v, 217v, 218v, 221r, 222r, and 222v" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 16r Crucifixion Historiated initial \"D,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 23r Madonna and Child enthroned Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 34v Lamentation Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 52v Betrayal Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 53r Madonna and Child in half-length, \"clothed in the sun\" Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 76v Christ before Pilate Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 81v Flagellation Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 85v Christ carrying the Cross Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 90v Crucifixion Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 94v Deposition Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 102v Entombment Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 108v Trinity Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 109r Pentecost Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 128v Man of Sorrows, surrounded by the Arma Christi Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 129r Nativity Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 148v Last Judgement Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 149r Christ holding a globe and blessing Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 166v Funeral Mass Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 167r Three female souls in purgatory Historiated initial \"D,\" 8 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 213r St. John the Baptist Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 213v St. James Major Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 214v St. Christopher Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 215v St. Sebastian Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 216v St. Adrian Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 217v St. George Historiated initial \"G,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 218v St. Ghislain Historiated initial \"S,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 219r St. Catherine Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 220r St. Barbara Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 221r St. Apollonia Historiated initial \"V,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 222r St. Margaret Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 222v St. Anne teaching the Virgin to read Historiated initial \"C,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1425-1450" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Second quarter of the 15th century (ca. 1430-35), with additions ca. 1460" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Created in two phases, with the original part made ca. 1430-35 and the second part made in the late fifteenth century; calendar for Utrecht suggests original site of production" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Libraire Morgand no. 26084, nineteenth century" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Walters Art Museum, 1931, by Henry Walters bequest" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Walters Manuscripts" + ] + } + }, + { + "label": { + "@none": [ + "PublishDate" + ] + }, + "value": { + "@none": [ + "2018-03-23T23:32:55Z" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This fine illuminated Book of Hours was produced in two stages in the second and third quarters of the fifteenth century. The manuscript contains eleven full-page miniatures and twenty historiated initials. The first stage of production includes a section attributed to the Masters of Zweder van Culemborg and the calendar (fols. 3r-14v, 52v-211v), while additional prayers illustrated in the style of the workshop of Willem Vrelant were added later in the fifteenth century (fols. 16r-50v, 213r-223r), presumably when the book was bound in its present binding. The Hours of the Virgin is for the Use of Rome. The Use of the Office of the Dead is unidentified, but the calendar is for the Use of Utrecht. The two separate parts of the manuscript were bound together in Flanders. The sections of W.168 attributed to the Masters of Zweder van Culemborg have been compared to Utrecht, Utrecht University Ms. 1037; Cambridge, Fitzwilliam Museum James Ms. 141; the second hand in New York, Pierpont Morgan Library Ms. M.87; Stockholm, Royal Library A 226, and Philadelphia, Free Library Lewis Ms. 88. \n For full description, see http://www.thedigitalwalters.org/Data/WaltersManuscripts/html/W168/description.html" + ] + } + } + ], + "provider": [], + "thumbnail": [ + { + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/!400,400/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [ + { + "id": "https://purl.stanford.edu/qm670kv1873.mods", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Walters Ms. W.168, Book of Hours" + ] + }, + "logo": [ + { + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette/full/400,/0/default.jpg", + "type": "ContentResource" + } + ], + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "All Walters manuscript images and descriptions provided here are copyrighted © The Walters Art Museum." + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1": { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/5fd76287-bc78-4a4b-9f43-eb3eee89b038", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Upper board outside" + ] + }, + "height": 2236, + "width": 1732, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/5fd76287-bc78-4a4b-9f43-eb3eee89b038", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/5fd76287-bc78-4a4b-9f43-eb3eee89b038": { + "id": "https://example.org/uuid/5fd76287-bc78-4a4b-9f43-eb3eee89b038", + "type": "AnnotationPage", + "items": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "id": "https://example.org/uuid/5fd76287-bc78-4a4b-9f43-eb3eee89b038", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_1": { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/5fd76287-bc78-4a4b-9f43-eb3eee89b038", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/full/0/default.jpg": { + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 2236, + "width": 1732, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_1", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/!400,400/0/default.jpg": { + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/!400,400/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/!400,400/0/default.jpg", + "type": "Image" + } + ] + }, + "https://purl.stanford.edu/qm670kv1873.mods": { + "id": "https://purl.stanford.edu/qm670kv1873.mods", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/mods+xml", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "id": "https://purl.stanford.edu/qm670kv1873.mods", + "type": "Dataset" + } + ] + }, + "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette/full/400,/0/default.jpg": { + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette/full/400,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette/full/400,/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300": { + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/full/0/default.jpg", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + }, + { + "iiif-parser:partOf": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/!400,400/0/default.jpg", + "@explicit": true, + "profile": {}, + "service": [], + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2" + } + ] + }, + "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette": { + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette/full/400,/0/default.jpg", + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_www_e_codices_unifr_ch_metadata_iiif_csg_0730_manifest": { + "Collection": { + "https://www.e-codices.ch/en/list/csg": { + "id": "https://www.e-codices.ch/en/list/csg", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.ch/en/list/csg", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json": { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-651.json", + "type": "Range" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-1190.json", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "St. Gallen" + ] + } + }, + { + "label": { + "@none": [ + "Collection Name" + ] + }, + "value": { + "@none": [ + "Stiftsbibliothek" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "Cod. Sang. 730" + ] + } + }, + { + "label": { + "@none": [ + "Document Type" + ] + }, + "value": { + "@none": [ + "Manuscript" + ] + } + }, + { + "label": { + "@none": [ + "DOI" + ] + }, + "value": { + "@none": [ + "10.5076/e-codices-csg-0730" + ] + } + }, + { + "label": { + "@none": [ + "Title (English)" + ] + }, + "value": { + "@none": [ + "Edictum Rothari (Veterum Fragmentorum Tomus III)" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "Parchment" + ] + } + }, + { + "label": { + "@none": [ + "Place of Origin (English)" + ] + }, + "value": { + "@none": [ + "Bobbio (?)" + ] + } + }, + { + "label": { + "@none": [ + "Date of Origin (English)" + ] + }, + "value": { + "@none": [ + "670/680" + ] + } + }, + { + "label": { + "@none": [ + "Number of Pages" + ] + }, + "value": { + "@none": [ + "88" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "20.5 x 14 cm" + ] + } + }, + { + "label": { + "@none": [ + "Online Since" + ] + }, + "value": { + "@none": [ + "2009-07-31" + ] + } + }, + { + "label": { + "@none": [ + "Summary (English)" + ] + }, + "value": { + "@none": [ + "The incompletely preserved Edictum Rothari is the oldest extant copy of the early medieval law of the Lombards as decreed by King Rothari (636-652) in 643. This earliest known copy, dating from 670/680 and originating in Bobbio (?) has been preserved only as fragments divided between the Abbey Library of St. Gall, the Badische Landesbibliothek Karlsruhe, the Zentralbibliothek in Zurich and the Zurich cantonal archives. The largest portion of the fragments, which were bound together in the present volume by Abbey Librarian Ildefons von Arx in 1822, is found at the Abbey Library of St. Gall. In 1972, the fragmental parchment leaves of the Edictum Rothari owned by the Abbey Library of St. Gall were rebound into a new volume, in a fashion that does not exactly follow conservational guidelines, together with black and white photos of the fragments that are in Karlsruhe and Zurich. The photos were then removed from this by restorer Martin Strebel in 2008. At the same time, this manuscript, which is significant to the history of law, was rebound using the latest book restoration techniques, thanks to the Friends of the Abbey Library of St. Gall, which covered the costs of the work." + ] + } + }, + { + "label": { + "@none": [ + "Persons" + ] + }, + "value": { + "@none": [ + "Librarian: Arx, Ildefons von; Author: Rothari, Langobardenreich, König" + ] + } + }, + { + "label": { + "@none": [ + "Century" + ] + }, + "value": { + "@none": [ + "7th century" + ] + } + }, + { + "label": { + "@none": [ + "Text Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "en": [ + "The incompletely preserved Edictum Rothari is the oldest extant copy of the early medieval law of the Lombards as decreed by King Rothari (636-652) in 643. This earliest known copy, dating from 670/680 and originating in Bobbio (?) has been preserved only as fragments divided between the Abbey Library of St. Gall, the Badische Landesbibliothek Karlsruhe, the Zentralbibliothek in Zurich and the Zurich cantonal archives. The largest portion of the fragments, which were bound together in the present volume by Abbey Librarian Ildefons von Arx in 1822, is found at the Abbey Library of St. Gall. In 1972, the fragmental parchment leaves of the Edictum Rothari owned by the Abbey Library of St. Gall were rebound into a new volume, in a fashion that does not exactly follow conservational guidelines, together with black and white photos of the fragments that are in Karlsruhe and Zurich. The photos were then removed from this by restorer Martin Strebel in 2008. At the same time, this manuscript, which is significant to the history of law, was rebound using the latest book restoration techniques, thanks to the Friends of the Abbey Library of St. Gall, which covered the costs of the work." + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "https://www.e-codices.unifr.ch/xml/tei_published/csg-0730.xml", + "type": "ContentResource" + } + ], + "service": [ + { + "id": "https://www.e-codices.unifr.ch/webmention/receive", + "type": "Service", + "service": [], + "profile": "https://www.w3.org/ns/webmention", + "label": "e-codices Webmention Service" + } + ], + "services": [], + "homepage": [ + { + "id": "https://www.e-codices.ch/en/list/one/csg/0730", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [ + { + "id": "https://www.e-codices.ch/en/list/csg", + "type": "Collection" + } + ], + "annotations": [], + "label": { + "@none": [ + "St. Gallen, Stiftsbibliothek, Cod. Sang. 730" + ] + }, + "logo": [ + { + "id": "https://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "ContentResource" + } + ], + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "e-codices - Virtual Manuscript Library of Switzerland" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json": { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/f412715c-49df-4d0e-bc01-63d1a098565a", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Front cover" + ] + }, + "height": 6496, + "width": 4872, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/f412715c-49df-4d0e-bc01-63d1a098565a", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + }, + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-651.json", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas" + } + ] + }, + "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e001.json": { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e001.json", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-1190.json", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e001.json", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/f412715c-49df-4d0e-bc01-63d1a098565a": { + "id": "https://example.org/uuid/f412715c-49df-4d0e-bc01-63d1a098565a", + "type": "AnnotationPage", + "items": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e001.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "id": "https://example.org/uuid/f412715c-49df-4d0e-bc01-63d1a098565a", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e001.json": { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e001.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e001.jp2/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/f412715c-49df-4d0e-bc01-63d1a098565a", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e001.json", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e001.jp2/full/full/0/default.jpg": { + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e001.jp2/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e001.json", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e001.jp2/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://www.e-codices.ch/en/list/one/csg/0730": { + "id": "https://www.e-codices.ch/en/list/one/csg/0730", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.ch/en/list/one/csg/0730", + "type": "Text" + } + ] + }, + "https://www.e-codices.unifr.ch/xml/tei_published/csg-0730.xml": { + "id": "https://www.e-codices.unifr.ch/xml/tei_published/csg-0730.xml", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@format": "application/tei+xml", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.unifr.ch/xml/tei_published/csg-0730.xml", + "type": "Dataset" + } + ] + }, + "https://www.e-codices.ch/img/logo-for-iiif-manifest.png": { + "id": "https://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "Image" + } + ] + } + }, + "Range": { + "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-651.json": { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-651.json", + "type": "Range", + "items": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "sequence" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "de": [ + "restaurierte Version (Aufnahmen vom April 2009)" + ], + "en": [ + "restored version (images from April 2009)" + ], + "fr": [ + "version restaurée (images d'avril 2009)" + ], + "it": [ + "versione restaurata (immagini d'aprile 2009)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-651.json", + "type": "Range" + } + ] + }, + "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-1190.json": { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-1190.json", + "type": "Range", + "items": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e001.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "sequence" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "de": [ + "vor der Restauration (Version von Oktober 2006)" + ], + "en": [ + "before restoration (version as of October 2006)" + ], + "fr": [ + "avant la restauration (version d'octobre 2006)" + ], + "it": [ + "prima del restauro (versione ottobre 2006)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-1190.json", + "type": "Range" + } + ] + } + }, + "Service": { + "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e001.jp2": { + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e001.jp2/full/full/0/default.jpg", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e001.jp2", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://www.e-codices.unifr.ch/webmention/receive": { + "id": "https://www.e-codices.unifr.ch/webmention/receive", + "type": "Service", + "service": [], + "profile": "https://www.w3.org/ns/webmention", + "label": "e-codices Webmention Service", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "id": "https://www.e-codices.unifr.ch/webmention/receive", + "type": "Service" + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_www_e_codices_unifr_ch_metadata_iiif_sl_0002_manifest": { + "Collection": { + "http://www.e-codices.ch/en/list/sl": { + "id": "http://www.e-codices.ch/en/list/sl", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "id": "http://www.e-codices.ch/en/list/sl", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json": { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "[sine loco]" + ] + } + }, + { + "label": { + "@none": [ + "Collection Name" + ] + }, + "value": { + "@none": [ + "codices restituti" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "Cod. 2 (Frowinus dispersus)" + ] + } + }, + { + "label": { + "@none": [ + "Document Type" + ] + }, + "value": { + "@none": [ + "Virtual Manuscript" + ] + } + }, + { + "label": { + "@none": [ + "DOI" + ] + }, + "value": { + "@none": [ + "10.5076/e-codices-sl-0002" + ] + } + }, + { + "label": { + "@none": [ + "Title (English)" + ] + }, + "value": { + "@none": [ + "Gregorius M., Moralia in Job., t. I (Codex restitutus)" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "Parchment" + ] + } + }, + { + "label": { + "@none": [ + "Place of Origin (English)" + ] + }, + "value": { + "@none": [ + "Engelberg" + ] + } + }, + { + "label": { + "@none": [ + "Date of Origin (English)" + ] + }, + "value": { + "@none": [ + "1143-1178" + ] + } + }, + { + "label": { + "@none": [ + "Number of Pages" + ] + }, + "value": { + "@none": [ + "194" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "31.5 x 23 cm" + ] + } + }, + { + "label": { + "@none": [ + "Online Since" + ] + }, + "value": { + "@none": [ + "2014-12-15" + ] + } + }, + { + "label": { + "@none": [ + "Summary (English)" + ] + }, + "value": { + "@none": [ + "This codex contains a virtual reconstruction of Engelberg Abbey Library’s Cod. 20 with the first volume of Gregory the Great’s Moralia in Iob. It contains the first (ff. 6r-99r) and second part (99r-193v), each divided into five books. At the front of the volume there used to be a full-page illustration consisting of an artistic portrayal of Job with his three friends (upper half) and a portrayal of Gregory the Great and a writing monk (lower half), who according to custom represents Peter the Deacon (Petrus Diaconus). This leaf with a verse of dedication by Frowin on the back, the actual recto side, was carefully described by P. Karl Stadler in his hand-written catalog of 1787; this helped to identify the membrum disiectum, which is now held by the The Cleveland Museum of Art, 1955.74 (Purchase from the J.H. Wade Fund), as unequivocally belonging to this volume." + ] + } + }, + { + "label": { + "@none": [ + "Sponsored by" + ] + }, + "value": { + "@none": [ + "CRUS - Rectors' Conference of the Swiss Universities" + ] + } + }, + { + "label": { + "@none": [ + "Digitized by" + ] + }, + "value": { + "@none": [ + "e-codices / The Cleveland Museum of Art" + ] + } + }, + { + "label": { + "@none": [ + "Persons" + ] + }, + "value": { + "@none": [ + "Patron: Frowinus, de Monte Angelorum; Author: Gregorius I, Papa; Librarian: Stadler, Karl" + ] + } + }, + { + "label": { + "@none": [ + "Century" + ] + }, + "value": { + "@none": [ + "12th century" + ] + } + }, + { + "label": { + "@none": [ + "Dated" + ] + }, + "value": { + "@none": [ + "1147-1178" + ] + } + }, + { + "label": { + "@none": [ + "Text Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "en": [ + "This codex contains a virtual reconstruction of Engelberg Abbey Library’s Cod. 20 with the first volume of Gregory the Great’s Moralia in Iob. It contains the first (ff. 6r-99r) and second part (99r-193v), each divided into five books. At the front of the volume there used to be a full-page illustration consisting of an artistic portrayal of Job with his three friends (upper half) and a portrayal of Gregory the Great and a writing monk (lower half), who according to custom represents Peter the Deacon (Petrus Diaconus). This leaf with a verse of dedication by Frowin on the back, the actual recto side, was carefully described by P. Karl Stadler in his hand-written catalog of 1787; this helped to identify the membrum disiectum, which is now held by the The Cleveland Museum of Art, 1955.74 (Purchase from the J.H. Wade Fund), as unequivocally belonging to this volume." + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://www.e-codices.unifr.ch/webmention/receive", + "type": "Service", + "service": [], + "profile": "https://www.w3.org/ns/webmention", + "label": "e-codices Webmention Service" + } + ], + "services": [], + "homepage": [ + { + "id": "http://www.e-codices.ch/en/list/one/sl/0002", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [ + { + "id": "http://www.e-codices.ch/en/list/sl", + "type": "Collection" + } + ], + "annotations": [], + "label": { + "@none": [ + "[sine loco], codices restituti, Cod. 2 (Frowinus dispersus)" + ] + }, + "logo": [ + { + "id": "http://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "ContentResource" + } + ], + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "e-codices - Virtual Manuscript Library of Switzerland" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json": { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/1e200b09-6d91-4153-bc17-3ac605640f96", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "Front cover" + ] + }, + "height": 6496, + "width": 4872, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/1e200b09-6d91-4153-bc17-3ac605640f96", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/1e200b09-6d91-4153-bc17-3ac605640f96": { + "id": "https://example.org/uuid/1e200b09-6d91-4153-bc17-3ac605640f96", + "type": "AnnotationPage", + "items": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e001.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "id": "https://example.org/uuid/1e200b09-6d91-4153-bc17-3ac605640f96", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e001.json": { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e001.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e001.jp2/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/1e200b09-6d91-4153-bc17-3ac605640f96", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e001.json", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e001.jp2/full/full/0/default.jpg": { + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e001.jp2/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e001.json", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e001.jp2/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "http://www.e-codices.ch/en/list/one/sl/0002": { + "id": "http://www.e-codices.ch/en/list/one/sl/0002", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "id": "http://www.e-codices.ch/en/list/one/sl/0002", + "type": "Text" + } + ] + }, + "http://www.e-codices.ch/img/logo-for-iiif-manifest.png": { + "id": "http://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "id": "http://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e001.jp2": { + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e001.jp2/full/full/0/default.jpg", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e001.jp2", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "http://www.e-codices.unifr.ch/webmention/receive": { + "id": "http://www.e-codices.unifr.ch/webmention/receive", + "type": "Service", + "service": [], + "profile": "https://www.w3.org/ns/webmention", + "label": "e-codices Webmention Service", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "id": "http://www.e-codices.unifr.ch/webmention/receive", + "type": "Service" + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_2_to_3_converted_manifests_www2_dhii_jp_nijl_nijl0018_099_0014_manifest_tags": { + "Collection": {}, + "Manifest": { + "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json": { + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "@none": [ + "Author" + ] + }, + "value": { + "@none": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "ja": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "From: IDR in NII http://www.nii.ac.jp/dsc/idr/nijl/nijl.html" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [ + "paged" + ], + "seeAlso": [ + { + "id": "http://www2.dhii.jp/nijl_opendata/NIJL0018/099-0014/", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [ + { + "id": "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [ + { + "id": "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html", + "type": "ContentResource" + } + ], + "annotations": [], + "label": { + "@none": [ + "唐糸草紙" + ] + }, + "viewingDirection": "right-to-left", + "logo": [ + { + "id": "http://www.nijl.ac.jp/pages/images/footer_icon.gif", + "type": "ContentResource" + } + ], + "rights": "http://creativecommons.org/licenses/by-sa/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "http://www.nijl.ac.jp/index_e.html" + ] + } + }, + "@context": "http://iiif.io/api/presentation/4/context.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1": { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "type": "Canvas", + "items": [ + { + "id": "https://example.org/uuid/be1c28f6-7ec7-4a05-a85a-b15320a56822", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "@none": [ + "p. 1" + ] + }, + "width": 5616, + "height": 3744, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://example.org/uuid/be1c28f6-7ec7-4a05-a85a-b15320a56822", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://example.org/uuid/be1c28f6-7ec7-4a05-a85a-b15320a56822": { + "id": "https://example.org/uuid/be1c28f6-7ec7-4a05-a85a-b15320a56822", + "type": "AnnotationPage", + "items": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "id": "https://example.org/uuid/be1c28f6-7ec7-4a05-a85a-b15320a56822", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano1": { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/uuid/be1c28f6-7ec7-4a05-a85a-b15320a56822", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg/full/full/0/default.jpg": { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano1", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html": { + "id": "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "id": "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html", + "type": "Text", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {} + } + ] + }, + "http://www2.dhii.jp/nijl_opendata/NIJL0018/099-0014/": { + "id": "http://www2.dhii.jp/nijl_opendata/NIJL0018/099-0014/", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "id": "http://www2.dhii.jp/nijl_opendata/NIJL0018/099-0014/", + "type": "Dataset" + } + ] + }, + "http://www.nijl.ac.jp/pages/images/footer_icon.gif": { + "id": "http://www.nijl.ac.jp/pages/images/footer_icon.gif", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "id": "http://www.nijl.ac.jp/pages/images/footer_icon.gif", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg": { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg/full/full/0/default.jpg", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0001_mvm_image": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Single Image Example" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 1800, + "width": 1200, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0001-mvm-image/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0001-mvm-image/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png": { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1800, + "width": 1200, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/annotation/p0001-image", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0002_mvm_audio": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Simplest Audio Example 1" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas": { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 1985.024, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "duration": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page": { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page/annotation", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page/annotation": { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page/annotation", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4": { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "audio/mp4", + "duration": 1985.024, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page/annotation", + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0003_mvm_video": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Video Example 3" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas": { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 360, + "width": 480, + "duration": 572.034, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {}, + "duration": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page": { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page/annotation", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page/annotation": { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page/annotation", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page/annotation", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0004_canvas_size": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Still image from an opera performance at Indiana University" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 1080, + "width": 1920, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 360, + "width": 640, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0005_image_service": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Canvas with a single IIIF image" + ] + }, + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0006_text_language": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "en": [ + "Creator" + ], + "fr": [ + "Auteur" + ] + }, + "value": { + "none": [ + "Whistler, James Abbott McNeill" + ] + } + }, + { + "label": { + "en": [ + "Subject" + ], + "fr": [ + "Sujet" + ] + }, + "value": { + "en": [ + "McNeill Anna Matilda, mother of Whistler (1804-1881)" + ], + "fr": [ + "McNeill Anna Matilda, mère de Whistler (1804-1881)" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Whistler's Mother" + ], + "fr": [ + "La Mère de Whistler" + ] + }, + "summary": { + "en": [ + "Arrangement in Grey and Black No. 1, also called Portrait of the Artist's Mother." + ], + "fr": [ + "Arrangement en gris et noir n°1, also called Portrait de la mère de l'artiste." + ] + }, + "requiredStatement": { + "label": { + "en": [ + "Held By" + ], + "fr": [ + "Détenu par" + ] + }, + "value": { + "none": [ + "Musée d'Orsay, Paris, France" + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 1114, + "height": 991, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0006-text-language/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0006-text-language/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0006-text-language/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 1114, + "height": 991, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0006-text-language/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother": { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0007_string_formats": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "en": [ + "Author" + ] + }, + "value": { + "none": [ + "Glen Robson" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

" + ] + }, + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 " + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0008_rights": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

" + ] + }, + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 " + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0009_book_1": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "paged" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Simple Manifest - Book" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4613, + "width": 3204, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0009-book-1/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0010_book_2_viewing_direction_manifest_rtl": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Book with Right-to-Left Viewing Direction" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0010_book_2_viewing_direction_manifest_ttb": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Diary with Top-to-Bottom Viewing Direction" + ] + }, + "summary": { + "en": [ + "William Lewis Sachtleben was an American long-distance cyclist who rode across Asia from Istanbul to Peking in 1891 to 1892 with Thomas Gaskell Allen Jr., his classmate from Washington University. This was part of a longer journey that began the day after they had graduated from college, when they travelled to New York and on to Liverpool; in all they travelled 15,044 miles by bicycle, 'the longest continuous land journey ever made around the world' as reported in their book Across Asia on a bicycle (1895). Sachtleben documented his travels with photographs and diaries, the latter of which he numbered sequentially. The diary of notebook 'No. 10' covers a portion of their journey through the Armenian area of Turkey from April 12 to May 9 (there is a 2-page reading list at the end). During this time they rode from Ankara (Angora in the diary) to Sivas, where they stayed for ten days while Allen had a bout of typhoid fever, and the first half of a ten-day excursion to Merzifon (Mersovan in the diary), taken by Sachtleben to give Allen additional time to recover." + ] + }, + "viewingDirection": "top-to-bottom", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "image 1" + ] + }, + "width": 2251, + "height": 3152, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 2251, + "height": 3152, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02": { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0011_book_3_behavior_manifest_continuous": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "continuous" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "gez": [ + "Ms. 21 Māzemurā Dāwit, Asmat [መዝሙረ ዳዊት]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Section 1 [Recto]" + ] + }, + "width": 11368, + "height": 1592, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 11368, + "height": 1592, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0011_book_3_behavior_manifest_individuals": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "individuals" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 3375, + "height": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0013_placeholdercanvas": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Video recording of Donizetti's _The Elixer of Love_" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 640, + "height": 360, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 7278.466, + "width": 640, + "height": 360, + "placeholderContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "duration": {}, + "width": {}, + "height": {}, + "placeholderContainer": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 7278.466, + "width": 640, + "height": 360, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "width": 640, + "height": 360, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0014_accompanyingcanvas": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Partial audio recording of Gustav Mahler's _Symphony No. 3_" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "First page of score for Gustav Mahler, Symphony No. 3" + ] + }, + "height": 998, + "width": 772, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Gustav Mahler, Symphony No. 3, CD 1" + ] + }, + "duration": 1985.024, + "accompanyingContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "duration": {}, + "accompanyingContainer": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4": { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 1985.024, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound" + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 998, + "width": 772, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0": { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0015_start": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Video of a 30-minute digital clock" + ] + }, + "start": { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0d5b3103", + "type": "PointSelector", + "selectors": [], + "t": 120.5 + } + ], + "transform": [], + "action": [], + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas-start/segment1", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas" + } + }, + "rights": "http://creativecommons.org/licenses/by/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "The video was created by DrLex1 and was released using a Creative Commons Attribution license" + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 1801.055, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "duration": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 1801.055, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/0d5b3103": { + "id": "vault://iiif-parser/v4/Selector/0d5b3103", + "type": "PointSelector", + "selectors": [], + "t": 120.5, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0015-start/canvas-start/segment1", + "id": "vault://iiif-parser/v4/Selector/0d5b3103", + "type": "PointSelector" + } + ] + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0017_transcription_av": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Volleyball for Boys" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas": { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "height": 1080, + "width": 1920, + "duration": 662.037, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": [ + { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "type": "ContentResource" + } + ], + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {}, + "duration": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page": { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation": { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 662.037, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", + "type": "Video" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt": { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Transcript" + ] + }, + "format": "text/plain", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "type": "Text" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0019_html_in_annotations": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1": { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ], + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ], + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1": { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2": { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1": { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1": { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/fd0d7a42", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fd0d7a42": { + "id": "vault://iiif-parser/v4/ContentResource/fd0d7a42", + "type": "TextualBody", + "language": [ + "de" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "value": "

Göttinger Marktplatz mit Gänseliesel Brunnen Wikipedia logo

", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "id": "vault://iiif-parser/v4/ContentResource/fd0d7a42", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0021_tagging": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "@explicit": true, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas" + } + ], + "height": 3024, + "width": 4032 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1": { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag": { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2ef879b3", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1f57a010", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=265,661,1260,1239" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2ef879b3": { + "id": "vault://iiif-parser/v4/ContentResource/2ef879b3", + "type": "TextualBody", + "language": [ + "de" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Gänseliesel-Brunnen", + "format": "text/plain", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "id": "vault://iiif-parser/v4/ContentResource/2ef879b3", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/1f57a010": { + "id": "vault://iiif-parser/v4/Selector/1f57a010", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=265,661,1260,1239" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0022_linking_with_a_hotspot": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "type": "Manifest", + "@explicit": true, + "items": [], + "structures": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "@explicit": true, + "@context": {}, + "label": {}, + "structures": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "type": "Manifest" + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + } + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "type": "Manifest" + } + ], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/2", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "@explicit": true, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/2", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas" + } + ], + "height": 3024, + "width": 4032 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/2": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/2", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0001-image", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link", + "type": "Annotation", + "motivation": [ + "linking" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/678d817c", + "type": "ContentResource" + }, + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1f57a010", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=265,661,1260,1239" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/2", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/678d817c": { + "id": "vault://iiif-parser/v4/ContentResource/678d817c", + "type": "TextualBody", + "language": [ + "de" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/plain", + "value": "A link to a close up of Gänseliesel-Brunnen fountain.", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link", + "id": "vault://iiif-parser/v4/ContentResource/678d817c", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/1f57a010": { + "id": "vault://iiif-parser/v4/Selector/1f57a010", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=265,661,1260,1239" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0024_book_4_toc": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Ethiopic Ms 10" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "f. 1r" + ] + }, + "height": 2504, + "width": 1768, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 2504, + "width": 1768, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "gez": [ + "Tabiba Tabiban [ጠቢበ ጠቢባን]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Monday" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Tuesday" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "gez": [ + "Arede'et [አርድዕት]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0": { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Table of Contents" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "type": "Range" + } + ] + } + }, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0026_toc_opera": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 1920, + "height": 1080, + "duration": 7278.422, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "width": {}, + "height": {}, + "duration": {} + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 7278.422, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video" + } + ] + } + }, + "Range": { + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Atto Primo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Atto Secondo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1": { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "type": "Range" + } + ] + } + }, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0029_metadata_anywhere": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Glindoni, Henry Gillard, 1852-1913" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1800-1899" + ] + } + }, + { + "label": { + "en": [ + "Physical Description" + ] + }, + "value": { + "en": [ + "1 painting : oil on canvas ; canvas 152 x 244.4 cm" + ] + } + }, + { + "label": { + "en": [ + "Reference" + ] + }, + "value": { + "en": [ + "Wellcome Library no. 47369i" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "John Dee performing an experiment before Queen Elizabeth I." + ] + }, + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Wellcome Collection. Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)" + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The scene is the house at Mortlake of Dr John Dee (1527-1608). At the court of Queen Elizabeth I, Dee was revered for the range of his scientific knowledge, which embraced the fields of mathematics, navigation, geography, alchemy/chemistry, medicine and optics. In the painting he is showing the effect of combining two elements, either to cause combustion or to extinguish it. Behind him is his assistant Edward Kelly, wearing a long skullcap to conceal the fact that his ears had been cropped as a punishment for forgery." + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Painting under natural light" + ] + }, + "height": 1271, + "width": 2000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The scene is the house at Mortlake of Dr John Dee (1527-1608). At the court of Queen Elizabeth I, Dee was revered for the range of his scientific knowledge, which embraced the fields of mathematics, navigation, geography, alchemy/chemistry, medicine and optics. In the painting he is showing the effect of combining two elements, either to cause combustion or to extinguish it. Behind him is his assistant Edward Kelly, wearing a long skullcap to conceal the fact that his ears had been cropped as a punishment for forgery." + ] + } + } + ], + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0030_multi_volume_manifest_v1": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "individuals" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Seirō ehon nenjū gyōji : kan 1 | 青楼絵本年中行事 : 巻 1" + ] + }, + "viewingDirection": "right-to-left", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Front cover" + ] + }, + "height": 5730, + "width": 4301, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 5730, + "width": 4301, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0030_multi_volume_manifest_v2": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "individuals" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Seirō ehon nenjū gyōji : kan 2 | 青楼絵本年中行事 : 巻 2" + ] + }, + "viewingDirection": "right-to-left", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Front cover" + ] + }, + "height": 5745, + "width": 4114, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 5745, + "width": 4114, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0031_bound_multivolume": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Front cover" + ] + }, + "height": 7230, + "width": 5428, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Front Matter" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "de": [ + "Erste Ausgabe. Begreift die Ceremonien der Lutheraner von der Augspurgischen Confession, der Reformirten, der Holländischen u. a. Kirchen" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "de": [ + "Zweyte Ausgabe. Begreift die Ceremonien der Engl. hohen Kirche : Der Quacker, der Anabaptisten, der Adamiten, der Flagellanten, der Frey-Maurer, der Rhinsbürger..." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0": { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range" + } + ] + } + }, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover": { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0032_collection_manifest_01": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1899" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "The Gulf Stream" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 3540, + "width": 5886, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3540, + "width": 5886, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art": { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0032_collection_manifest_02": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1895" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Northeaster" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 2572, + "width": 3764, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 2572, + "width": 3764, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895": { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0033_choice": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "John Dee performing an experiment before Queen Elizabeth I." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 1271, + "width": 2000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/75d30241", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 2000, + "height": 1271, + "label": { + "en": [ + "Natural Light" + ] + } + }, + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 2000, + "height": 1271, + "label": { + "en": [ + "X-Ray" + ] + } + }, + "vault://iiif-parser/v4/ContentResource/75d30241": { + "id": "vault://iiif-parser/v4/ContentResource/75d30241", + "type": "Choice", + "language": [], + "items": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "id": "vault://iiif-parser/v4/ContentResource/75d30241", + "type": "Choice" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0035_foldouts": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "paged" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Outlines of geology being the substance of a course of lectures delivered in the Theatre of the Royal Institution in the year 1816" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 4429, + "width": 2533, + "label": { + "en": [ + "Front cover" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {}, + "label": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4429, + "width": 2533, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover": { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0036_composition_from_multiple_images": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Folio from Grandes Chroniques de France, ca. 1460" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", + "@explicit": true, + "label": {}, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas" + } + ], + "label": { + "none": [ + "f. 033v-034r [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]" + ] + }, + "height": 5412, + "width": 7216 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "type": "Annotation" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image": { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/144770f7", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=3949,994,1091,1232" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "label": { + "fr": [ + "Miniature [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]" + ] + }, + "width": 2138, + "height": 2414, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux": { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature": { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/144770f7": { + "id": "vault://iiif-parser/v4/Selector/144770f7", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=3949,994,1091,1232" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0040_image_rotation_service_manifest_css": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 2105, + "height": 1523, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/sr1", + "styleClass": "rotated", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "stylesheet": { + "type": "CssStylesheet", + "value": ".rotated { transform-origin: center; transform: rotate(90deg); }" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 1523, + "height": 2105, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0040_image_rotation_service_manifest_service": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 2105, + "height": 1523, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/51a223c9", + "type": "ImageApiSelector", + "selectors": [], + "rotation": "90" + } + ], + "transform": [], + "action": [], + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/v0001-image", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 1523, + "height": 2105, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/51a223c9": { + "id": "vault://iiif-parser/v4/Selector/51a223c9", + "type": "ImageApiSelector", + "selectors": [], + "rotation": "90", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/v0001-image", + "id": "vault://iiif-parser/v4/Selector/51a223c9", + "type": "ImageApiSelector" + } + ] + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0046_rendering": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Alternative Representations Through Rendering" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 3497, + "height": 4823, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf": { + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "PDF version" + ] + }, + "format": "application/pdf", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "type": "Text" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0047_homepage": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "none": [ + "Laocöon" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "Front" + ] + }, + "height": 3000, + "width": 2315, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1": { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3000, + "width": 2315, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "type": "Image" + } + ] + }, + "https://www.getty.edu/art/collection/object/103RQQ": { + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "type": "Text", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Home page at the Getty Museum Collection" + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "type": "Text" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0053_seealso": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Linking to Structured Metadata" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml": { + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "MODS metadata" + ] + }, + "format": "text/xml", + "profile": "http://www.loc.gov/mods/v3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", + "type": "Dataset" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0064_opera_one_canvas": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Date Issued" + ] + }, + "value": { + "en": [ + "2019" + ] + } + }, + { + "label": { + "en": [ + "Publisher" + ] + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": [], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": [], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "@explicit": true, + "width": {}, + "height": {}, + "duration": {}, + "metadata": {}, + "provider": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "ContentResource" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas" + } + ], + "width": 1920, + "height": 1080, + "duration": 7278.422 + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/15078cb0", + "type": "FragmentSelector", + "selectors": [], + "value": "t=0,3971.24" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a68deb8d", + "type": "FragmentSelector", + "selectors": [], + "value": "t=3971.24" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3971.24, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3307.22, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Atto Primo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Atto Secondo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1": { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "type": "Range" + } + ] + } + }, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/15078cb0": { + "id": "vault://iiif-parser/v4/Selector/15078cb0", + "type": "FragmentSelector", + "selectors": [], + "value": "t=0,3971.24" + }, + "vault://iiif-parser/v4/Selector/a68deb8d": { + "id": "vault://iiif-parser/v4/Selector/a68deb8d", + "type": "FragmentSelector", + "selectors": [], + "value": "t=3971.24" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0065_opera_multiple_canvases": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Date Issued" + ] + }, + "value": { + "en": [ + "2019" + ] + } + }, + { + "label": { + "en": [ + "Publisher" + ] + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 1920, + "height": 1080, + "duration": 3971.24, + "label": { + "en": [ + "Atto Primo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "width": {}, + "height": {}, + "duration": {}, + "label": {} + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3971.24, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Atto Primo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Atto Secondo" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1": { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "type": "Range" + } + ] + } + }, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0074_multiple_language_captions": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "it": [ + "Per voi signore. Modelli francesi" + ], + "en": [ + "For ladies. French models" + ] + }, + "rights": "http://rightsstatements.org/vocab/InC/1.0/", + "requiredStatement": { + "label": { + "en": [ + "Rights" + ] + }, + "value": { + "en": [ + "All rights reserved Cinecittà Luce spa" + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas": { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "type": "AnnotationPage" + } + ], + "height": 384, + "width": 288, + "duration": 65, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "type": "AnnotationPage" + } + ], + "height": {}, + "width": {}, + "duration": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page": { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation": { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt": { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/349ea6c6", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4": { + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 384, + "width": 288, + "duration": 65, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "type": "Video" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt": { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", + "type": "Text", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/vtt", + "label": { + "en": [ + "Captions in WebVTT format" + ] + } + }, + "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt": { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", + "type": "Text", + "language": [ + "it" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/vtt", + "label": { + "it": [ + "Sottotitoli in formato WebVTT" + ] + } + }, + "vault://iiif-parser/v4/ContentResource/349ea6c6": { + "id": "vault://iiif-parser/v4/ContentResource/349ea6c6", + "type": "Choice", + "language": [], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", + "type": "ContentResource" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "id": "vault://iiif-parser/v4/ContentResource/349ea6c6", + "type": "Choice" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0117_add_image_thumbnail": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Playbill Cover with Manifest Thumbnail" + ] + }, + "summary": { + "en": [ + "Cover of playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0": { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "front cover with color bar" + ] + }, + "width": 4520, + "height": 5312, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1": { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image": { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 5312, + "width": 4520, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "service": [], + "profile": "level1", + "height": 4823, + "width": 3497, + "extraFormats": [ + "png" + ], + "extraQualities": [ + "default", + "color", + "gray" + ], + "protocol": "http://iiif.io/api/image", + "tiles": [ + { + "height": 512, + "scaleFactors": [ + 1, + 2, + 4, + 8 + ], + "width": 512 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "service": [], + "profile": "level1", + "height": 4823, + "width": 3497, + "extraFormats": [ + "png" + ], + "extraQualities": [ + "default", + "color", + "gray" + ], + "protocol": "http://iiif.io/api/image", + "tiles": [ + { + "height": 512, + "scaleFactors": [ + 1, + 2, + 4, + 8 + ], + "width": 512 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {}, + "height": {}, + "width": {}, + "extraFormats": {}, + "extraQualities": {}, + "protocol": {}, + "tiles": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0118_multivalue": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "en": [ + "Alternative titles" + ] + }, + "value": { + "en": [ + "Whistler's Mother", + "Arrangement in Grey and Black No. 1" + ], + "fr": [ + "Portrait de la mère de l'artiste", + "La Mère de Whistler" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "fr": [ + "Arrangement en gris et noir no 1" + ] + }, + "summary": { + "en": [ + "A painting in oil on canvas created by the American-born painter James McNeill Whistler, in 1871." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 1114, + "height": 991, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1": { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg": { + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0135_annotating_point_in_canvas": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Using a point selector for annotating a location on a map." + ] + }, + "summary": { + "en": [ + "A map containing an point with an annotation of the location." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "@explicit": true, + "label": {}, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet" + ] + }, + "height": 7072, + "width": 5212 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/58db1965", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/2a734709", + "type": "PointSelector", + "selectors": [], + "x": 3385, + "y": 1464 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 7072, + "width": 5212, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/58db1965": { + "id": "vault://iiif-parser/v4/ContentResource/58db1965", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Town Creek Aqueduct", + "format": "text/plain", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "id": "vault://iiif-parser/v4/ContentResource/58db1965", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/2a734709": { + "id": "vault://iiif-parser/v4/Selector/2a734709", + "type": "PointSelector", + "selectors": [], + "x": 3385, + "y": 1464 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0139_geolocate_canvas_fragment": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Recipe Manifest for #139" + ] + }, + "summary": { + "en": [ + "A IIIF Presentation API 3.0 Manifest containing a GeoJSON-LD Web Annotation which targets a Canvas fragment." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "@explicit": true, + "label": {}, + "width": {}, + "height": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet" + ] + }, + "width": 5212, + "height": 7072 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b3ac34a4", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=920,3600,1510,3000" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 5212, + "height": 7072, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json": { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", + "type": "Feature", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "properties": { + "label": { + "en": [ + "Targeted Map from Chesapeake and Ohio Canal Pamphlet" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.019853, + 38.913101 + ], + [ + -77.110013, + 38.843254 + ], + [ + -77.284698, + 38.997574 + ], + [ + -77.188911, + 39.062648 + ] + ] + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", + "type": "Feature" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/b3ac34a4": { + "id": "vault://iiif-parser/v4/Selector/b3ac34a4", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=920,3600,1510,3000" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0154_geo_extension": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "it": [ + "Bronzo Laocoonte e i suoi figli" + ] + }, + "navPlace": { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature-collection/1", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature/1", + "type": "Feature", + "properties": { + "label": { + "en": [ + "The Laocoön Bronze" + ], + "it": [ + "Bronzo Laocoonte e i suoi figli" + ] + } + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.4745559, + 34.0776376 + ] + } + } + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 3000, + "width": 2315, + "label": { + "en": [ + "Front of Bronze" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {}, + "label": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1": { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3000, + "width": 2315, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0202_start_canvas": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Multiple Related Images (Book, etc.)" + ] + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4613, + "width": 3204, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0219_using_caption_file": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Lunchroom Manners" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas": { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "type": "AnnotationPage" + } + ], + "height": 360, + "width": 480, + "duration": 572.034, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "type": "AnnotationPage" + } + ], + "height": {}, + "width": {}, + "duration": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page": { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2": { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1": { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1": { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt": { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "type": "Text", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/vtt", + "label": { + "en": [ + "Captions in WebVTT format" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "type": "Text" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0229_behavior_ranges": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json ": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json ", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Video navigation with thumbnails in a Range" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json ", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json ", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 1080, + "width": 1920, + "duration": 3307.22, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json ", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {}, + "duration": {} + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=0,9": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=0,9", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1.1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=0,9", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=9,305": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=9,305", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/2", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=9,305", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=305,610": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=305,610", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/3", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=305,610", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=610,915": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=610,915", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/4", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=610,915", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=915,1220": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=915,1220", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/5", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=915,1220", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1220,1525": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1220,1525", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/6", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1220,1525", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1525,1830": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1525,1830", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/7", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1525,1830", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1830,2135": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1830,2135", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/8", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1830,2135", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2135,2440": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2135,2440", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/9", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2135,2440", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2440,2745": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2440,2745", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/10", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2440,2745", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2745,3307.22": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2745,3307.22", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/11", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2745,3307.22", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1/annotation/2": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3307.22, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1/annotation/2", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-01.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-01.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/2", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-01.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-02.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-02.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/3", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-02.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-03.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-03.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/4", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-03.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-04.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-04.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/5", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-04.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-05.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-05.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/6", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-05.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-06.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-06.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/7", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-06.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-07.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-07.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/8", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-07.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-08.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-08.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/9", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-08.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-09.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-09.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1266, + "width": 2250, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/10", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-09.png", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-10.png": { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-10.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "width": 2250, + "height": 1266, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/11", + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-10.png", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1.1": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1.1", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=0,9", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1.1", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/2": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/2", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=9,305", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-01.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "9s – 305s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/2", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/3": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/3", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=305,610", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-02.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "305s – 610s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/3", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/4": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/4", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=610,915", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-03.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "610s – 915s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/4", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/5": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/5", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=915,1220", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-04.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "915s – 1220s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/5", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/6": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/6", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1220,1525", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-05.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "1220s – 1525s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/6", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/7": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/7", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1525,1830", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-06.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "1525s – 1830s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/7", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/8": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/8", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1830,2135", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-07.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "1830s – 2135s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/8", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/9": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/9", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2135,2440", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-08.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "2135s – 2440s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/9", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/10": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/10", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2440,2745", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-09.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "2440s – 2745s" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/10", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/11": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/11", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2745,3307.22", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-10.png", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "2745s – end" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/11", + "type": "Range" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1": { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "type": "Range", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1.1", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/2", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/3", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/4", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/5", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/6", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/7", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/8", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/9", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/10", + "type": "Range" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/11", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "thumbnail-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Thumbnail Navigation" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json ", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "type": "Range" + } + ] + } + }, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0230_navdate_navdate_map_1_manifest": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide" + ] + }, + "navDate": "1987-01-01T00:00:00+00:00", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "1987 Map, recto and verso, with a date of publication" + ] + }, + "height": 7072, + "width": 5212, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 7072, + "width": 5212, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0230_navdate_navdate_map_2_manifest": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide" + ] + }, + "navDate": "1986-01-01T00:00:00+00:00", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "1986 Map, recto and verso, with a date of publication" + ] + }, + "height": 1765, + "width": 1286, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 1765, + "width": 1286, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/": { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0234_provider": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [ + { + "id": "https://id.loc.gov/authorities/n79055331", + "type": "Agent" + } + ], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Playbill Cover" + ] + }, + "summary": { + "en": [ + "Cover of playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV, and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0": { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "front cover with color bar" + ] + }, + "width": 4520, + "height": 5312, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1": { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image": { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 4520, + "height": 5312, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://digital.library.ucla.edu/": { + "id": "https://digital.library.ucla.edu/", + "type": "Text", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "UCLA Library Digital Collections" + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", + "id": "https://digital.library.ucla.edu/", + "type": "Text" + } + ] + }, + "https://id.loc.gov/authorities/names/n79055331.madsxml.xml": { + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "US Library of Congress data about the UCLA Library" + ] + }, + "format": "application/xml", + "profile": "http://www.loc.gov/mads/v2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "type": "Dataset" + } + ] + }, + "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png": { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", + "type": "ImageService3", + "service": [], + "profile": "level2", + "width": 1200, + "height": 502, + "sizes": [ + { + "width": 300, + "height": 126 + }, + { + "width": 600, + "height": 251 + }, + { + "width": 1200, + "height": 502 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://id.loc.gov/authorities/n79055331", + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full": { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2": { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", + "type": "ImageService3", + "service": [], + "profile": "level2", + "width": 1200, + "height": 502, + "sizes": [ + { + "width": 300, + "height": 126 + }, + { + "width": 600, + "height": 251 + }, + { + "width": 1200, + "height": 502 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {}, + "width": {}, + "height": {}, + "sizes": {} + } + ] + } + }, + "Selector": {}, + "Agent": { + "https://id.loc.gov/authorities/n79055331": { + "id": "https://id.loc.gov/authorities/n79055331", + "type": "Agent", + "logo": [ + { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "type": "ContentResource" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://digital.library.ucla.edu/", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "UCLA Library" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "id": "https://id.loc.gov/authorities/n79055331", + "type": "Agent" + } + ] + } + }, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0240_navplace_on_canvases": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Laocöon, geolocated sculpture and painting." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 3000, + "width": 2315, + "label": { + "en": [ + "Front of Bronze" + ] + }, + "navPlace": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/1", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/1", + "type": "Feature", + "properties": { + "label": { + "en": [ + "Current Location of the Laocoön Bronze" + ], + "it": [ + "Ubicazione attuale del Bronzo Laocoonte e i suoi figli" + ] + } + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.4745559, + 34.0776376 + ] + } + } + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {}, + "label": {}, + "navPlace": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3000, + "width": 2315, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon": { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0258_tagging_external_resource": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "http://www.wikidata.org/entity/Q18624915": { + "id": "http://www.wikidata.org/entity/Q18624915", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "id": "http://www.wikidata.org/entity/Q18624915", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "@explicit": true, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas" + } + ], + "height": 3024, + "width": 4032 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1": { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata": { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "http://www.wikidata.org/entity/Q18624915", + "type": "Canvas" + } + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0962ddd2", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/506c168c", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=749,1054,338,460" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0962ddd2": { + "id": "vault://iiif-parser/v4/ContentResource/0962ddd2", + "type": "TextualBody", + "language": [ + "de" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Gänseliesel-Brunnen", + "format": "text/plain", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "id": "vault://iiif-parser/v4/ContentResource/0962ddd2", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/506c168c": { + "id": "vault://iiif-parser/v4/Selector/506c168c", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=749,1054,338,460" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0261_non_rectangular_commenting": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "@explicit": true, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas" + } + ], + "height": 3024, + "width": 4032 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2ef879b3", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/76050eee", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2ef879b3": { + "id": "vault://iiif-parser/v4/ContentResource/2ef879b3", + "type": "TextualBody", + "language": [ + "de" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Gänseliesel-Brunnen", + "format": "text/plain", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "id": "vault://iiif-parser/v4/ContentResource/2ef879b3", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/76050eee": { + "id": "vault://iiif-parser/v4/Selector/76050eee", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0266_full_canvas_annotation": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1": { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ], + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ], + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1": { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2": { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1": { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1": { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/615a8c1a", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/615a8c1a": { + "id": "vault://iiif-parser/v4/ContentResource/615a8c1a", + "type": "TextualBody", + "language": [ + "de" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/plain", + "value": "Göttinger Marktplatz mit Gänseliesel Brunnen", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "id": "vault://iiif-parser/v4/ContentResource/615a8c1a", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0269_embedded_or_referenced_annotations": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1": { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "AnnotationPage" + } + ], + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "AnnotationPage" + } + ], + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1": { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json": { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1": { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0283_missing_image": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Ethiopic Ms 10" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "f. 1r" + ] + }, + "height": 2504, + "width": 1768, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/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": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 2504, + "width": 1768, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0283-missing-image/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0299_region": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Berliner Tageblatt article, 'Ein neuer Sicherungsplan?'" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 2080, + "width": 1768, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/7d911d8d", + "type": "ImageApiSelector", + "selectors": [], + "region": "1768,2423,1768,2080" + } + ], + "transform": [], + "action": [], + "id": "https://iiif.io/api/cookbook/recipe/0299-region/body/b1", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4999, + "width": 3536, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/7d911d8d": { + "id": "vault://iiif-parser/v4/Selector/7d911d8d", + "type": "ImageApiSelector", + "selectors": [], + "region": "1768,2423,1768,2080", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0299-region/body/b1", + "id": "vault://iiif-parser/v4/Selector/7d911d8d", + "type": "ImageApiSelector" + } + ] + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0306_linking_annotations_to_manifests": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage" + } + ], + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage" + } + ], + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1": { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0309_annotation_collection": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "de": [ + "Berliner Tageblatt - 1925-02-16" + ] + }, + "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/

" + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "type": "AnnotationPage" + } + ], + "label": { + "none": [ + "p. 1" + ] + }, + "height": 5000, + "width": 3602, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "type": "AnnotationPage" + } + ], + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1": { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json": { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "type": "AnnotationCollection" + } + ], + "annotations": [], + "next": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json": { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "type": "AnnotationCollection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Newspaper layout markup" + ] + }, + "total": 8, + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "type": "AnnotationCollection" + } + ] + } + }, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/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": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation/p1", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0326_annotating_image_layer": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Choice Example with layer specific annotation" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 1271, + "width": 2000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1": { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg", + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag": { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/292d7c2b", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a1c8065c", + "type": "ImageApiSelector", + "selectors": [], + "region": "810,900,260,370", + "size": "2000,1271" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "service": [] + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4745b77e", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Natural Light" + ] + }, + "format": "image/jpeg", + "height": 1271, + "width": 2000 + }, + "vault://iiif-parser/v4/ContentResource/292d7c2b": { + "id": "vault://iiif-parser/v4/ContentResource/292d7c2b", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "A group of skulls.", + "format": "text/plain", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "id": "vault://iiif-parser/v4/ContentResource/292d7c2b", + "type": "TextualBody" + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "type": "AnnotationPage" + } + ], + "label": { + "en": [ + "X-ray" + ] + }, + "format": "image/jpeg", + "height": 1271, + "width": 2000 + }, + "vault://iiif-parser/v4/ContentResource/4745b77e": { + "id": "vault://iiif-parser/v4/ContentResource/4745b77e", + "type": "Choice", + "language": [], + "items": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "id": "vault://iiif-parser/v4/ContentResource/4745b77e", + "type": "Choice" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "service": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "@explicit": true, + "service": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg", + "@explicit": true, + "profile": {}, + "service": {}, + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3" + } + ], + "profile": "level1" + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/a1c8065c": { + "id": "vault://iiif-parser/v4/Selector/a1c8065c", + "type": "ImageApiSelector", + "selectors": [], + "region": "810,900,260,370", + "size": "2000,1271" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0346_multilingual_annotation_body": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Koto, chess, calligraphy, and painting" + ], + "ja": [ + "琴棋書画図屏風" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-comment", + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json", + "@explicit": true, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas" + } + ], + "height": 31722, + "width": 70399 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p2/1": { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-comment", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/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": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-image", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-comment": { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-comment", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/23be0265", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/26950a65", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1650,1200,925,1250" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p2/1", + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-comment", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 31722, + "width": 70399, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2a51aef9": { + "id": "vault://iiif-parser/v4/ContentResource/2a51aef9", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Koto with a cover being carried", + "format": "text/plain" + }, + "vault://iiif-parser/v4/ContentResource/50190a05": { + "id": "vault://iiif-parser/v4/ContentResource/50190a05", + "type": "TextualBody", + "language": [ + "ja" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "袋に収められた琴", + "format": "text/plain" + }, + "vault://iiif-parser/v4/ContentResource/23be0265": { + "id": "vault://iiif-parser/v4/ContentResource/23be0265", + "type": "Choice", + "language": [], + "items": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2a51aef9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/50190a05", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-comment", + "id": "vault://iiif-parser/v4/ContentResource/23be0265", + "type": "Choice" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/26950a65": { + "id": "vault://iiif-parser/v4/Selector/26950a65", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1650,1200,925,1250" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0377_image_in_annotation": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1": { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "@explicit": true, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas" + } + ], + "height": 3024, + "width": 4032 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1": { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2": { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1": { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1": { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/25dfec2f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a2820674", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=138,550,1477,1710" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/25dfec2f": { + "id": "vault://iiif-parser/v4/ContentResource/25dfec2f", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Night picture of the Gänseliesel fountain in Göttingen taken during the 2019 IIIF Conference", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "id": "vault://iiif-parser/v4/ContentResource/25dfec2f", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/a2820674": { + "id": "vault://iiif-parser/v4/Selector/a2820674", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=138,550,1477,1710" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0434_choice_av": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Excerpt from Egbe Iyawo" + ] + }, + "summary": { + "en": [ + "Excerpt from a performance of Egbe Iyawo recorded in Kabba Division, Kwara State. " + ] + }, + "rights": "http://creativecommons.org/publicdomain/zero/1.0/", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1": { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 16, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "duration": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1": { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1": { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/60a2e90c", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a": { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "audio/alac", + "duration": 16, + "label": { + "en": [ + "ALAC" + ] + } + }, + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3": { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "audio/mpeg", + "duration": 16, + "label": { + "en": [ + "MP3" + ] + } + }, + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac": { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "audio/flac", + "duration": 16, + "label": { + "en": [ + "FLAC" + ] + } + }, + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg": { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "audio/ogg", + "duration": 16, + "label": { + "en": [ + "OGG Vorbis OGG" + ] + } + }, + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg": { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "audio/mpeg", + "duration": 16, + "label": { + "en": [ + "MPEG2" + ] + } + }, + "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav": { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "audio/wav", + "duration": 16, + "label": { + "en": [ + "WAV" + ] + } + }, + "vault://iiif-parser/v4/ContentResource/60a2e90c": { + "id": "vault://iiif-parser/v4/ContentResource/60a2e90c", + "type": "Choice", + "language": [], + "items": [ + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", + "type": "ContentResource" + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", + "type": "ContentResource" + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", + "type": "ContentResource" + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", + "type": "ContentResource" + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", + "type": "ContentResource" + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "id": "vault://iiif-parser/v4/ContentResource/60a2e90c", + "type": "Choice" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_cookbook_0489_multimedia_canvas": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Multimedia Canvas" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", + "@explicit": true, + "height": {}, + "width": {}, + "duration": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas" + } + ], + "height": 31722, + "width": 70399, + "duration": 180 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", + "type": "Annotation" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "type": "Annotation" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "type": "Annotation" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "type": "Annotation" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/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": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e9e9f702", + "type": "FragmentSelector", + "selectors": [], + "value": "t=11,42" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d93d59fd", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1000,500,5000,6000&t=11,42" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/221ad401", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6cd36b9d", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=30200,10200,15000,5000&t=0,1" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2e31d6fc", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/461fe03e", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=20220,5000,30000,5000&t=1,11" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4a2d56ef", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0aaf9b42", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=27000,10200,25000,5000&t=42,180" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 31722, + "width": 70399, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 360, + "width": 640, + "duration": 1801.055, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/221ad401": { + "id": "vault://iiif-parser/v4/ContentResource/221ad401", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "value": "

Press Play

", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "id": "vault://iiif-parser/v4/ContentResource/221ad401", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2e31d6fc": { + "id": "vault://iiif-parser/v4/ContentResource/2e31d6fc", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "value": "

In 10 seconds, this text will be replaced by a clock and an image. You will have 30 seconds (shown on the clock) in which to take notes on the image you see. After 30 seconds, the image will be replaced by the start screen. You will not be responsible for the part of the image covered by the clock.

", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "id": "vault://iiif-parser/v4/ContentResource/2e31d6fc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4a2d56ef": { + "id": "vault://iiif-parser/v4/ContentResource/4a2d56ef", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "value": "

Close your browser

", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "id": "vault://iiif-parser/v4/ContentResource/4a2d56ef", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/e9e9f702": { + "id": "vault://iiif-parser/v4/Selector/e9e9f702", + "type": "FragmentSelector", + "selectors": [], + "value": "t=11,42" + }, + "vault://iiif-parser/v4/Selector/d93d59fd": { + "id": "vault://iiif-parser/v4/Selector/d93d59fd", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1000,500,5000,6000&t=11,42" + }, + "vault://iiif-parser/v4/Selector/6cd36b9d": { + "id": "vault://iiif-parser/v4/Selector/6cd36b9d", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=30200,10200,15000,5000&t=0,1" + }, + "vault://iiif-parser/v4/Selector/461fe03e": { + "id": "vault://iiif-parser/v4/Selector/461fe03e", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=20220,5000,30000,5000&t=1,11" + }, + "vault://iiif-parser/v4/Selector/0aaf9b42": { + "id": "vault://iiif-parser/v4/Selector/0aaf9b42", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=27000,10200,25000,5000&t=42,180" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_accompanying_canvas": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Partial audio recording of Gustav Mahler's _Symphony No. 3_" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "First page of score for Gustav Mahler, Symphony No. 3" + ] + }, + "height": 998, + "width": 772, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Gustav Mahler, Symphony No. 3, CD 1" + ] + }, + "duration": 1985.024, + "accompanyingContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "duration": {}, + "accompanyingContainer": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation" + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4": { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 1985.024, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound" + } + ] + }, + "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 998, + "width": 772, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0": { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_bl_ranges": { + "Collection": {}, + "Manifest": { + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Format" + ] + }, + "value": { + "en": [ + "3 tape reels 9 cm 4.75 cm/sec mono" + ] + } + }, + { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Rights unassigned - staff access only" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Digitised by" + ] + }, + "value": { + "en": [ + "The British Library, 2017" + ] + } + }, + { + "label": { + "en": [ + "Digitisation funded by" + ] + }, + "value": { + "en": [ + "National Lottery Heritage Fund" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48-C733/50" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + } + ], + "provider": [ + { + "id": "https://www.bl.uk/about-us", + "type": "Agent" + } + ], + "thumbnail": [], + "behavior": [ + "auto-advance" + ], + "seeAlso": [], + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1", + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1", + "service": [], + "profile": "http://iiif.io/api/auth/1/token" + } + ], + "profile": "http://iiif.io/api/auth/1/login", + "description": "Some portions of this recording may be unavailable due to rights restrictions.", + "header": "Please Log-In", + "label": "Login to The British Library" + }, + { + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_100052320369.0x000002", + "type": "Service", + "service": [], + "profile": "http://universalviewer.io/share-extensions-profile" + } + ], + "services": [], + "homepage": [ + { + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_100052320369.0x000002", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "C733/48 C733/49 C733/50 [Recordings in Soqotri / 'Survey' recordings in English]" + ] + }, + "requiredStatement": { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Please read the full information about this object
Rights unassigned - staff access only
" + ] + } + }, + "accompanyingContainer": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "type": "Canvas" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004", + "type": "Canvas", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "@explicit": true, + "label": {}, + "duration": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1", + "type": "AnnotationPage" + } + ], + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Tape 1 Side 1" + ] + }, + "duration": 2023.56 + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004#t=0,2023.56": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004#t=0,2023.56", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000d", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004#t=0,2023.56", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005#t=0,1760.04": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005#t=0,1760.04", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000e", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005#t=0,1760.04", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0,0.36": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0,0.36", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c/nn3", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0,0.36", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0.36,484.8": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0.36,484.8", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000f", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0.36,484.8", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=487.56,526.36": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=487.56,526.36", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=487.56,526.36", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.36,526.64": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.36,526.64", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016/nn3", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.36,526.64", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.64,1026.48": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.64,1026.48", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000018", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.64,1026.48", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=1027,1392.56": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=1027,1392.56", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=1027,1392.56", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=259.8,260": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=259.8,260", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b/nn2", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=259.8,260", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=260,276.24": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=260,276.24", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=260,276.24", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=276.24,277.44": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=276.24,277.44", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c/nn3", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=276.24,277.44", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=277.44,821.36": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=277.44,821.36", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001d", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=277.44,821.36", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=821.76,992.32": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=821.76,992.32", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=821.76,992.32", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.32,992.96": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.32,992.96", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024/nn6", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.32,992.96", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.96,1404.92": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.96,1404.92", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000026", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.96,1404.92", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=0,736": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=0,736", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=0,736", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736,736.72": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736,736.72", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028/nn8", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736,736.72", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736.72,1158.84": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736.72,1158.84", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736.72,1158.84", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1158.84,1159.12": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1158.84,1159.12", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a/nn9", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1158.84,1159.12", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1159.12,1346.4": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1159.12,1346.4", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002c", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1159.12,1346.4", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1346.4,1406.32": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1346.4,1406.32", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top/nn9", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1346.4,1406.32", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b#t=0,1398.84": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b#t=0,1398.84", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002e", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b#t=0,1398.84", + "type": "Canvas" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "type": "Canvas", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "world" + ] + }, + "width": 962, + "height": 962, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1", + "type": "AnnotationPage" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1/a1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/9731e419", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a76a717a", + "type": "FragmentSelector", + "selectors": [], + "value": "t=0,2023.56" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000032.dat", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1", + "type": "Annotation" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1/a1": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1/a1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif-commons.github.io/iiif-av-component/examples/data/bl/sounds-tests/posters/world.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1/a1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/manifest.mpd": { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/manifest.mpd", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "service": [], + "profile": "http://iiif.io/api/auth/1/probe" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/dash+xml" + }, + "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/index.m3u8": { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/index.m3u8", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "service": [], + "profile": "http://iiif.io/api/auth/1/probe" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "vnd.apple.mpegURL" + }, + "vault://iiif-parser/v4/ContentResource/9731e419": { + "id": "vault://iiif-parser/v4/ContentResource/9731e419", + "type": "Choice", + "language": [], + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/manifest.mpd", + "type": "ContentResource" + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/index.m3u8", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1", + "id": "vault://iiif-parser/v4/ContentResource/9731e419", + "type": "Choice" + } + ] + }, + "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000032.dat": { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000032.dat", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1", + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000032.dat", + "type": "Dataset" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000d": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000d", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000d", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000d", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000e": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000e", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000e", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000e", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000f": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000f", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000f", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000f", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000c": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000c", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000c", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000016": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000016", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000016", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000018": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000018", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000018", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000018", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001b": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001b", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001b", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001c": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001c", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001c", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001d": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001d", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001d", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001d", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001a": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001a", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001a", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000024": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000024", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000024", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000026": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000026", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000026", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000026", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000028": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000028", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000028", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002a": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002a", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002a", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002c": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002c", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002c", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002c", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002e": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002e", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002e", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002e", + "type": "Audio" + } + ] + }, + "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000002/top": { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Audio", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Audio" + } + ] + }, + "http://access.bl.uk/item/viewer/ark:/81055/vdc_100052320369.0x000002": { + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_100052320369.0x000002", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "label": { + "en": [ + "View at the British Library" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_100052320369.0x000002", + "type": "Text" + } + ] + }, + "https://www.bl.uk/": { + "id": "https://www.bl.uk/", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "label": { + "en": [ + "The British Library" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.bl.uk/about-us", + "id": "https://www.bl.uk/", + "type": "Text" + } + ] + }, + "https://www.bl.uk/images/bl_logo_100.gif": { + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/gif", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://www.bl.uk/about-us", + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "Image" + } + ] + }, + "https://iiif-commons.github.io/iiif-av-component/examples/data/bl/sounds-tests/posters/world.jpg": { + "id": "https://iiif-commons.github.io/iiif-av-component/examples/data/bl/sounds-tests/posters/world.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 962, + "height": 962, + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1/a1", + "id": "https://iiif-commons.github.io/iiif-av-component/examples/data/bl/sounds-tests/posters/world.jpg", + "type": "Image" + } + ] + } + }, + "Range": { + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000d": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000d", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004#t=0,2023.56", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Wazir Al-Nubi, Ibrahim", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "33 min. 44 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Ibrahim Wazir al-Nubi reads a passage called 'A'raf Biladik' [knowledge of homeland], in Soqotri and Arabic. The voice that can be heard introducing the recording is likely to be Major P.G. Boxhall. Sheikh Ibrahim Wazir Al-Nubi was the minister/scribe of the Sultan at the time the recording was made. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000d", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[A'raf Biladik, Soqotri]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000d", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000e": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000e", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005#t=0,1760.04", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Mehri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "29 min. 20 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "gdq" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Contains recitations of 'A'raf Biladik' ['knowledge of homeland' - unidentified] in Mehri. The voice introducing the recording is likely to be Major P.G. Boxhall. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000e", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[A'raf Biladik, Mehri]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000e", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c/nn3": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c/nn3", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0,0.36", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c/nn3", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000f": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000f", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0.36,484.8", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Soqotri, page 4]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Bin Ali, Thani", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Aden Governorate, Soqotra? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "8 min. 05 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Contains a recitation of 'page 4' of 'A'raf Biladik' ['knowledge of homeland' - unidentified] in Soqotri by Thani Bin Ali, introduced by a speaker likely to be Major P.G. Boxhall. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Thani Bin Ali is a medical assistant on Soqotra. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors and content transcribed by ear Recording date based on the date written on the box for C733/48 Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000f", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[A'raf Biladik, Soqotri, page 4]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000f", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000d", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000e", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c/nn3", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000f", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Wazir Al-Nubi, Ibrahim", + "Botting, Douglas", + "Bin Ali, Thani", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate Aden Governorate, Soqotra (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen Oman (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "1 hr. 11 min. 09 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt gdq ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri Mehri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S1-C733/49 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Individual items described separately Ibrahim Wazir al-Nubi reads a passage called 'A'raf Biladik' [knowledge of homeland], in Soqotri and Arabic, and Thani Bin Ali reads the same extract in Mehri. The voice that can be heard introducing is likely to be Major P.G. Boxhall. Sheikh Ibrahim Wazir Al-Nubi was the minister/scribe of the Sultan at the time the recording was made. Thani Bin Ali was a medical assistant on Soqotra. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000c", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[A'raf Biladik]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=487.56,526.36", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Translation of Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Hadrami Bedouin League member", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "0 min. 39 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Title transcribed by ear, but does not seem to match the content, which is the two men having a brief discussion in Arabic Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000016", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Translation of Arabic to Soqotri]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016/nn3": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016/nn3", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.36,526.64", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016/nn3", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000018": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000018", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.64,1026.48", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Medical interview in Arabic and Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Corporal Goldberg", + "unidentified", + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "8 min. 20 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Names and content transcribed by ear Corporal Goldberg interviews a patient, a Bedouin child who is very sick. Johstone speaks in Arabic to Suleiman, one of the Sultan's bodyguards, who translates into Soqotri for the benefit of the Bedouin man and his child. There is a description of fire treatment as medicine to cure the boy. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000018", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Medical interview in Arabic and Soqotri]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000018", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=1027,1392.56", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Single-word translation of Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "10 min. 25 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C4-S2 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Contains Soqotri translations of the Arabic words for 'tall', 'short', 'sea', 'eat', 'house', 'homeland', 'town', 'sun', 'walk', 'mountain', 'far', 'near', 'bread', 'daughter', 'head', 'chest', 'eye', 'eyebrow', 'tongue', 'ghee', 'milk', 'chicken', 'dog', 'camel', 'fire', 'donkey', as well as numbers, and some unidentified words. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors and content transcribed by ear from English and Arabic Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001b", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Single-word translation of Arabic to Soqotri]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b/nn2": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b/nn2", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=259.8,260", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b/nn2", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=260,276.24", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Pronunciation of lateral s]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "0 min. 17 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Pronunciation of lateral s, or 'ɮ' being pronounced by Suleiman [voice identified by ear] Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001c", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Pronunciation of lateral s]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c/nn3": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c/nn3", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=276.24,277.44", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c/nn3", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001d": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001d", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=277.44,821.36", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Medical phrases]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "9 min. 04 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Medical phrases translated from Arabic to Soqotri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on language spoken Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001d", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Medical phrases]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001d", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b/nn2", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c/nn3", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001d", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Arabic to Soqotri translations]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "19 min. 47 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C4-S2 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Individual items described separately Suleiman is described as 'one of the Sultan's bodyguards' Various recordings of Arabic - Soqotri translations made with Suleiman Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear from English and Arabic Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001a", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Arabic to Soqotri translations]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=821.76,992.32", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "Arabic/Soqotri [Mu'allaqat of the Imru Al-Qays]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "2 min. 51 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C4" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The first few lines of the Mu'allaqat of the Imru Al-Qays in Arabic and Soqotri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Same speaker as C733/49 C5 [identified by ear] Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000024", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Arabic/Soqotri [Mu'allaqat of the Imru Al-Qays]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024/nn6": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024/nn6", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.32,992.96", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024/nn6", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000026": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000026", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.96,1404.92", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "Arabic/Soqotri [Page 121]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "6 min. 52 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C5" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "'Phrases from page 121 translated from Arabic into Soqotri' [transcribed by ear] Same speaker as C733/49 C4 [identified by ear] Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000026", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Arabic/Soqotri [Page 121]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000026", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=0,736", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Phrases from Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1965-12? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Abd Al-Kuri, Soqotra Archipelago, Aden Governorate? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "12 min. 16 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "'Phrases from Arabic to Soqotri' (transcribed by ear) Recording date based on note on box for C733/48 Recording location based on languages spoken, and on note on box for C733/15 Information on contributors is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000028", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Phrases from Arabic to Soqotri]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028/nn8": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028/nn8", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736,736.72", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028/nn8", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736.72,1158.84", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Soqotri songs]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "7 min. 02 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on content and speakers was provided by Dr. Miranda Morris Soqotri songs and poetry with Arabic translation, and some talk. The songs/poem is followed by someone speaking in Soqotri. After he sings, he demands to be paid 20 shillings as he is a good man. He says ‘tell me! How many camels do you want?’ and says he has been with other foreigners, travelled, with a compass, been to many places, ‘I’m a good man, employ me!’. Finally, there is a brief fragment of a 'translation of an Arabic text into Mahri' [identified by ear]. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002a", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Soqotri songs]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a/nn9": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a/nn9", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1158.84,1159.12", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a/nn9", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002c": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002c", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1159.12,1346.4", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Arabic/Mahri translation]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "3 min. 07 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "gdq ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Mehri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "A translation of an Arabic text into Mehri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002c", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Arabic/Mahri translation]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002c", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top/nn9": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top/nn9", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1346.4,1406.32", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "no-nav" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top/nn9", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002e": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002e", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b#t=0,1398.84", + "type": "Canvas" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "['Survey' recordings]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "not before 1966-01-16 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "24 min. 18 sec." + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S2 C1; S1 C4" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "An expedition member reads his field diary, including geological information and anecdotes of the group's travels Recording date based on the dates announced in the recording" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002e", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "['Survey' recordings]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002e", + "type": "Range" + } + ] + }, + "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Range", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016/nn3", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000018", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024/nn6", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000026", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028/nn8", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a/nn9", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002c", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top/nn9", + "type": "Range" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002e", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Format" + ] + }, + "value": { + "en": [ + "3 tape reels 9 cm 4.75 cm/sec mono" + ] + } + }, + { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Rights unassigned - staff access only" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Digitised by" + ] + }, + "value": { + "en": [ + "The British Library, 2017" + ] + } + }, + { + "label": { + "en": [ + "Digitisation funded by" + ] + }, + "value": { + "en": [ + "National Lottery Heritage Fund" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48-C733/50" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000002/top", + "type": "ContentResource" + } + ], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Range" + } + ] + } + }, + "Service": { + "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000033/probe.json": { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "service": [], + "profile": "http://iiif.io/api/auth/1/probe", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/manifest.mpd", + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000033/probe.json": { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "service": [], + "profile": "http://iiif.io/api/auth/1/probe", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/index.m3u8", + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://api.bl.uk/auth/iiif/token": { + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1", + "service": [], + "profile": "http://iiif.io/api/auth/1/token", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/auth/iiif/login", + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1" + } + ] + }, + "https://api.bl.uk/auth/iiif/login": { + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1", + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1", + "service": [], + "profile": "http://iiif.io/api/auth/1/token" + } + ], + "profile": "http://iiif.io/api/auth/1/login", + "description": "Some portions of this recording may be unavailable due to rights restrictions.", + "header": "Please Log-In", + "label": "Login to The British Library", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1" + } + ] + }, + "http://access.bl.uk/item/share/ark:/81055/vdc_100052320369.0x000002": { + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_100052320369.0x000002", + "type": "Service", + "service": [], + "profile": "http://universalviewer.io/share-extensions-profile", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_100052320369.0x000002", + "type": "Service" + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/a76a717a": { + "id": "vault://iiif-parser/v4/Selector/a76a717a", + "type": "FragmentSelector", + "selectors": [], + "value": "t=0,2023.56" + } + }, + "Agent": { + "https://www.bl.uk/about-us": { + "id": "https://www.bl.uk/about-us", + "type": "Agent", + "logo": [ + { + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "ContentResource" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://www.bl.uk/", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "The British Library" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "id": "https://www.bl.uk/about-us", + "type": "Agent" + } + ] + } + }, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_bodleian": { + "Collection": { + "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Portraits" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits", + "type": "Collection" + } + ] + }, + "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Bodleian Libraries" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian", + "type": "Collection" + } + ] + }, + "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits-prints-drawings-objects": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits-prints-drawings-objects", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Portraits, Prints and Drawings" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits-prints-drawings-objects", + "type": "Collection" + } + ] + }, + "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian-portraits": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian-portraits", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "The Bodleian Libraries’ Portrait Collection: A Samuel H. Kress Foundation Digitization Project" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian-portraits", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/range/33c2e37e-957a-4820-83e1-611c987021c9/LOG_0000", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Title" + ] + }, + "value": { + "en": [ + "Portrait of a woman, called Mary, Queen of Scots (1542–1587)" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "Bodleian Library LP 44" + ] + } + }, + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Artist unknown" + ] + } + }, + { + "label": { + "en": [ + "Sitter" + ] + }, + "value": { + "en": [ + "Mary?, Queen of Scots (1542-1587)" + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "No linguistic content" + ] + } + }, + { + "label": { + "en": [ + "Date Statement" + ] + }, + "value": { + "en": [ + "1838" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "A copy of the portrait overpainted on LP 46, before it was removed in 1838. Not an authentic portrait, though at one time very popular, it is perhaps an adaptation of a miniature by Nicholas Hilliard (1537‒1619)." + ] + } + }, + { + "label": { + "en": [ + "Materials" + ] + }, + "value": { + "en": [ + "oil on canvas" + ] + } + }, + { + "label": { + "en": [ + "Dimensions" + ] + }, + "value": { + "en": [ + "550 × 454 mm." + ] + } + }, + { + "label": { + "en": [ + "Provenance" + ] + }, + "value": { + "en": [ + "Probably commissioned by the Curators of the Bodleian Library, before 1838." + ] + } + }, + { + "label": { + "en": [ + "Accession Date" + ] + }, + "value": { + "en": [ + "by 1838" + ] + } + }, + { + "label": { + "en": [ + "Accession Source" + ] + }, + "value": { + "en": [ + "Bodleian Curators" + ] + } + }, + { + "label": { + "en": [ + "Accession Type" + ] + }, + "value": { + "en": [ + "commission" + ] + } + }, + { + "label": { + "en": [ + "Record Origin" + ] + }, + "value": { + "en": [ + "Description by Dana Josephson (2019)." + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "Portraits" + ] + } + }, + { + "label": { + "en": [ + "Additional Information Sources" + ] + }, + "value": { + "en": [ + "Poole, Rachael. Catalogue of portraits in the possession of the University, colleges, city, and county of Oxford (Oxford, 1912). Garlick, Kenneth, and Rachael Poole. Catalogue of portraits in the Bodleian Library, Oxford (Oxford, 2004)." + ] + } + }, + { + "label": { + "en": [ + "Digitization Project" + ] + }, + "value": { + "en": [ + "The Bodleian Libraries’ Portrait Collection: A Samuel H. Kress Foundation Digitization Project" + ] + } + }, + { + "label": { + "en": [ + "Record Created" + ] + }, + "value": { + "en": [ + "2019-06-17T15:37:01Z" + ] + } + }, + { + "label": { + "en": [ + "Holding Institution" + ] + }, + "value": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + } + }, + { + "label": { + "en": [ + "Access Rights" + ] + }, + "value": { + "en": [ + "Photo: © Bodleian Libraries, University of Oxford" + ] + } + }, + { + "label": { + "en": [ + "Digitization Sponsor" + ] + }, + "value": { + "en": [ + "The Samuel H. Kress Foundation" + ] + } + } + ], + "provider": [ + { + "id": "https://viaf.org/viaf/173632201/", + "type": "Agent" + } + ], + "thumbnail": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/256,/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [ + "paged" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://digital.bodleian.ox.ac.uk/objects/33c2e37e-957a-4820-83e1-611c987021c9/", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits", + "type": "Collection" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian", + "type": "Collection" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits-prints-drawings-objects", + "type": "Collection" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian-portraits", + "type": "Collection" + } + ], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Bodleian Library LP 44" + ] + }, + "summary": { + "en": [ + "Portrait of a woman, called Mary, Queen of Scots (1542–1587)" + ] + }, + "navDate": "1838-01-01T00:00:00Z", + "logo": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71/full/256,/0/default.jpg", + "type": "ContentResource" + } + ], + "requiredStatement": { + "label": { + "en": [ + "Terms of Use" + ] + }, + "value": { + "en": [ + "Terms of use: CC-BY-NC 4.0. For more information, please see https://digital.bodleian.ox.ac.uk/terms/" + ] + } + }, + "viewingDirection": "left-to-right", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotationpage/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "front" + ] + }, + "width": 1920, + "height": 2326, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotationpage/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "width": {}, + "height": {} + }, + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/range/33c2e37e-957a-4820-83e1-611c987021c9/LOG_0000", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [], + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.bodleian.ox.ac.uk/iiif/annotationpage/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotationpage/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotation/012b1e0f-8c9e-48e7-83d6-5e51a70253b4_image.json", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotationpage/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.bodleian.ox.ac.uk/iiif/annotation/012b1e0f-8c9e-48e7-83d6-5e51a70253b4_image.json": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotation/012b1e0f-8c9e-48e7-83d6-5e51a70253b4_image.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/annotationpage/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotation/012b1e0f-8c9e-48e7-83d6-5e51a70253b4_image.json", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/max/0/default.jpg": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 1920, + "height": 2326, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/annotation/012b1e0f-8c9e-48e7-83d6-5e51a70253b4_image.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/256,/0/default.jpg": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/256,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/256,/0/default.jpg", + "type": "Image" + } + ] + }, + "https://digital.bodleian.ox.ac.uk/objects/33c2e37e-957a-4820-83e1-611c987021c9/": { + "id": "https://digital.bodleian.ox.ac.uk/objects/33c2e37e-957a-4820-83e1-611c987021c9/", + "type": "Text", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "View on Digital Bodleian" + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://digital.bodleian.ox.ac.uk/objects/33c2e37e-957a-4820-83e1-611c987021c9/", + "type": "Text" + } + ] + }, + "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71/full/256,/0/default.jpg": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71/full/256,/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71/full/256,/0/default.jpg", + "type": "Image" + } + ] + }, + "https://www.bodleian.ox.ac.uk/": { + "id": "https://www.bodleian.ox.ac.uk/", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://viaf.org/viaf/173632201/", + "id": "https://www.bodleian.ox.ac.uk/", + "type": "Text" + } + ] + } + }, + "Range": { + "https://iiif.bodleian.ox.ac.uk/iiif/range/33c2e37e-957a-4820-83e1-611c987021c9/LOG_0000": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/range/33c2e37e-957a-4820-83e1-611c987021c9/LOG_0000", + "type": "Range", + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "LP 44" + ] + }, + "start": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/range/33c2e37e-957a-4820-83e1-611c987021c9/LOG_0000", + "type": "Range" + } + ] + } + }, + "Service": { + "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/max/0/default.jpg", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2", + "@explicit": true, + "service": {}, + "profile": {} + }, + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/256,/0/default.jpg", + "@explicit": true, + "profile": {}, + "service": [], + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2" + } + ] + }, + "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71/full/256,/0/default.jpg", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71", + "type": "ImageService2", + "@explicit": true, + "service": {}, + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": { + "https://viaf.org/viaf/173632201/": { + "id": "https://viaf.org/viaf/173632201/", + "type": "Agent", + "logo": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://www.bodleian.ox.ac.uk/", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "id": "https://viaf.org/viaf/173632201/", + "type": "Agent" + } + ] + } + }, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_css": { + "Collection": {}, + "Manifest": { + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/manifest.json": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Koto, chess, calligraphy, and painting" + ], + "ja": [ + "琴棋書画図屏風" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/manifest.json", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-1", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-2", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/manifest.json", + "@explicit": true, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas" + } + ], + "height": 3966, + "width": 8800 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p1/1": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-1", + "type": "Annotation" + }, + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/annotation/p0001-image": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/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": "ContentResource" + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p1/1", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/annotation/p0001-image", + "type": "Annotation" + } + ] + }, + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-1": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/sr1", + "styleClass": "author1", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9159bc04", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=700,1250,1850,1150" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas" + }, + "styleClass": "author1" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "stylesheet": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/style.css", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-1", + "type": "Annotation" + } + ] + }, + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-2": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/sr2", + "styleClass": "author2", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text2", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ee384efd", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=170,160,2200,1000" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas" + }, + "styleClass": "author2" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "stylesheet": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/style.css", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3966, + "width": 8800, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text1": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text1", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "value": "

Three of the four pursuits of refined and noble men named in the screen's title are shown on this side of the screen: go, the koto, and tools for calligraphy. Each is in a container or wrapper. (GR)

", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-1", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text1", + "type": "TextualBody" + } + ] + }, + "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text2": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text2", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "value": "

The detail in the natural beauty of the setting could be seen as a contrast (or balance) to the manufactured pursuits of noble men. (TK)

", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-2", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text2", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/9159bc04": { + "id": "vault://iiif-parser/v4/Selector/9159bc04", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=700,1250,1850,1150" + }, + "vault://iiif-parser/v4/Selector/ee384efd": { + "id": "vault://iiif-parser/v4/Selector/ee384efd", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=170,160,2200,1000" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_exhibition_1": { + "Collection": {}, + "Manifest": { + "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest", + "type": "Manifest", + "items": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://heritage.tudelft.nl/nl/exhibitions/inventing-creativity", + "type": "ContentResource" + }, + { + "id": "https://heritage.tudelft.nl/en/exhibitions/inventing-creativity", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Inventing Creativity" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas", + "items": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "w-6", + "h-6" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": [], + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": [], + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": [], + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": [], + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest", + "@explicit": true, + "label": {}, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf", + "type": "AnnotationPage" + } + ], + "behavior": [ + "w-6", + "h-6" + ], + "annotations": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "type": "AnnotationPage" + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Constructing the Creative Personality" + ] + }, + "height": 1000, + "width": 1000 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf", + "type": "AnnotationPage", + "items": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "type": "Annotation" + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "type": "Annotation" + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "type": "Annotation" + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf", + "type": "AnnotationPage" + } + ] + }, + "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "type": "AnnotationPage", + "items": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/35", + "type": "Annotation" + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/36", + "type": "Annotation" + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/37", + "type": "Annotation" + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/38", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9985da83", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4164,352,3702,5420" + } + ], + "transform": [], + "action": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c/specificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c5a7d68d", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=124,624,205,298" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "summary": { + "en": [ + "Researchers found that people they deemed creative preferred messy and asymmetrical figures, while randomly selected university students tended to prefer simple, linear, and sym­metrical figures. The psychologists concluded creative people had a higher “tolerance for ambiguity,” though the result might also have been because the creative group, which included successful architects and writers, was more likely to have a learned taste for modern art." + ] + }, + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "type": "Annotation", + "@explicit": true, + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9985da83", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4164,352,3702,5420" + } + ], + "transform": [], + "action": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c/specificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c5a7d68d", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=124,624,205,298" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "summary": {}, + "label": {} + }, + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/35", + "@explicit": true, + "metadata": {}, + "provider": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "motivation": [], + "body": [], + "target": [], + "thumbnail": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "type": "Annotation" + } + ] + }, + "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/7a4f3ee8", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4415,422,3758,5440" + } + ], + "transform": [], + "action": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254/specificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ff7d5983", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=365,622,205,296" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + }, + "summary": { + "en": [ + "Traditionally, psychologists used ink blot tests to peer into peoples’ subconscious. Creativity researchers were interested not in the underlying meaning of what their subjects saw in the random shapes but rather their originality, which researchers quantified to calculate a measure of creative ability." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "type": "Annotation", + "@explicit": true, + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/7a4f3ee8", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4415,422,3758,5440" + } + ], + "transform": [], + "action": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254/specificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ff7d5983", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=365,622,205,296" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "summary": {} + }, + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/36", + "@explicit": true, + "metadata": {}, + "provider": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "motivation": [], + "body": [], + "target": [], + "thumbnail": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "type": "Annotation" + } + ] + }, + "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/aeab2c08", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4479,548,3718,5404" + } + ], + "transform": [], + "action": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee/specificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c03f8826", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=603,622,203,293" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + }, + "summary": { + "en": [ + "Drawing completion tests were commonly used in creativity studies. Although creativity and art were closely associated, these tests were scored not on the test-taker’s artistic ability, but rather on the originality and elaborateness of their responses." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "type": "Annotation", + "@explicit": true, + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/aeab2c08", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4479,548,3718,5404" + } + ], + "transform": [], + "action": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee/specificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c03f8826", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=603,622,203,293" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "summary": {} + }, + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/37", + "@explicit": true, + "metadata": {}, + "provider": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "motivation": [], + "body": [], + "target": [], + "thumbnail": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "type": "Annotation" + } + ] + }, + "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d318ada3", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=77,21,787,577" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "summary": { + "en": [ + "Researchers at Berkeley’s IPAR asked subjects to create mosaics with colored tiles. The examples on the left were produced by the “non-creative” control group of randomly selected students, while those on the right were produced by prominent figures rated highly creative by their peers. The researchers concluded that creative people naturally prefer asymmetrical figures." + ] + }, + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "type": "Annotation", + "@explicit": true, + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d318ada3", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=77,21,787,577" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "type": "Canvas" + } + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "summary": {}, + "label": {} + }, + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/38", + "@explicit": true, + "metadata": {}, + "provider": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "motivation": [], + "body": [], + "target": [], + "thumbnail": [], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "type": "Annotation" + } + ] + }, + "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/35": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/35", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/35", + "type": "Annotation" + } + ] + }, + "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/36": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/36", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/36", + "type": "Annotation" + } + ] + }, + "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/37": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/37", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/37", + "type": "Annotation" + } + ] + }, + "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/38": { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/38", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/38", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg": { + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 8174, + "height": 6036, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 756 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 200, + "height": 148 + }, + { + "width": 100, + "height": 74 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 6036, + "width": 8174, + "label": { + "en": [ + "-" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg": { + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 756, + "sizes": [ + { + "width": 100, + "height": 74 + }, + { + "width": 200, + "height": 148 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 1024, + "height": 756 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg": { + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 8713, + "height": 6237, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 733 + }, + { + "width": 400, + "height": 286 + }, + { + "width": 200, + "height": 143 + }, + { + "width": 100, + "height": 72 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 6237, + "width": 8713, + "label": { + "en": [ + "-" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg": { + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 733, + "sizes": [ + { + "width": 100, + "height": 72 + }, + { + "width": 200, + "height": 143 + }, + { + "width": 400, + "height": 286 + }, + { + "width": 1024, + "height": 733 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg": { + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 8840, + "height": 6452, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 747 + }, + { + "width": 400, + "height": 292 + }, + { + "width": 200, + "height": 146 + }, + { + "width": 100, + "height": 73 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 6452, + "width": 8840, + "label": { + "en": [ + "-" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg": { + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 747, + "sizes": [ + { + "width": 100, + "height": 73 + }, + { + "width": 200, + "height": 146 + }, + { + "width": 400, + "height": 292 + }, + { + "width": 1024, + "height": 747 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg": { + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 8722, + "height": 6423, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 754 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 200, + "height": 147 + }, + { + "width": 100, + "height": 74 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 6423, + "width": 8722, + "label": { + "en": [ + "-" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg": { + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 754, + "sizes": [ + { + "width": 100, + "height": 74 + }, + { + "width": 200, + "height": 147 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 1024, + "height": 754 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "https://heritage.tudelft.nl/nl/exhibitions/inventing-creativity": { + "id": "https://heritage.tudelft.nl/nl/exhibitions/inventing-creativity", + "type": "Text", + "language": [ + "nl" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest", + "id": "https://heritage.tudelft.nl/nl/exhibitions/inventing-creativity", + "type": "Text" + } + ] + }, + "https://heritage.tudelft.nl/en/exhibitions/inventing-creativity": { + "id": "https://heritage.tudelft.nl/en/exhibitions/inventing-creativity", + "type": "Text", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest", + "id": "https://heritage.tudelft.nl/en/exhibitions/inventing-creativity", + "type": "Text" + } + ] + } + }, + "Range": {}, + "Service": { + "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270": { + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 8174, + "height": 6036, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 756 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 200, + "height": 148 + }, + { + "width": 100, + "height": 74 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "width": {}, + "height": {}, + "tiles": {}, + "sizes": {}, + "profile": {} + } + ] + }, + "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270": { + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 756, + "sizes": [ + { + "width": 100, + "height": 74 + }, + { + "width": 200, + "height": 148 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 1024, + "height": 756 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "profile": {}, + "width": {}, + "height": {}, + "sizes": {} + } + ] + }, + "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f": { + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 8713, + "height": 6237, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 733 + }, + { + "width": 400, + "height": 286 + }, + { + "width": 200, + "height": 143 + }, + { + "width": 100, + "height": 72 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "width": {}, + "height": {}, + "tiles": {}, + "sizes": {}, + "profile": {} + } + ] + }, + "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f": { + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 733, + "sizes": [ + { + "width": 100, + "height": 72 + }, + { + "width": 200, + "height": 143 + }, + { + "width": 400, + "height": 286 + }, + { + "width": 1024, + "height": 733 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "profile": {}, + "width": {}, + "height": {}, + "sizes": {} + } + ] + }, + "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04": { + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 8840, + "height": 6452, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 747 + }, + { + "width": 400, + "height": 292 + }, + { + "width": 200, + "height": 146 + }, + { + "width": 100, + "height": 73 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "width": {}, + "height": {}, + "tiles": {}, + "sizes": {}, + "profile": {} + } + ] + }, + "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04": { + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 747, + "sizes": [ + { + "width": 100, + "height": 73 + }, + { + "width": 200, + "height": 146 + }, + { + "width": 400, + "height": 292 + }, + { + "width": 1024, + "height": 747 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "profile": {}, + "width": {}, + "height": {}, + "sizes": {} + } + ] + }, + "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a": { + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "width": 8722, + "height": 6423, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 754 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 200, + "height": 147 + }, + { + "width": 100, + "height": 74 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "width": {}, + "height": {}, + "tiles": {}, + "sizes": {}, + "profile": {} + } + ] + }, + "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a": { + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "type": "ImageService2", + "service": [], + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 754, + "sizes": [ + { + "width": 100, + "height": 74 + }, + { + "width": 200, + "height": 147 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 1024, + "height": 754 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "type": "ImageService2", + "@explicit": true, + "service": [], + "protocol": {}, + "profile": {}, + "width": {}, + "height": {}, + "sizes": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/9985da83": { + "id": "vault://iiif-parser/v4/Selector/9985da83", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4164,352,3702,5420", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c/specificResource", + "id": "vault://iiif-parser/v4/Selector/9985da83", + "type": "iiif:ImageApiSelector" + } + ] + }, + "vault://iiif-parser/v4/Selector/c5a7d68d": { + "id": "vault://iiif-parser/v4/Selector/c5a7d68d", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=124,624,205,298" + }, + "vault://iiif-parser/v4/Selector/7a4f3ee8": { + "id": "vault://iiif-parser/v4/Selector/7a4f3ee8", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4415,422,3758,5440", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254/specificResource", + "id": "vault://iiif-parser/v4/Selector/7a4f3ee8", + "type": "iiif:ImageApiSelector" + } + ] + }, + "vault://iiif-parser/v4/Selector/ff7d5983": { + "id": "vault://iiif-parser/v4/Selector/ff7d5983", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=365,622,205,296" + }, + "vault://iiif-parser/v4/Selector/aeab2c08": { + "id": "vault://iiif-parser/v4/Selector/aeab2c08", + "type": "iiif:ImageApiSelector", + "selectors": [], + "region": "4479,548,3718,5404", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee/specificResource", + "id": "vault://iiif-parser/v4/Selector/aeab2c08", + "type": "iiif:ImageApiSelector" + } + ] + }, + "vault://iiif-parser/v4/Selector/c03f8826": { + "id": "vault://iiif-parser/v4/Selector/c03f8826", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=603,622,203,293" + }, + "vault://iiif-parser/v4/Selector/d318ada3": { + "id": "vault://iiif-parser/v4/Selector/d318ada3", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=77,21,787,577" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_ghent_choices": { + "Collection": {}, + "Manifest": { + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "O.0219" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/layers", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219", + "@explicit": true, + "label": {}, + "height": {}, + "width": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/layers", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + ], + "label": { + "en": [ + "O.0219" + ] + }, + "height": 6270, + "width": 2551 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/layers": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/layers", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/layers", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/layers", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "type": "Annotation" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/layers": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/layers", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/34162c34", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/layers", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/layers", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4502abbb", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/96ca7e30", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4372769c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8548966b", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d66affb5", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2fba1ca7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/84c457f7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f7b7d203", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4bee5149", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e52040b4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/06d6e61e", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c599f353", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/053295ea", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e07207f7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/54cedfc1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/67276f0c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1a4bfab4", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f098bf42", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/16b865b5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d3b0dfc1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/293e510d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5e1572f6", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/775c59da", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/ffd19fa1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/75feb692", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a81273a6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e1fa74eb", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ecec2311", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/2fa4c8e7", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/44d8deb4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/57d3f773", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/24a83287", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a8a02fc9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c2562ede", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c4fd9c41", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4be70177", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/470e8450", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/840b8164", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aaee2a2b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/65e15553", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/265bbf3d", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/df24a75c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e9c80531", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/073fab26", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a17383cc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/31251272", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/dfe1ced8", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/5ede42e9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5591d01e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e580d049", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1cb5d960", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cc7f3c9d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/35d2d3f5", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/3cab384c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/376710ff", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/68eb1168", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/42faa380", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/97c2f9bc", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/15a1f6ca", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/cff09b62", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7d539a27", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bec684d0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b468addf", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/06ca4784", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/2fba2d0d", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/294e85a3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/23f5afe6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/943c1311", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ca4f68bf", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d1b8b4c5", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/661a3332", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/546f89f0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cc6b43a5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/27d55f52", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8ff2a51f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1b4d0106", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/8504731b", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/97029304", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/730d5964", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a8becc93", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ba60dcff", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3ac78f47", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/afb33e7b", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/752fcd0d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/30f8a923", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/996d0c15", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7e03cffe", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ba6f5680", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/5a3631ed", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/ba056baf", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d79abee2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c3f77dd4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b30caedc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/855dc3c1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ba7e9784", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a36032a6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/801052a1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/adefc597", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2410443e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cef21002", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/68b5a7fc", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/6d517e7b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/26b26860", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2d065856", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/34107518", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ee6c9e43", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/3636cbf5", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/728239cb", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f121322f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c0dfb319", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fd23e676", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7a97df8c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0878fe80", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/5c41d32a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/97c347ee", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/eb6a24d8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/322cc554", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/45864ccd", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/29d525bd", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/65e1d039", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/24b4ab04", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0f0fd575", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ed6fef99", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5f6936a7", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/8235531e", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/082d5219", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/dfbcc085", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/33b9c6f4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f2cc355a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7929e826", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/3116ceb8", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/cc2a4569", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/58a1f506", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fb23a377", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f2cb06be", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8f164fa5", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4ca9d350", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/8a7cd912", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/13aa0a87", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/040cadf6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a59dc39e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8d161a24", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/51712143", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c4a7e953", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d859ba00", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c2b4e471", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/734de9fa", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/130e45a3", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/79a84595", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/cff64626", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ac2ea853", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ddaab402", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1dd6e471", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f4f56d5d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9777fe41", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/6ba45832", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0c470402", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aec8b273", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2073c336", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/42bb5ea1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/534de380", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/9c5059be", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c74f1983", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/19fbfc73", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b2b0151e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/40bb2920", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e2b9ed0f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/33943033", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9882430c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c80104a9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/399deac3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1ab01554", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/09d8e3ad", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4d5985e2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/538a588d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ee10b77d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/94e9d635", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ecf7802e", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/97406f8b", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/dc469776", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4e6367e5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1b82cfd5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f7fc4c3c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/74d639c6", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0d77f4fc", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/0f9bdd79", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ab007da4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/50946294", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d4ea8f9e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f5bfa707", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/7081b5b4", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f09014e8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3a7735e7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a3fc3ad7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f2f7007c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ec5ccec4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/fabc3298", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2d168a87", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/97144ba6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8481ac96", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cfc523d2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c1d25d05", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/75bdb340", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/d8bd9f34", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/020876e1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cf27ded1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/25a508b4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/287b48c2", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c5b64ed7", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/fafa65af", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5ea58ca0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/04397190", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5e84b9cd", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a964b603", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/48041079", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/b4f5df5c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ee1c44e3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/490d9910", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f1226bbe", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a001ddc0", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/8089c84f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/dc4e935b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b538ab3c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/13fc0651", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ae0f971c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/75776c01", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cc858fac", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/cac90128", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c230ffed", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3d236c1e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1033aff2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e8a3d1ce", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/10719c53", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/3126802f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1ece15ac", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5c9dfa5f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f2305554", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/698d3f0f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/105a4c12", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/cb128dd5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/65d03cc2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/102ec231", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/78bd60db", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0388a3e1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9397b99a", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/8493db0e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2bc19243", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c904ca31", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cd642cde", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/28329560", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/efd8db59", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/ffe95eba", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fcc16240", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/93add232", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0104a73e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d031e163", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9217e410", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c46d4224", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c2b2b7c1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/79ed20b3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c6335d1e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d91aebe2", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ae13886d", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c4966c3e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/73560cc6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d48a64b4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6041da7e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/110e73e5", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d747abc6", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/13d7fe68", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/39476247", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bb4c3eba", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bfde5cda", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/35b86564", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/eed03075", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f3059103", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0a473244", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f0a336b9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f37ed73a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ddb7b167", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/5af95b35", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/5e25abb2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d03887c5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/eea30138", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b8ad8d1a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e6a0bbe6", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b6b36635", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/3bd01e20", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d99dd4ca", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c037c0b6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1f87ea57", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/77563be9", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f7ea9aeb", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/0b9d48e4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9f8f2a4b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a6770f37", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c28e0735", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9c002d68", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/21048b62", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f86e132a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/506339a3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b09b179f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/37fc763c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d9d9e700", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6610d713", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/cc7e5418", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f7054f62", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2fb1aa5e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/67fdbf1a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a4c85441", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/40843e6d", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4bf8a564", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9f7ae321", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0a913f25", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/adb0e8fc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ee5ca082", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1049c1ac", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a5568fa5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/461cf8e0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b13354e4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fcb0f8de", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0dd72ec3", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/57f25574", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/24c270f2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5de909a7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/adf3c5a3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2a76a638", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e75fb704", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/337830e3", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/8c1abc06", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/048b1f66", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5495db62", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/75838f1e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b24e2445", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e63f2c53", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/da02098a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ad00b325", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9ecac300", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a02b18f8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fbe27086", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d63f2cb5", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2ebf004c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/53a2c8e4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/69b93041", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ef2b28da", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1b5cfec7", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/95f78de4", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/af211670", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c430d1ab", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/34a0e48e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c42ede34", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4da77f08", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/bc1c4239", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/e9793283", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6ad2e76a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6114d72c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/442991b7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1895ec49", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f0c56640", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/8ed51576", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f7c44a80", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d5075ec6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ad509bfe", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3278d623", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6ca97227", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/34116a96", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b2cc6001", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9af8b447", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1fbc95de", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4c3987a2", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6fce2d86", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/d7070709", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2bb19482", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4c8df3c4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c5daa63a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6225ef21", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a4bd1c98", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/95a7b950", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e6b9aa03", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/127f4945", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/78ad631a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6025b9a0", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1ebf9759", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/e172ad58", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/054a1a84", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c7818ec2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a03e4a7e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3ffea627", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/92c16eb2", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a76402d9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c0523005", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8d72e443", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/12aa445e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/59bf57a6", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/2b694895", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/0db871d1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/39376486", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3f0823c0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f38362b2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6fabbf25", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/bc0aab92", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/bbf6aa23", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f43f7a07", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aa2260f3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/85bfb49a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f7bfe4ce", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/93526ebe", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/da0ed4e2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6b91e288", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/640bec7c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/398303f6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b3e46741", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/3fd5ab2d", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/fcadd792", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2699f809", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3f61fafd", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/abeefdd6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/edf311c0", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/bc29424c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/576cd085", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/21730761", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6cd41355", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0e831b19", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ab1c4068", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/34ad7c19", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/6baaa8ed", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7e101d20", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a1e5a614", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6e6ed5f9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/047a2aa9", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1528ae90", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/464103cd", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0d86d563", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e6b9cd94", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d1b7db3e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7b6f276a", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b4f39aa3", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/612b5f0c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6a23eb22", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b1a83ad5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8ea5069c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b20241b5", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/43375741", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/b8801095", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2ef8d765", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0d214792", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a36bd87a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b8a2106c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a6d6d05f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/1639f137", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8b95ed24", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2c9bd5d3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/46935cdc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/11fffaad", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/5aab2991", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/152a7797", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1b0ca567", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d933fd90", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c4a589be", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/88f4f76e", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a85c5294", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/6c0d4d6f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/77a9bb26", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a4226ad1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8192b51c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e252e1af", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b38ce55f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/833e2d05", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/95409f69", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8e74af9e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/228beef2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/374ea860", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c9d0fde6", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4e2ce787", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f1ddb528", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/474ab79e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/15395f75", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/90ac92a1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ac2fcdd1", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/3de3a361", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4563564e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/caf89138", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/54c85030", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c977b25a", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f3d68000", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0b54abcf", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ccf8c6b9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d21d8a10", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0afe8386", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cc9d3ffc", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/8b6f5916", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/dc547bcc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/97a1ceba", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1c215b74", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b183df85", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/56f58297", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/d463b589", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a245d14d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7de11d3b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c40ad854", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f67bca04", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/10a093df", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/8a3e9465", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f908654a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a447cfbb", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1d59d7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b6cb989d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/29035b9c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/112b5b2b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bef9bacb", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/be08813a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a32376b5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bea39282", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ded18b41", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/9a8c900b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8ff98ac8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f35f7939", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ee034a17", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6528ee81", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b47307b4", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f943315b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/55eae049", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f15f43b8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ab1c78f1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aa20d900", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/5dffd0c8", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/08bfd395", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/53eb7c46", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ff2ae6b7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e482e25f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b77e730f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6739f63d", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/9cf481f5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/19dcd1c7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/18eb9836", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8788ff3d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fc765d8e", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/92c05f33", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/01b7f04e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2ff6532f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/060fc3de", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/97b1fc34", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4970da26", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/fa775153", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/5b170a6e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d69868ee", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/86f9311f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/28dea41a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ecd3c467", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/59175bf8", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/9873de87", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7f0dfcad", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9d00e95c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/53f9ac78", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7cc79ca4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1bbfae55", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/9b6e33cf", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/25b0126c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7276779d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6f0b4881", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/202a86e5", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a04ac357", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/e766c0ac", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e39b622b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b9b4d2da", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d3a86407", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fd15e922", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/18a85b8a", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2b7e44c5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8a3d77ea", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/24e81cda", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/24bf0137", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a078d363", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4c3fd3d2", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/5602ebae", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/32b30ba9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/914ed099", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ea623d97", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4eb8933e", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/eec45e54", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c159bb6b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d9552168", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bbd94258", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/14d07577", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d3cf95e1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/15c666de", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/7568ff0d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3e7e7927", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b4a117", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f33dcedf", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3ae8b42e", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/deaa4d11", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/40e77f45", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e5208ee6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7fcb33d6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/092489bf", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/de4b9e6f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/20e4a2cc", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/03013f10", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a1a41d77", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/16273387", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fac5f379", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9910372a", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/7fa399", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c66a4817", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ae66c016", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/94e5f8a6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ba77e46d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6c5010bf", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d69aa485", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/17e86ada", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/49abc3b5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0833d9c5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b604a881", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/185c9d9c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e0df1661", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f3a59eb1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/958a2654", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/86f29ee4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ae983b21", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/537376fd", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/99217d40", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f2086a80", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/488c8bf3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bd0fa203", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b62ac3be", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/173d65da", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f18ddc21", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/687ac962", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/554f2e92", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3bce6722", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/31d854be", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/13387f3b", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/dbebb56e", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/bf87e3fe", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f0943231", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1b277ea2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8cfe234c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bf450c18", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f437d6a3", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/b89468d5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3c7294d0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9c68b983", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0e9b7c2e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fa5be579", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/a4a026c0", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a90ca955", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fbf8747f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c0a00d6c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7b51a400", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1600a056", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/3118c09c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a8f7b31f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/08bb171e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/41e1484d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/68553066", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/11fbb9b7", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e4c22178", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/0ec0b6e7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fe413336", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bfa9a0a5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/15f8c9cf", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f13e649f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/259a3941", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4580dad6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cde14e57", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1c9e8404", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aaa98b2d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/12f2267e", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6cc127a3", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/9f0e0e04", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/52095c2a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/17a1fa67", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5842d20f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e34b0add", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f2ca0807", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/51b6b27e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6affb495", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7496ddc6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1fffd3e1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b0108cbc", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/820b2793", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/04266e5d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a529a1b2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/66920f21", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8be55747", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9826d31b", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4011609f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c0987adc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/74c9bcd3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3a291721", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f5b5302e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b9da94fa", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/63b6fd11", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/37535b5a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/973647f0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ef165442", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0ef349ce", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8a337959", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d8307259", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/e899b692", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/11e82311", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/922170e3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2953156e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/56f8fb38", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6c3f0032", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/28440359", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/58958a3e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4a89e30c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/82426106", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/96ea0d97", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0c2b735c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/8fde5bf2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f2b40453", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/487be07c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8b27e30c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/155581", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f78894d1", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/03fe2090", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d4fadff5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2432d3c7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3b9bb64f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/07461cdc", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4254b60f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/fdca0e5c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/99e40694", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/eacb14e6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/872121ef", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bb67ba3d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/53af9737", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/e81e09f6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fa941a37", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b4949985", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ca876203", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2cdf571e", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1810719b", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/bacda101", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fe9900d6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7b2cdaa4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5f8091a3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/201cb47f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4870e8ea", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/128c519a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7be34e71", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cb1b4243", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e981863c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ae2e8b58", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e808d913", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/40f817ff", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/40cc7510", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/91b38362", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/652f173c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/625028b9", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4ddfce16", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/0e9f8d7c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a17c88b3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/730ad06e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f60cfdce", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d3c7c59a", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/07669bbe", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/95138721", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a5816f52", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ac728f4f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/41f23eac", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c70522fb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/01d40801", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/021a3180", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2f4f36fd", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5000ada0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8fd45d82", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/acf1c5d4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/20ae6eda", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/6d5bd0f3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f4385d9c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/89686c81", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b76cd9e4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/61136335", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/21872b1a", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/83eba335", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3197f5b4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4db7eee9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ace9ef4d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/dcbbab1d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d23fbea8", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/acafd3a0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/64d273d5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0e473548", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5b91e1af", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6209cffc", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/dbac45b1", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a47f7d19", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a1362ff6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7351292b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/43c0188d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4c59e55f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0894956f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c9d7d19a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7f826e17", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/33e06f8a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/eca91163", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7cb9ca3e", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/bdf4e19c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/752906c7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d8806430", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a6cf806d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/22d67cc5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/83a41999", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4dbdb69f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/9d952dbe", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0bbae251", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/675ec6cc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4d73b6dc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/08f23e78", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6495b9e4", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/67fd77bd", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/481e9e72", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5e948b0e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/76f66b0f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f34253db", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ee2ff5df", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/7406dd90", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/266adc93", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9e0544af", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e55528ed", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/23a238ba", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/dbae78ac", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/b9c96053", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8bec4cbc", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/858f6840", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/af4eebc3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6fdc30cb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b36fee81", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/1eb3ed3d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bf26cadd", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c50021e1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/10cac425", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/07b578f4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/17ba9ec2", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/1bc3fc88", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/55492c73", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1636f80f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aa234a8a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/23fa065a", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/dff93ab7", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/7a0f5713", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/620bcf12", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/94f5bd2e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/04f0afe8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1ff51fbb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4cf22601", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/896c0f83", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fd50d2b1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/08439e4d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8afe73ca", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cc01ac98", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ca27ab11", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/d29c4f0f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/492f3550", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8702636c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c8f7daa4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/071885f9", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/14a60109", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4a64891c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/94e77cf7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d698a78b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/200fd802", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/54928634", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/596d113f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6a12c627", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/1d6df456", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a1aa1f96", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/55576caa", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/eb110d9b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5f93703f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/eb446487", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/59bd757a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3cef2335", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c8a54dc9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/58cb44d9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0b9ffd1c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1b0ab58e", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/623f31", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/88cd85d4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/476412e8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/be0ae81b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/46b6d67d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/5654f5fe", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/d853ce4d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/af9d837b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bbe2a107", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1b4854d5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c9a5af52", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f670c6d9", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2efd1195", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bc60261a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0ba0829e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/320722e7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c5a0c8b3", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1bef5105", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/ff5d8bc5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b1e64232", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/01269eb6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aa3e4f8c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a4e3739b", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/040edca5", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/254325a6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/81865d53", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d0c6b9d7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b9b4db2c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c697357a", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1938ff80", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/7a8b0318", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a3f2e870", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f33344f4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/775f2d48", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/96f019d9", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/12ea2ec9", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2a425676", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1ea4c391", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6de52015", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ec0a63e8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/287b0be6", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f264951c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/dbcf56f7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f18492b6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c1884e32", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fae1ce0c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e481c41f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b59bbaea", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/cec10f3d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c124add7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/91286953", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0a5859ac", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/063585fe", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/461a51a3", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/74656137", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e39138f4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b394f470", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ed4bbac0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d68e6a5d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/2cf83fbb", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/0a536872", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5e431415", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2e46cf91", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/61f6f160", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a353ec3c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/aba90e1c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/d92c6538", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0c3a993a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5b7af5be", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f27cb677", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4a8f1c93", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0cedb40c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4164763c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/dbdab45b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2b1b10df", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6e2a4777", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6c42de72", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/25c6450e", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/1c92e73e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/889feef1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5eaa20f4", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/849b630c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/baeb2bd8", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ab64645c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/33cd7f8b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4d891590", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/dfeb5bd5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a4d3d86e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6f0cc939", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9e353869", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/17e0f405", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ae392933", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/795a1b36", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/10ea6b4c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e084661a", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ae12a24b", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/deff0da2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b23e0fd2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fa9b5617", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e0163a2a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d3c1c37b", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/fa0ec39f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a57e232e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5b18e3ab", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1f0bd070", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d53ee18c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fa897c5c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e6c96935", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/d291e79c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8d276614", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a04d0b51", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f57756ee", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aeab19bd", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6eef52c5", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/c2449c78", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/edd779b7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e2f69ad8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fbef87d0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5f6c0e6d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/396e6209", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/931999b1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f1dc6056", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d44e26d0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f5974da8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/136013ff", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4d9138b2", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/fd0f341a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e2f445f9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/871765ff", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/dc2f4e86", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6096d4d0", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/210dcfca", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/0574286a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a7dd6c98", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/93da089e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6b11e8e0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/14b87231", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/7cdc3760", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4dadfb2f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e53d04b0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/896024b6", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/608efe49", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/9060ba19", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/376b521c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/108dc5e5", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/187782d1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/59003fd7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0f36f0ab", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/15aedef8", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f94dac7a", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f5210333", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/54db3ef2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6eb02a74", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f7652789", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fffef45b", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b1666ebc", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/dee48161", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/33277d13", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e9620595", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/39040267", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/305ed93a", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f46b74", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/0e0faaab", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/24db5534", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/49c1d432", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d67b8bc1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cfff0a9d", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/4f4a4b50", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/aec1b5be", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/5815d355", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1961ef53", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0118c5d8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/554d2f7c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/91d2d63f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/29d2c736", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/94798f76", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/2f11d9f0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a25f911a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3f9d44df", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c7ae8de5", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/5f27ec98", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/72c5cd97", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/a9c3b511", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/d412a058", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6ffd29be", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b6d8ddad", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/b57b96dd", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/3f915bb8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e3b47bbe", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/64dca116", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/360c6311", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0d22060b", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/6158d42f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/72cbd9d9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b35496df", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bb196dd0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bb5a87f0", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/49987e3d", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/1b2a2e7e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/29a654a1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/805655f8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/61d86300", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fc875f56", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/03b55f90", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/96f89ee9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cda18cd2", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/019790d9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/4edbef66", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c8edb66e", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f7368b4e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bd795bbd", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ab203449", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/25621485", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/26c6ea14", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1df9cc2a", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2e031276", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0957be5c", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/29def968", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1df5a725", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/233211ab", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d862568e", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/367bd6d1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/bc5a23fb", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/122b1f8f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/05a7b241", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/25a7b252", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/b7ea8318", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/6959629b", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c91cc69a", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/90e9e4ae", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ed92bae1", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/21a2cbb3", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/31254a48", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/726dc989", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/6461ca39", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7042fc2e", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/1c0f1f07", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/cdaf5890", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/24b63558", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/042a793f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/b0402cd8", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f184370f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0ee367a7", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/08c631f1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/7b99c3af", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/ffc2e88d", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/882adc77", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/7bf137e0", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/158a874f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0c061cde", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/978d618c", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "type": "Annotation" + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/257def69", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/94ed7f16", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/aa8b7a22", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ed1753e3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/0801363f", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/fcf8619f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorB" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedA" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorA" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedC" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorD" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Color00" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorC" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedD" + ] + } + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB/full/full/0/default.jpg": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB", + "type": "ImageService2", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 6270, + "width": 2551, + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedB" + ] + } + }, + "vault://iiif-parser/v4/ContentResource/34162c34": { + "id": "vault://iiif-parser/v4/ContentResource/34162c34", + "type": "Choice", + "language": [], + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD/full/full/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/layers", + "id": "vault://iiif-parser/v4/ContentResource/34162c34", + "type": "Choice" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4502abbb": { + "id": "vault://iiif-parser/v4/ContentResource/4502abbb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "1(u)", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "id": "vault://iiif-parser/v4/ContentResource/4502abbb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/96ca7e30": { + "id": "vault://iiif-parser/v4/ContentResource/96ca7e30", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "id": "vault://iiif-parser/v4/ContentResource/96ca7e30", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4372769c": { + "id": "vault://iiif-parser/v4/ContentResource/4372769c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "id": "vault://iiif-parser/v4/ContentResource/4372769c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8548966b": { + "id": "vault://iiif-parser/v4/ContentResource/8548966b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "id": "vault://iiif-parser/v4/ContentResource/8548966b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2fba1ca7": { + "id": "vault://iiif-parser/v4/ContentResource/2fba1ca7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "1(asz)", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "id": "vault://iiif-parser/v4/ContentResource/2fba1ca7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/84c457f7": { + "id": "vault://iiif-parser/v4/ContentResource/84c457f7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "id": "vault://iiif-parser/v4/ContentResource/84c457f7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f7b7d203": { + "id": "vault://iiif-parser/v4/ContentResource/f7b7d203", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "id": "vault://iiif-parser/v4/ContentResource/f7b7d203", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4bee5149": { + "id": "vault://iiif-parser/v4/ContentResource/4bee5149", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "id": "vault://iiif-parser/v4/ContentResource/4bee5149", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e52040b4": { + "id": "vault://iiif-parser/v4/ContentResource/e52040b4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "id": "vault://iiif-parser/v4/ContentResource/e52040b4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c599f353": { + "id": "vault://iiif-parser/v4/ContentResource/c599f353", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "id": "vault://iiif-parser/v4/ContentResource/c599f353", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/053295ea": { + "id": "vault://iiif-parser/v4/ContentResource/053295ea", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "iku", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "id": "vault://iiif-parser/v4/ContentResource/053295ea", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e07207f7": { + "id": "vault://iiif-parser/v4/ContentResource/e07207f7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "id": "vault://iiif-parser/v4/ContentResource/e07207f7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/54cedfc1": { + "id": "vault://iiif-parser/v4/ContentResource/54cedfc1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "id": "vault://iiif-parser/v4/ContentResource/54cedfc1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/67276f0c": { + "id": "vault://iiif-parser/v4/ContentResource/67276f0c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "id": "vault://iiif-parser/v4/ContentResource/67276f0c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f098bf42": { + "id": "vault://iiif-parser/v4/ContentResource/f098bf42", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "a", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "id": "vault://iiif-parser/v4/ContentResource/f098bf42", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/16b865b5": { + "id": "vault://iiif-parser/v4/ContentResource/16b865b5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "id": "vault://iiif-parser/v4/ContentResource/16b865b5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d3b0dfc1": { + "id": "vault://iiif-parser/v4/ContentResource/d3b0dfc1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "id": "vault://iiif-parser/v4/ContentResource/d3b0dfc1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/293e510d": { + "id": "vault://iiif-parser/v4/ContentResource/293e510d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "id": "vault://iiif-parser/v4/ContentResource/293e510d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5e1572f6": { + "id": "vault://iiif-parser/v4/ContentResource/5e1572f6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "id": "vault://iiif-parser/v4/ContentResource/5e1572f6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ffd19fa1": { + "id": "vault://iiif-parser/v4/ContentResource/ffd19fa1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sza3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "id": "vault://iiif-parser/v4/ContentResource/ffd19fa1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/75feb692": { + "id": "vault://iiif-parser/v4/ContentResource/75feb692", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "id": "vault://iiif-parser/v4/ContentResource/75feb692", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a81273a6": { + "id": "vault://iiif-parser/v4/ContentResource/a81273a6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "id": "vault://iiif-parser/v4/ContentResource/a81273a6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e1fa74eb": { + "id": "vault://iiif-parser/v4/ContentResource/e1fa74eb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "id": "vault://iiif-parser/v4/ContentResource/e1fa74eb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ecec2311": { + "id": "vault://iiif-parser/v4/ContentResource/ecec2311", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "id": "vault://iiif-parser/v4/ContentResource/ecec2311", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/44d8deb4": { + "id": "vault://iiif-parser/v4/ContentResource/44d8deb4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "id": "vault://iiif-parser/v4/ContentResource/44d8deb4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/57d3f773": { + "id": "vault://iiif-parser/v4/ContentResource/57d3f773", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "id": "vault://iiif-parser/v4/ContentResource/57d3f773", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/24a83287": { + "id": "vault://iiif-parser/v4/ContentResource/24a83287", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "id": "vault://iiif-parser/v4/ContentResource/24a83287", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a8a02fc9": { + "id": "vault://iiif-parser/v4/ContentResource/a8a02fc9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "id": "vault://iiif-parser/v4/ContentResource/a8a02fc9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c2562ede": { + "id": "vault://iiif-parser/v4/ContentResource/c2562ede", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{gisz}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "id": "vault://iiif-parser/v4/ContentResource/c2562ede", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4be70177": { + "id": "vault://iiif-parser/v4/ContentResource/4be70177", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "kiri6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "id": "vault://iiif-parser/v4/ContentResource/4be70177", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/470e8450": { + "id": "vault://iiif-parser/v4/ContentResource/470e8450", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "id": "vault://iiif-parser/v4/ContentResource/470e8450", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/840b8164": { + "id": "vault://iiif-parser/v4/ContentResource/840b8164", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "id": "vault://iiif-parser/v4/ContentResource/840b8164", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aaee2a2b": { + "id": "vault://iiif-parser/v4/ContentResource/aaee2a2b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "id": "vault://iiif-parser/v4/ContentResource/aaee2a2b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/65e15553": { + "id": "vault://iiif-parser/v4/ContentResource/65e15553", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "id": "vault://iiif-parser/v4/ContentResource/65e15553", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/df24a75c": { + "id": "vault://iiif-parser/v4/ContentResource/df24a75c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "id": "vault://iiif-parser/v4/ContentResource/df24a75c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e9c80531": { + "id": "vault://iiif-parser/v4/ContentResource/e9c80531", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "id": "vault://iiif-parser/v4/ContentResource/e9c80531", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/073fab26": { + "id": "vault://iiif-parser/v4/ContentResource/073fab26", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "id": "vault://iiif-parser/v4/ContentResource/073fab26", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a17383cc": { + "id": "vault://iiif-parser/v4/ContentResource/a17383cc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "id": "vault://iiif-parser/v4/ContentResource/a17383cc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/31251272": { + "id": "vault://iiif-parser/v4/ContentResource/31251272", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "id": "vault://iiif-parser/v4/ContentResource/31251272", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5ede42e9": { + "id": "vault://iiif-parser/v4/ContentResource/5ede42e9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "a", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "id": "vault://iiif-parser/v4/ContentResource/5ede42e9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5591d01e": { + "id": "vault://iiif-parser/v4/ContentResource/5591d01e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "id": "vault://iiif-parser/v4/ContentResource/5591d01e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e580d049": { + "id": "vault://iiif-parser/v4/ContentResource/e580d049", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "id": "vault://iiif-parser/v4/ContentResource/e580d049", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1cb5d960": { + "id": "vault://iiif-parser/v4/ContentResource/1cb5d960", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "id": "vault://iiif-parser/v4/ContentResource/1cb5d960", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cc7f3c9d": { + "id": "vault://iiif-parser/v4/ContentResource/cc7f3c9d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "id": "vault://iiif-parser/v4/ContentResource/cc7f3c9d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3cab384c": { + "id": "vault://iiif-parser/v4/ContentResource/3cab384c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sza3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "id": "vault://iiif-parser/v4/ContentResource/3cab384c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/376710ff": { + "id": "vault://iiif-parser/v4/ContentResource/376710ff", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "id": "vault://iiif-parser/v4/ContentResource/376710ff", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/68eb1168": { + "id": "vault://iiif-parser/v4/ContentResource/68eb1168", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "id": "vault://iiif-parser/v4/ContentResource/68eb1168", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/42faa380": { + "id": "vault://iiif-parser/v4/ContentResource/42faa380", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "id": "vault://iiif-parser/v4/ContentResource/42faa380", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/97c2f9bc": { + "id": "vault://iiif-parser/v4/ContentResource/97c2f9bc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "id": "vault://iiif-parser/v4/ContentResource/97c2f9bc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cff09b62": { + "id": "vault://iiif-parser/v4/ContentResource/cff09b62", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "id": "vault://iiif-parser/v4/ContentResource/cff09b62", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7d539a27": { + "id": "vault://iiif-parser/v4/ContentResource/7d539a27", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "id": "vault://iiif-parser/v4/ContentResource/7d539a27", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bec684d0": { + "id": "vault://iiif-parser/v4/ContentResource/bec684d0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "id": "vault://iiif-parser/v4/ContentResource/bec684d0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b468addf": { + "id": "vault://iiif-parser/v4/ContentResource/b468addf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "id": "vault://iiif-parser/v4/ContentResource/b468addf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/06ca4784": { + "id": "vault://iiif-parser/v4/ContentResource/06ca4784", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "id": "vault://iiif-parser/v4/ContentResource/06ca4784", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/294e85a3": { + "id": "vault://iiif-parser/v4/ContentResource/294e85a3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "id": "vault://iiif-parser/v4/ContentResource/294e85a3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/23f5afe6": { + "id": "vault://iiif-parser/v4/ContentResource/23f5afe6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "id": "vault://iiif-parser/v4/ContentResource/23f5afe6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/943c1311": { + "id": "vault://iiif-parser/v4/ContentResource/943c1311", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "id": "vault://iiif-parser/v4/ContentResource/943c1311", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ca4f68bf": { + "id": "vault://iiif-parser/v4/ContentResource/ca4f68bf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "id": "vault://iiif-parser/v4/ContentResource/ca4f68bf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d1b8b4c5": { + "id": "vault://iiif-parser/v4/ContentResource/d1b8b4c5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "id": "vault://iiif-parser/v4/ContentResource/d1b8b4c5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/546f89f0": { + "id": "vault://iiif-parser/v4/ContentResource/546f89f0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "id": "vault://iiif-parser/v4/ContentResource/546f89f0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cc6b43a5": { + "id": "vault://iiif-parser/v4/ContentResource/cc6b43a5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "id": "vault://iiif-parser/v4/ContentResource/cc6b43a5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/27d55f52": { + "id": "vault://iiif-parser/v4/ContentResource/27d55f52", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "id": "vault://iiif-parser/v4/ContentResource/27d55f52", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8ff2a51f": { + "id": "vault://iiif-parser/v4/ContentResource/8ff2a51f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "id": "vault://iiif-parser/v4/ContentResource/8ff2a51f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1b4d0106": { + "id": "vault://iiif-parser/v4/ContentResource/1b4d0106", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "id": "vault://iiif-parser/v4/ContentResource/1b4d0106", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/97029304": { + "id": "vault://iiif-parser/v4/ContentResource/97029304", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ia", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "id": "vault://iiif-parser/v4/ContentResource/97029304", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/730d5964": { + "id": "vault://iiif-parser/v4/ContentResource/730d5964", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "id": "vault://iiif-parser/v4/ContentResource/730d5964", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a8becc93": { + "id": "vault://iiif-parser/v4/ContentResource/a8becc93", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "id": "vault://iiif-parser/v4/ContentResource/a8becc93", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ba60dcff": { + "id": "vault://iiif-parser/v4/ContentResource/ba60dcff", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "id": "vault://iiif-parser/v4/ContentResource/ba60dcff", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3ac78f47": { + "id": "vault://iiif-parser/v4/ContentResource/3ac78f47", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "id": "vault://iiif-parser/v4/ContentResource/3ac78f47", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/752fcd0d": { + "id": "vault://iiif-parser/v4/ContentResource/752fcd0d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "u3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "id": "vault://iiif-parser/v4/ContentResource/752fcd0d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/30f8a923": { + "id": "vault://iiif-parser/v4/ContentResource/30f8a923", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "id": "vault://iiif-parser/v4/ContentResource/30f8a923", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/996d0c15": { + "id": "vault://iiif-parser/v4/ContentResource/996d0c15", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "id": "vault://iiif-parser/v4/ContentResource/996d0c15", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7e03cffe": { + "id": "vault://iiif-parser/v4/ContentResource/7e03cffe", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "id": "vault://iiif-parser/v4/ContentResource/7e03cffe", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ba6f5680": { + "id": "vault://iiif-parser/v4/ContentResource/ba6f5680", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "id": "vault://iiif-parser/v4/ContentResource/ba6f5680", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ba056baf": { + "id": "vault://iiif-parser/v4/ContentResource/ba056baf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "id": "vault://iiif-parser/v4/ContentResource/ba056baf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d79abee2": { + "id": "vault://iiif-parser/v4/ContentResource/d79abee2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "id": "vault://iiif-parser/v4/ContentResource/d79abee2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c3f77dd4": { + "id": "vault://iiif-parser/v4/ContentResource/c3f77dd4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "id": "vault://iiif-parser/v4/ContentResource/c3f77dd4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b30caedc": { + "id": "vault://iiif-parser/v4/ContentResource/b30caedc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "id": "vault://iiif-parser/v4/ContentResource/b30caedc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/855dc3c1": { + "id": "vault://iiif-parser/v4/ContentResource/855dc3c1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "id": "vault://iiif-parser/v4/ContentResource/855dc3c1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a36032a6": { + "id": "vault://iiif-parser/v4/ContentResource/a36032a6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "id": "vault://iiif-parser/v4/ContentResource/a36032a6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/801052a1": { + "id": "vault://iiif-parser/v4/ContentResource/801052a1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "id": "vault://iiif-parser/v4/ContentResource/801052a1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/adefc597": { + "id": "vault://iiif-parser/v4/ContentResource/adefc597", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "id": "vault://iiif-parser/v4/ContentResource/adefc597", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2410443e": { + "id": "vault://iiif-parser/v4/ContentResource/2410443e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "id": "vault://iiif-parser/v4/ContentResource/2410443e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cef21002": { + "id": "vault://iiif-parser/v4/ContentResource/cef21002", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "id": "vault://iiif-parser/v4/ContentResource/cef21002", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6d517e7b": { + "id": "vault://iiif-parser/v4/ContentResource/6d517e7b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ra", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "id": "vault://iiif-parser/v4/ContentResource/6d517e7b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/26b26860": { + "id": "vault://iiif-parser/v4/ContentResource/26b26860", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "id": "vault://iiif-parser/v4/ContentResource/26b26860", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2d065856": { + "id": "vault://iiif-parser/v4/ContentResource/2d065856", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "id": "vault://iiif-parser/v4/ContentResource/2d065856", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/34107518": { + "id": "vault://iiif-parser/v4/ContentResource/34107518", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "id": "vault://iiif-parser/v4/ContentResource/34107518", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ee6c9e43": { + "id": "vault://iiif-parser/v4/ContentResource/ee6c9e43", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "id": "vault://iiif-parser/v4/ContentResource/ee6c9e43", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/728239cb": { + "id": "vault://iiif-parser/v4/ContentResource/728239cb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "am", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "id": "vault://iiif-parser/v4/ContentResource/728239cb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f121322f": { + "id": "vault://iiif-parser/v4/ContentResource/f121322f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "id": "vault://iiif-parser/v4/ContentResource/f121322f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c0dfb319": { + "id": "vault://iiif-parser/v4/ContentResource/c0dfb319", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "id": "vault://iiif-parser/v4/ContentResource/c0dfb319", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fd23e676": { + "id": "vault://iiif-parser/v4/ContentResource/fd23e676", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "id": "vault://iiif-parser/v4/ContentResource/fd23e676", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7a97df8c": { + "id": "vault://iiif-parser/v4/ContentResource/7a97df8c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "id": "vault://iiif-parser/v4/ContentResource/7a97df8c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5c41d32a": { + "id": "vault://iiif-parser/v4/ContentResource/5c41d32a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "tum", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "id": "vault://iiif-parser/v4/ContentResource/5c41d32a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/97c347ee": { + "id": "vault://iiif-parser/v4/ContentResource/97c347ee", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "id": "vault://iiif-parser/v4/ContentResource/97c347ee", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/eb6a24d8": { + "id": "vault://iiif-parser/v4/ContentResource/eb6a24d8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "id": "vault://iiif-parser/v4/ContentResource/eb6a24d8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/322cc554": { + "id": "vault://iiif-parser/v4/ContentResource/322cc554", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "id": "vault://iiif-parser/v4/ContentResource/322cc554", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/45864ccd": { + "id": "vault://iiif-parser/v4/ContentResource/45864ccd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "id": "vault://iiif-parser/v4/ContentResource/45864ccd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/65e1d039": { + "id": "vault://iiif-parser/v4/ContentResource/65e1d039", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sag", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "id": "vault://iiif-parser/v4/ContentResource/65e1d039", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/24b4ab04": { + "id": "vault://iiif-parser/v4/ContentResource/24b4ab04", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "id": "vault://iiif-parser/v4/ContentResource/24b4ab04", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0f0fd575": { + "id": "vault://iiif-parser/v4/ContentResource/0f0fd575", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "id": "vault://iiif-parser/v4/ContentResource/0f0fd575", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ed6fef99": { + "id": "vault://iiif-parser/v4/ContentResource/ed6fef99", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "id": "vault://iiif-parser/v4/ContentResource/ed6fef99", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5f6936a7": { + "id": "vault://iiif-parser/v4/ContentResource/5f6936a7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "id": "vault://iiif-parser/v4/ContentResource/5f6936a7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/082d5219": { + "id": "vault://iiif-parser/v4/ContentResource/082d5219", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "1(disz)", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "id": "vault://iiif-parser/v4/ContentResource/082d5219", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dfbcc085": { + "id": "vault://iiif-parser/v4/ContentResource/dfbcc085", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "id": "vault://iiif-parser/v4/ContentResource/dfbcc085", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/33b9c6f4": { + "id": "vault://iiif-parser/v4/ContentResource/33b9c6f4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "id": "vault://iiif-parser/v4/ContentResource/33b9c6f4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f2cc355a": { + "id": "vault://iiif-parser/v4/ContentResource/f2cc355a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "id": "vault://iiif-parser/v4/ContentResource/f2cc355a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7929e826": { + "id": "vault://iiif-parser/v4/ContentResource/7929e826", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "id": "vault://iiif-parser/v4/ContentResource/7929e826", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cc2a4569": { + "id": "vault://iiif-parser/v4/ContentResource/cc2a4569", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "kam", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "id": "vault://iiif-parser/v4/ContentResource/cc2a4569", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/58a1f506": { + "id": "vault://iiif-parser/v4/ContentResource/58a1f506", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "id": "vault://iiif-parser/v4/ContentResource/58a1f506", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fb23a377": { + "id": "vault://iiif-parser/v4/ContentResource/fb23a377", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "id": "vault://iiif-parser/v4/ContentResource/fb23a377", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f2cb06be": { + "id": "vault://iiif-parser/v4/ContentResource/f2cb06be", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "id": "vault://iiif-parser/v4/ContentResource/f2cb06be", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8f164fa5": { + "id": "vault://iiif-parser/v4/ContentResource/8f164fa5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "id": "vault://iiif-parser/v4/ContentResource/8f164fa5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8a7cd912": { + "id": "vault://iiif-parser/v4/ContentResource/8a7cd912", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "hu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "id": "vault://iiif-parser/v4/ContentResource/8a7cd912", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/13aa0a87": { + "id": "vault://iiif-parser/v4/ContentResource/13aa0a87", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "id": "vault://iiif-parser/v4/ContentResource/13aa0a87", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/040cadf6": { + "id": "vault://iiif-parser/v4/ContentResource/040cadf6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "id": "vault://iiif-parser/v4/ContentResource/040cadf6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a59dc39e": { + "id": "vault://iiif-parser/v4/ContentResource/a59dc39e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "id": "vault://iiif-parser/v4/ContentResource/a59dc39e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8d161a24": { + "id": "vault://iiif-parser/v4/ContentResource/8d161a24", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "id": "vault://iiif-parser/v4/ContentResource/8d161a24", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c4a7e953": { + "id": "vault://iiif-parser/v4/ContentResource/c4a7e953", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "id": "vault://iiif-parser/v4/ContentResource/c4a7e953", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d859ba00": { + "id": "vault://iiif-parser/v4/ContentResource/d859ba00", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "id": "vault://iiif-parser/v4/ContentResource/d859ba00", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c2b4e471": { + "id": "vault://iiif-parser/v4/ContentResource/c2b4e471", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "id": "vault://iiif-parser/v4/ContentResource/c2b4e471", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/734de9fa": { + "id": "vault://iiif-parser/v4/ContentResource/734de9fa", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "id": "vault://iiif-parser/v4/ContentResource/734de9fa", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/130e45a3": { + "id": "vault://iiif-parser/v4/ContentResource/130e45a3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "id": "vault://iiif-parser/v4/ContentResource/130e45a3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cff64626": { + "id": "vault://iiif-parser/v4/ContentResource/cff64626", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "id": "vault://iiif-parser/v4/ContentResource/cff64626", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ac2ea853": { + "id": "vault://iiif-parser/v4/ContentResource/ac2ea853", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "id": "vault://iiif-parser/v4/ContentResource/ac2ea853", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ddaab402": { + "id": "vault://iiif-parser/v4/ContentResource/ddaab402", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "id": "vault://iiif-parser/v4/ContentResource/ddaab402", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1dd6e471": { + "id": "vault://iiif-parser/v4/ContentResource/1dd6e471", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "id": "vault://iiif-parser/v4/ContentResource/1dd6e471", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f4f56d5d": { + "id": "vault://iiif-parser/v4/ContentResource/f4f56d5d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "id": "vault://iiif-parser/v4/ContentResource/f4f56d5d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6ba45832": { + "id": "vault://iiif-parser/v4/ContentResource/6ba45832", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "id": "vault://iiif-parser/v4/ContentResource/6ba45832", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0c470402": { + "id": "vault://iiif-parser/v4/ContentResource/0c470402", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "id": "vault://iiif-parser/v4/ContentResource/0c470402", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aec8b273": { + "id": "vault://iiif-parser/v4/ContentResource/aec8b273", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "id": "vault://iiif-parser/v4/ContentResource/aec8b273", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2073c336": { + "id": "vault://iiif-parser/v4/ContentResource/2073c336", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "id": "vault://iiif-parser/v4/ContentResource/2073c336", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/42bb5ea1": { + "id": "vault://iiif-parser/v4/ContentResource/42bb5ea1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "id": "vault://iiif-parser/v4/ContentResource/42bb5ea1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9c5059be": { + "id": "vault://iiif-parser/v4/ContentResource/9c5059be", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sag", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "id": "vault://iiif-parser/v4/ContentResource/9c5059be", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c74f1983": { + "id": "vault://iiif-parser/v4/ContentResource/c74f1983", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "id": "vault://iiif-parser/v4/ContentResource/c74f1983", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/19fbfc73": { + "id": "vault://iiif-parser/v4/ContentResource/19fbfc73", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "id": "vault://iiif-parser/v4/ContentResource/19fbfc73", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b2b0151e": { + "id": "vault://iiif-parser/v4/ContentResource/b2b0151e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "id": "vault://iiif-parser/v4/ContentResource/b2b0151e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/40bb2920": { + "id": "vault://iiif-parser/v4/ContentResource/40bb2920", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "id": "vault://iiif-parser/v4/ContentResource/40bb2920", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/33943033": { + "id": "vault://iiif-parser/v4/ContentResource/33943033", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "2(disz)", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "id": "vault://iiif-parser/v4/ContentResource/33943033", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9882430c": { + "id": "vault://iiif-parser/v4/ContentResource/9882430c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "id": "vault://iiif-parser/v4/ContentResource/9882430c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c80104a9": { + "id": "vault://iiif-parser/v4/ContentResource/c80104a9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "id": "vault://iiif-parser/v4/ContentResource/c80104a9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/399deac3": { + "id": "vault://iiif-parser/v4/ContentResource/399deac3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "id": "vault://iiif-parser/v4/ContentResource/399deac3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1ab01554": { + "id": "vault://iiif-parser/v4/ContentResource/1ab01554", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "id": "vault://iiif-parser/v4/ContentResource/1ab01554", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4d5985e2": { + "id": "vault://iiif-parser/v4/ContentResource/4d5985e2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "kam", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "id": "vault://iiif-parser/v4/ContentResource/4d5985e2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/538a588d": { + "id": "vault://iiif-parser/v4/ContentResource/538a588d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "id": "vault://iiif-parser/v4/ContentResource/538a588d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ee10b77d": { + "id": "vault://iiif-parser/v4/ContentResource/ee10b77d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "id": "vault://iiif-parser/v4/ContentResource/ee10b77d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/94e9d635": { + "id": "vault://iiif-parser/v4/ContentResource/94e9d635", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "id": "vault://iiif-parser/v4/ContentResource/94e9d635", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ecf7802e": { + "id": "vault://iiif-parser/v4/ContentResource/ecf7802e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "id": "vault://iiif-parser/v4/ContentResource/ecf7802e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dc469776": { + "id": "vault://iiif-parser/v4/ContentResource/dc469776", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "id": "vault://iiif-parser/v4/ContentResource/dc469776", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4e6367e5": { + "id": "vault://iiif-parser/v4/ContentResource/4e6367e5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "id": "vault://iiif-parser/v4/ContentResource/4e6367e5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1b82cfd5": { + "id": "vault://iiif-parser/v4/ContentResource/1b82cfd5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "id": "vault://iiif-parser/v4/ContentResource/1b82cfd5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f7fc4c3c": { + "id": "vault://iiif-parser/v4/ContentResource/f7fc4c3c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "id": "vault://iiif-parser/v4/ContentResource/f7fc4c3c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/74d639c6": { + "id": "vault://iiif-parser/v4/ContentResource/74d639c6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "id": "vault://iiif-parser/v4/ContentResource/74d639c6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0f9bdd79": { + "id": "vault://iiif-parser/v4/ContentResource/0f9bdd79", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ur2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "id": "vault://iiif-parser/v4/ContentResource/0f9bdd79", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ab007da4": { + "id": "vault://iiif-parser/v4/ContentResource/ab007da4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "id": "vault://iiif-parser/v4/ContentResource/ab007da4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/50946294": { + "id": "vault://iiif-parser/v4/ContentResource/50946294", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "id": "vault://iiif-parser/v4/ContentResource/50946294", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d4ea8f9e": { + "id": "vault://iiif-parser/v4/ContentResource/d4ea8f9e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "id": "vault://iiif-parser/v4/ContentResource/d4ea8f9e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f5bfa707": { + "id": "vault://iiif-parser/v4/ContentResource/f5bfa707", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "id": "vault://iiif-parser/v4/ContentResource/f5bfa707", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f09014e8": { + "id": "vault://iiif-parser/v4/ContentResource/f09014e8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "id": "vault://iiif-parser/v4/ContentResource/f09014e8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3a7735e7": { + "id": "vault://iiif-parser/v4/ContentResource/3a7735e7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "id": "vault://iiif-parser/v4/ContentResource/3a7735e7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a3fc3ad7": { + "id": "vault://iiif-parser/v4/ContentResource/a3fc3ad7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "id": "vault://iiif-parser/v4/ContentResource/a3fc3ad7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f2f7007c": { + "id": "vault://iiif-parser/v4/ContentResource/f2f7007c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "id": "vault://iiif-parser/v4/ContentResource/f2f7007c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ec5ccec4": { + "id": "vault://iiif-parser/v4/ContentResource/ec5ccec4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "id": "vault://iiif-parser/v4/ContentResource/ec5ccec4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2d168a87": { + "id": "vault://iiif-parser/v4/ContentResource/2d168a87", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "el", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "id": "vault://iiif-parser/v4/ContentResource/2d168a87", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/97144ba6": { + "id": "vault://iiif-parser/v4/ContentResource/97144ba6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "id": "vault://iiif-parser/v4/ContentResource/97144ba6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8481ac96": { + "id": "vault://iiif-parser/v4/ContentResource/8481ac96", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "id": "vault://iiif-parser/v4/ContentResource/8481ac96", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cfc523d2": { + "id": "vault://iiif-parser/v4/ContentResource/cfc523d2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "id": "vault://iiif-parser/v4/ContentResource/cfc523d2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c1d25d05": { + "id": "vault://iiif-parser/v4/ContentResource/c1d25d05", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "id": "vault://iiif-parser/v4/ContentResource/c1d25d05", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d8bd9f34": { + "id": "vault://iiif-parser/v4/ContentResource/d8bd9f34", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "id": "vault://iiif-parser/v4/ContentResource/d8bd9f34", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/020876e1": { + "id": "vault://iiif-parser/v4/ContentResource/020876e1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "id": "vault://iiif-parser/v4/ContentResource/020876e1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cf27ded1": { + "id": "vault://iiif-parser/v4/ContentResource/cf27ded1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "id": "vault://iiif-parser/v4/ContentResource/cf27ded1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/25a508b4": { + "id": "vault://iiif-parser/v4/ContentResource/25a508b4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "id": "vault://iiif-parser/v4/ContentResource/25a508b4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/287b48c2": { + "id": "vault://iiif-parser/v4/ContentResource/287b48c2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "id": "vault://iiif-parser/v4/ContentResource/287b48c2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fafa65af": { + "id": "vault://iiif-parser/v4/ContentResource/fafa65af", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "id": "vault://iiif-parser/v4/ContentResource/fafa65af", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5ea58ca0": { + "id": "vault://iiif-parser/v4/ContentResource/5ea58ca0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "id": "vault://iiif-parser/v4/ContentResource/5ea58ca0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/04397190": { + "id": "vault://iiif-parser/v4/ContentResource/04397190", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "id": "vault://iiif-parser/v4/ContentResource/04397190", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5e84b9cd": { + "id": "vault://iiif-parser/v4/ContentResource/5e84b9cd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "id": "vault://iiif-parser/v4/ContentResource/5e84b9cd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a964b603": { + "id": "vault://iiif-parser/v4/ContentResource/a964b603", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "id": "vault://iiif-parser/v4/ContentResource/a964b603", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b4f5df5c": { + "id": "vault://iiif-parser/v4/ContentResource/b4f5df5c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "szam2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "id": "vault://iiif-parser/v4/ContentResource/b4f5df5c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ee1c44e3": { + "id": "vault://iiif-parser/v4/ContentResource/ee1c44e3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "id": "vault://iiif-parser/v4/ContentResource/ee1c44e3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/490d9910": { + "id": "vault://iiif-parser/v4/ContentResource/490d9910", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "id": "vault://iiif-parser/v4/ContentResource/490d9910", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f1226bbe": { + "id": "vault://iiif-parser/v4/ContentResource/f1226bbe", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "id": "vault://iiif-parser/v4/ContentResource/f1226bbe", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a001ddc0": { + "id": "vault://iiif-parser/v4/ContentResource/a001ddc0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "id": "vault://iiif-parser/v4/ContentResource/a001ddc0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dc4e935b": { + "id": "vault://iiif-parser/v4/ContentResource/dc4e935b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "til", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "id": "vault://iiif-parser/v4/ContentResource/dc4e935b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b538ab3c": { + "id": "vault://iiif-parser/v4/ContentResource/b538ab3c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "id": "vault://iiif-parser/v4/ContentResource/b538ab3c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/13fc0651": { + "id": "vault://iiif-parser/v4/ContentResource/13fc0651", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "id": "vault://iiif-parser/v4/ContentResource/13fc0651", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ae0f971c": { + "id": "vault://iiif-parser/v4/ContentResource/ae0f971c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "id": "vault://iiif-parser/v4/ContentResource/ae0f971c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/75776c01": { + "id": "vault://iiif-parser/v4/ContentResource/75776c01", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "id": "vault://iiif-parser/v4/ContentResource/75776c01", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cac90128": { + "id": "vault://iiif-parser/v4/ContentResource/cac90128", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "id": "vault://iiif-parser/v4/ContentResource/cac90128", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c230ffed": { + "id": "vault://iiif-parser/v4/ContentResource/c230ffed", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "id": "vault://iiif-parser/v4/ContentResource/c230ffed", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3d236c1e": { + "id": "vault://iiif-parser/v4/ContentResource/3d236c1e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "id": "vault://iiif-parser/v4/ContentResource/3d236c1e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1033aff2": { + "id": "vault://iiif-parser/v4/ContentResource/1033aff2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "id": "vault://iiif-parser/v4/ContentResource/1033aff2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e8a3d1ce": { + "id": "vault://iiif-parser/v4/ContentResource/e8a3d1ce", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "id": "vault://iiif-parser/v4/ContentResource/e8a3d1ce", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3126802f": { + "id": "vault://iiif-parser/v4/ContentResource/3126802f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "id": "vault://iiif-parser/v4/ContentResource/3126802f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1ece15ac": { + "id": "vault://iiif-parser/v4/ContentResource/1ece15ac", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "id": "vault://iiif-parser/v4/ContentResource/1ece15ac", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5c9dfa5f": { + "id": "vault://iiif-parser/v4/ContentResource/5c9dfa5f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "id": "vault://iiif-parser/v4/ContentResource/5c9dfa5f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f2305554": { + "id": "vault://iiif-parser/v4/ContentResource/f2305554", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "id": "vault://iiif-parser/v4/ContentResource/f2305554", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/698d3f0f": { + "id": "vault://iiif-parser/v4/ContentResource/698d3f0f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "id": "vault://iiif-parser/v4/ContentResource/698d3f0f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cb128dd5": { + "id": "vault://iiif-parser/v4/ContentResource/cb128dd5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sze3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "id": "vault://iiif-parser/v4/ContentResource/cb128dd5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/65d03cc2": { + "id": "vault://iiif-parser/v4/ContentResource/65d03cc2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "id": "vault://iiif-parser/v4/ContentResource/65d03cc2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/102ec231": { + "id": "vault://iiif-parser/v4/ContentResource/102ec231", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "id": "vault://iiif-parser/v4/ContentResource/102ec231", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/78bd60db": { + "id": "vault://iiif-parser/v4/ContentResource/78bd60db", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "id": "vault://iiif-parser/v4/ContentResource/78bd60db", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0388a3e1": { + "id": "vault://iiif-parser/v4/ContentResource/0388a3e1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "id": "vault://iiif-parser/v4/ContentResource/0388a3e1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8493db0e": { + "id": "vault://iiif-parser/v4/ContentResource/8493db0e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "1(u)", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "id": "vault://iiif-parser/v4/ContentResource/8493db0e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2bc19243": { + "id": "vault://iiif-parser/v4/ContentResource/2bc19243", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "id": "vault://iiif-parser/v4/ContentResource/2bc19243", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c904ca31": { + "id": "vault://iiif-parser/v4/ContentResource/c904ca31", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "id": "vault://iiif-parser/v4/ContentResource/c904ca31", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cd642cde": { + "id": "vault://iiif-parser/v4/ContentResource/cd642cde", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "id": "vault://iiif-parser/v4/ContentResource/cd642cde", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/28329560": { + "id": "vault://iiif-parser/v4/ContentResource/28329560", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "id": "vault://iiif-parser/v4/ContentResource/28329560", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ffe95eba": { + "id": "vault://iiif-parser/v4/ContentResource/ffe95eba", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "gin2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "id": "vault://iiif-parser/v4/ContentResource/ffe95eba", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fcc16240": { + "id": "vault://iiif-parser/v4/ContentResource/fcc16240", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "id": "vault://iiif-parser/v4/ContentResource/fcc16240", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/93add232": { + "id": "vault://iiif-parser/v4/ContentResource/93add232", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "id": "vault://iiif-parser/v4/ContentResource/93add232", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0104a73e": { + "id": "vault://iiif-parser/v4/ContentResource/0104a73e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "id": "vault://iiif-parser/v4/ContentResource/0104a73e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d031e163": { + "id": "vault://iiif-parser/v4/ContentResource/d031e163", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "id": "vault://iiif-parser/v4/ContentResource/d031e163", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c46d4224": { + "id": "vault://iiif-parser/v4/ContentResource/c46d4224", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ku3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "id": "vault://iiif-parser/v4/ContentResource/c46d4224", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c2b2b7c1": { + "id": "vault://iiif-parser/v4/ContentResource/c2b2b7c1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "id": "vault://iiif-parser/v4/ContentResource/c2b2b7c1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/79ed20b3": { + "id": "vault://iiif-parser/v4/ContentResource/79ed20b3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "id": "vault://iiif-parser/v4/ContentResource/79ed20b3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c6335d1e": { + "id": "vault://iiif-parser/v4/ContentResource/c6335d1e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "id": "vault://iiif-parser/v4/ContentResource/c6335d1e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d91aebe2": { + "id": "vault://iiif-parser/v4/ContentResource/d91aebe2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "id": "vault://iiif-parser/v4/ContentResource/d91aebe2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c4966c3e": { + "id": "vault://iiif-parser/v4/ContentResource/c4966c3e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "babbar", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "id": "vault://iiif-parser/v4/ContentResource/c4966c3e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/73560cc6": { + "id": "vault://iiif-parser/v4/ContentResource/73560cc6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "id": "vault://iiif-parser/v4/ContentResource/73560cc6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d48a64b4": { + "id": "vault://iiif-parser/v4/ContentResource/d48a64b4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "id": "vault://iiif-parser/v4/ContentResource/d48a64b4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6041da7e": { + "id": "vault://iiif-parser/v4/ContentResource/6041da7e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "id": "vault://iiif-parser/v4/ContentResource/6041da7e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/110e73e5": { + "id": "vault://iiif-parser/v4/ContentResource/110e73e5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "id": "vault://iiif-parser/v4/ContentResource/110e73e5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/13d7fe68": { + "id": "vault://iiif-parser/v4/ContentResource/13d7fe68", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "id": "vault://iiif-parser/v4/ContentResource/13d7fe68", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/39476247": { + "id": "vault://iiif-parser/v4/ContentResource/39476247", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "id": "vault://iiif-parser/v4/ContentResource/39476247", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bb4c3eba": { + "id": "vault://iiif-parser/v4/ContentResource/bb4c3eba", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "id": "vault://iiif-parser/v4/ContentResource/bb4c3eba", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bfde5cda": { + "id": "vault://iiif-parser/v4/ContentResource/bfde5cda", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "id": "vault://iiif-parser/v4/ContentResource/bfde5cda", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/35b86564": { + "id": "vault://iiif-parser/v4/ContentResource/35b86564", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "id": "vault://iiif-parser/v4/ContentResource/35b86564", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f3059103": { + "id": "vault://iiif-parser/v4/ContentResource/f3059103", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "id": "vault://iiif-parser/v4/ContentResource/f3059103", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0a473244": { + "id": "vault://iiif-parser/v4/ContentResource/0a473244", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "id": "vault://iiif-parser/v4/ContentResource/0a473244", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f0a336b9": { + "id": "vault://iiif-parser/v4/ContentResource/f0a336b9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "id": "vault://iiif-parser/v4/ContentResource/f0a336b9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f37ed73a": { + "id": "vault://iiif-parser/v4/ContentResource/f37ed73a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "id": "vault://iiif-parser/v4/ContentResource/f37ed73a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ddb7b167": { + "id": "vault://iiif-parser/v4/ContentResource/ddb7b167", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "id": "vault://iiif-parser/v4/ContentResource/ddb7b167", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5e25abb2": { + "id": "vault://iiif-parser/v4/ContentResource/5e25abb2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "id": "vault://iiif-parser/v4/ContentResource/5e25abb2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d03887c5": { + "id": "vault://iiif-parser/v4/ContentResource/d03887c5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "id": "vault://iiif-parser/v4/ContentResource/d03887c5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/eea30138": { + "id": "vault://iiif-parser/v4/ContentResource/eea30138", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "id": "vault://iiif-parser/v4/ContentResource/eea30138", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b8ad8d1a": { + "id": "vault://iiif-parser/v4/ContentResource/b8ad8d1a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "id": "vault://iiif-parser/v4/ContentResource/b8ad8d1a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e6a0bbe6": { + "id": "vault://iiif-parser/v4/ContentResource/e6a0bbe6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "id": "vault://iiif-parser/v4/ContentResource/e6a0bbe6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3bd01e20": { + "id": "vault://iiif-parser/v4/ContentResource/3bd01e20", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ki", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "id": "vault://iiif-parser/v4/ContentResource/3bd01e20", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d99dd4ca": { + "id": "vault://iiif-parser/v4/ContentResource/d99dd4ca", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "id": "vault://iiif-parser/v4/ContentResource/d99dd4ca", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c037c0b6": { + "id": "vault://iiif-parser/v4/ContentResource/c037c0b6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "id": "vault://iiif-parser/v4/ContentResource/c037c0b6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1f87ea57": { + "id": "vault://iiif-parser/v4/ContentResource/1f87ea57", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "id": "vault://iiif-parser/v4/ContentResource/1f87ea57", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/77563be9": { + "id": "vault://iiif-parser/v4/ContentResource/77563be9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "id": "vault://iiif-parser/v4/ContentResource/77563be9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0b9d48e4": { + "id": "vault://iiif-parser/v4/ContentResource/0b9d48e4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "id": "vault://iiif-parser/v4/ContentResource/0b9d48e4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9f8f2a4b": { + "id": "vault://iiif-parser/v4/ContentResource/9f8f2a4b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "id": "vault://iiif-parser/v4/ContentResource/9f8f2a4b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a6770f37": { + "id": "vault://iiif-parser/v4/ContentResource/a6770f37", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "id": "vault://iiif-parser/v4/ContentResource/a6770f37", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c28e0735": { + "id": "vault://iiif-parser/v4/ContentResource/c28e0735", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "id": "vault://iiif-parser/v4/ContentResource/c28e0735", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9c002d68": { + "id": "vault://iiif-parser/v4/ContentResource/9c002d68", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "id": "vault://iiif-parser/v4/ContentResource/9c002d68", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f86e132a": { + "id": "vault://iiif-parser/v4/ContentResource/f86e132a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{gisz}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "id": "vault://iiif-parser/v4/ContentResource/f86e132a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/506339a3": { + "id": "vault://iiif-parser/v4/ContentResource/506339a3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "id": "vault://iiif-parser/v4/ContentResource/506339a3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b09b179f": { + "id": "vault://iiif-parser/v4/ContentResource/b09b179f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "id": "vault://iiif-parser/v4/ContentResource/b09b179f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/37fc763c": { + "id": "vault://iiif-parser/v4/ContentResource/37fc763c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "id": "vault://iiif-parser/v4/ContentResource/37fc763c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d9d9e700": { + "id": "vault://iiif-parser/v4/ContentResource/d9d9e700", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "id": "vault://iiif-parser/v4/ContentResource/d9d9e700", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cc7e5418": { + "id": "vault://iiif-parser/v4/ContentResource/cc7e5418", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "gigir", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "id": "vault://iiif-parser/v4/ContentResource/cc7e5418", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f7054f62": { + "id": "vault://iiif-parser/v4/ContentResource/f7054f62", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "id": "vault://iiif-parser/v4/ContentResource/f7054f62", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2fb1aa5e": { + "id": "vault://iiif-parser/v4/ContentResource/2fb1aa5e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "id": "vault://iiif-parser/v4/ContentResource/2fb1aa5e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/67fdbf1a": { + "id": "vault://iiif-parser/v4/ContentResource/67fdbf1a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "id": "vault://iiif-parser/v4/ContentResource/67fdbf1a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a4c85441": { + "id": "vault://iiif-parser/v4/ContentResource/a4c85441", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "id": "vault://iiif-parser/v4/ContentResource/a4c85441", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4bf8a564": { + "id": "vault://iiif-parser/v4/ContentResource/4bf8a564", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "id": "vault://iiif-parser/v4/ContentResource/4bf8a564", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9f7ae321": { + "id": "vault://iiif-parser/v4/ContentResource/9f7ae321", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "id": "vault://iiif-parser/v4/ContentResource/9f7ae321", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0a913f25": { + "id": "vault://iiif-parser/v4/ContentResource/0a913f25", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "id": "vault://iiif-parser/v4/ContentResource/0a913f25", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/adb0e8fc": { + "id": "vault://iiif-parser/v4/ContentResource/adb0e8fc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "id": "vault://iiif-parser/v4/ContentResource/adb0e8fc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ee5ca082": { + "id": "vault://iiif-parser/v4/ContentResource/ee5ca082", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "id": "vault://iiif-parser/v4/ContentResource/ee5ca082", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a5568fa5": { + "id": "vault://iiif-parser/v4/ContentResource/a5568fa5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "id": "vault://iiif-parser/v4/ContentResource/a5568fa5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/461cf8e0": { + "id": "vault://iiif-parser/v4/ContentResource/461cf8e0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "id": "vault://iiif-parser/v4/ContentResource/461cf8e0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b13354e4": { + "id": "vault://iiif-parser/v4/ContentResource/b13354e4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "id": "vault://iiif-parser/v4/ContentResource/b13354e4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fcb0f8de": { + "id": "vault://iiif-parser/v4/ContentResource/fcb0f8de", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "id": "vault://iiif-parser/v4/ContentResource/fcb0f8de", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0dd72ec3": { + "id": "vault://iiif-parser/v4/ContentResource/0dd72ec3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "id": "vault://iiif-parser/v4/ContentResource/0dd72ec3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/24c270f2": { + "id": "vault://iiif-parser/v4/ContentResource/24c270f2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "id": "vault://iiif-parser/v4/ContentResource/24c270f2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5de909a7": { + "id": "vault://iiif-parser/v4/ContentResource/5de909a7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "id": "vault://iiif-parser/v4/ContentResource/5de909a7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/adf3c5a3": { + "id": "vault://iiif-parser/v4/ContentResource/adf3c5a3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "id": "vault://iiif-parser/v4/ContentResource/adf3c5a3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2a76a638": { + "id": "vault://iiif-parser/v4/ContentResource/2a76a638", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "id": "vault://iiif-parser/v4/ContentResource/2a76a638", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e75fb704": { + "id": "vault://iiif-parser/v4/ContentResource/e75fb704", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "id": "vault://iiif-parser/v4/ContentResource/e75fb704", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8c1abc06": { + "id": "vault://iiif-parser/v4/ContentResource/8c1abc06", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ia", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "id": "vault://iiif-parser/v4/ContentResource/8c1abc06", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/048b1f66": { + "id": "vault://iiif-parser/v4/ContentResource/048b1f66", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "id": "vault://iiif-parser/v4/ContentResource/048b1f66", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5495db62": { + "id": "vault://iiif-parser/v4/ContentResource/5495db62", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "id": "vault://iiif-parser/v4/ContentResource/5495db62", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/75838f1e": { + "id": "vault://iiif-parser/v4/ContentResource/75838f1e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "id": "vault://iiif-parser/v4/ContentResource/75838f1e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b24e2445": { + "id": "vault://iiif-parser/v4/ContentResource/b24e2445", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "id": "vault://iiif-parser/v4/ContentResource/b24e2445", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/da02098a": { + "id": "vault://iiif-parser/v4/ContentResource/da02098a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "id": "vault://iiif-parser/v4/ContentResource/da02098a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ad00b325": { + "id": "vault://iiif-parser/v4/ContentResource/ad00b325", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "id": "vault://iiif-parser/v4/ContentResource/ad00b325", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9ecac300": { + "id": "vault://iiif-parser/v4/ContentResource/9ecac300", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "id": "vault://iiif-parser/v4/ContentResource/9ecac300", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a02b18f8": { + "id": "vault://iiif-parser/v4/ContentResource/a02b18f8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "id": "vault://iiif-parser/v4/ContentResource/a02b18f8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fbe27086": { + "id": "vault://iiif-parser/v4/ContentResource/fbe27086", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "id": "vault://iiif-parser/v4/ContentResource/fbe27086", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2ebf004c": { + "id": "vault://iiif-parser/v4/ContentResource/2ebf004c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "szi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "id": "vault://iiif-parser/v4/ContentResource/2ebf004c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/53a2c8e4": { + "id": "vault://iiif-parser/v4/ContentResource/53a2c8e4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "id": "vault://iiif-parser/v4/ContentResource/53a2c8e4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/69b93041": { + "id": "vault://iiif-parser/v4/ContentResource/69b93041", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "id": "vault://iiif-parser/v4/ContentResource/69b93041", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ef2b28da": { + "id": "vault://iiif-parser/v4/ContentResource/ef2b28da", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "id": "vault://iiif-parser/v4/ContentResource/ef2b28da", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1b5cfec7": { + "id": "vault://iiif-parser/v4/ContentResource/1b5cfec7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "id": "vault://iiif-parser/v4/ContentResource/1b5cfec7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/af211670": { + "id": "vault://iiif-parser/v4/ContentResource/af211670", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sa10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "id": "vault://iiif-parser/v4/ContentResource/af211670", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c430d1ab": { + "id": "vault://iiif-parser/v4/ContentResource/c430d1ab", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "id": "vault://iiif-parser/v4/ContentResource/c430d1ab", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/34a0e48e": { + "id": "vault://iiif-parser/v4/ContentResource/34a0e48e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "id": "vault://iiif-parser/v4/ContentResource/34a0e48e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c42ede34": { + "id": "vault://iiif-parser/v4/ContentResource/c42ede34", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "id": "vault://iiif-parser/v4/ContentResource/c42ede34", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4da77f08": { + "id": "vault://iiif-parser/v4/ContentResource/4da77f08", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "id": "vault://iiif-parser/v4/ContentResource/4da77f08", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e9793283": { + "id": "vault://iiif-parser/v4/ContentResource/e9793283", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "u4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "id": "vault://iiif-parser/v4/ContentResource/e9793283", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6ad2e76a": { + "id": "vault://iiif-parser/v4/ContentResource/6ad2e76a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "id": "vault://iiif-parser/v4/ContentResource/6ad2e76a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6114d72c": { + "id": "vault://iiif-parser/v4/ContentResource/6114d72c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "id": "vault://iiif-parser/v4/ContentResource/6114d72c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/442991b7": { + "id": "vault://iiif-parser/v4/ContentResource/442991b7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "id": "vault://iiif-parser/v4/ContentResource/442991b7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1895ec49": { + "id": "vault://iiif-parser/v4/ContentResource/1895ec49", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "id": "vault://iiif-parser/v4/ContentResource/1895ec49", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8ed51576": { + "id": "vault://iiif-parser/v4/ContentResource/8ed51576", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "kur2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "id": "vault://iiif-parser/v4/ContentResource/8ed51576", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f7c44a80": { + "id": "vault://iiif-parser/v4/ContentResource/f7c44a80", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "id": "vault://iiif-parser/v4/ContentResource/f7c44a80", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d5075ec6": { + "id": "vault://iiif-parser/v4/ContentResource/d5075ec6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "id": "vault://iiif-parser/v4/ContentResource/d5075ec6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ad509bfe": { + "id": "vault://iiif-parser/v4/ContentResource/ad509bfe", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "id": "vault://iiif-parser/v4/ContentResource/ad509bfe", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3278d623": { + "id": "vault://iiif-parser/v4/ContentResource/3278d623", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "id": "vault://iiif-parser/v4/ContentResource/3278d623", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/34116a96": { + "id": "vault://iiif-parser/v4/ContentResource/34116a96", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sze3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "id": "vault://iiif-parser/v4/ContentResource/34116a96", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b2cc6001": { + "id": "vault://iiif-parser/v4/ContentResource/b2cc6001", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "id": "vault://iiif-parser/v4/ContentResource/b2cc6001", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9af8b447": { + "id": "vault://iiif-parser/v4/ContentResource/9af8b447", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "id": "vault://iiif-parser/v4/ContentResource/9af8b447", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1fbc95de": { + "id": "vault://iiif-parser/v4/ContentResource/1fbc95de", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "id": "vault://iiif-parser/v4/ContentResource/1fbc95de", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4c3987a2": { + "id": "vault://iiif-parser/v4/ContentResource/4c3987a2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "id": "vault://iiif-parser/v4/ContentResource/4c3987a2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d7070709": { + "id": "vault://iiif-parser/v4/ContentResource/d7070709", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "inim", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "id": "vault://iiif-parser/v4/ContentResource/d7070709", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2bb19482": { + "id": "vault://iiif-parser/v4/ContentResource/2bb19482", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "id": "vault://iiif-parser/v4/ContentResource/2bb19482", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4c8df3c4": { + "id": "vault://iiif-parser/v4/ContentResource/4c8df3c4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "id": "vault://iiif-parser/v4/ContentResource/4c8df3c4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c5daa63a": { + "id": "vault://iiif-parser/v4/ContentResource/c5daa63a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "id": "vault://iiif-parser/v4/ContentResource/c5daa63a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6225ef21": { + "id": "vault://iiif-parser/v4/ContentResource/6225ef21", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "id": "vault://iiif-parser/v4/ContentResource/6225ef21", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/95a7b950": { + "id": "vault://iiif-parser/v4/ContentResource/95a7b950", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "id": "vault://iiif-parser/v4/ContentResource/95a7b950", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e6b9aa03": { + "id": "vault://iiif-parser/v4/ContentResource/e6b9aa03", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "id": "vault://iiif-parser/v4/ContentResource/e6b9aa03", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/127f4945": { + "id": "vault://iiif-parser/v4/ContentResource/127f4945", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "id": "vault://iiif-parser/v4/ContentResource/127f4945", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/78ad631a": { + "id": "vault://iiif-parser/v4/ContentResource/78ad631a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "id": "vault://iiif-parser/v4/ContentResource/78ad631a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6025b9a0": { + "id": "vault://iiif-parser/v4/ContentResource/6025b9a0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "id": "vault://iiif-parser/v4/ContentResource/6025b9a0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e172ad58": { + "id": "vault://iiif-parser/v4/ContentResource/e172ad58", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ga2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "id": "vault://iiif-parser/v4/ContentResource/e172ad58", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/054a1a84": { + "id": "vault://iiif-parser/v4/ContentResource/054a1a84", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "id": "vault://iiif-parser/v4/ContentResource/054a1a84", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c7818ec2": { + "id": "vault://iiif-parser/v4/ContentResource/c7818ec2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "id": "vault://iiif-parser/v4/ContentResource/c7818ec2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a03e4a7e": { + "id": "vault://iiif-parser/v4/ContentResource/a03e4a7e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "id": "vault://iiif-parser/v4/ContentResource/a03e4a7e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3ffea627": { + "id": "vault://iiif-parser/v4/ContentResource/3ffea627", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "id": "vault://iiif-parser/v4/ContentResource/3ffea627", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a76402d9": { + "id": "vault://iiif-parser/v4/ContentResource/a76402d9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ga2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "id": "vault://iiif-parser/v4/ContentResource/a76402d9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c0523005": { + "id": "vault://iiif-parser/v4/ContentResource/c0523005", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "id": "vault://iiif-parser/v4/ContentResource/c0523005", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8d72e443": { + "id": "vault://iiif-parser/v4/ContentResource/8d72e443", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "id": "vault://iiif-parser/v4/ContentResource/8d72e443", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/12aa445e": { + "id": "vault://iiif-parser/v4/ContentResource/12aa445e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "id": "vault://iiif-parser/v4/ContentResource/12aa445e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/59bf57a6": { + "id": "vault://iiif-parser/v4/ContentResource/59bf57a6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "id": "vault://iiif-parser/v4/ContentResource/59bf57a6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0db871d1": { + "id": "vault://iiif-parser/v4/ContentResource/0db871d1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "a", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "id": "vault://iiif-parser/v4/ContentResource/0db871d1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/39376486": { + "id": "vault://iiif-parser/v4/ContentResource/39376486", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "id": "vault://iiif-parser/v4/ContentResource/39376486", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3f0823c0": { + "id": "vault://iiif-parser/v4/ContentResource/3f0823c0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "id": "vault://iiif-parser/v4/ContentResource/3f0823c0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f38362b2": { + "id": "vault://iiif-parser/v4/ContentResource/f38362b2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "id": "vault://iiif-parser/v4/ContentResource/f38362b2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6fabbf25": { + "id": "vault://iiif-parser/v4/ContentResource/6fabbf25", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "front", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "id": "vault://iiif-parser/v4/ContentResource/6fabbf25", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bbf6aa23": { + "id": "vault://iiif-parser/v4/ContentResource/bbf6aa23", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ma", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "id": "vault://iiif-parser/v4/ContentResource/bbf6aa23", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f43f7a07": { + "id": "vault://iiif-parser/v4/ContentResource/f43f7a07", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "id": "vault://iiif-parser/v4/ContentResource/f43f7a07", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aa2260f3": { + "id": "vault://iiif-parser/v4/ContentResource/aa2260f3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "id": "vault://iiif-parser/v4/ContentResource/aa2260f3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/85bfb49a": { + "id": "vault://iiif-parser/v4/ContentResource/85bfb49a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "id": "vault://iiif-parser/v4/ContentResource/85bfb49a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f7bfe4ce": { + "id": "vault://iiif-parser/v4/ContentResource/f7bfe4ce", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "id": "vault://iiif-parser/v4/ContentResource/f7bfe4ce", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/da0ed4e2": { + "id": "vault://iiif-parser/v4/ContentResource/da0ed4e2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "id": "vault://iiif-parser/v4/ContentResource/da0ed4e2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6b91e288": { + "id": "vault://iiif-parser/v4/ContentResource/6b91e288", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "id": "vault://iiif-parser/v4/ContentResource/6b91e288", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/640bec7c": { + "id": "vault://iiif-parser/v4/ContentResource/640bec7c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "id": "vault://iiif-parser/v4/ContentResource/640bec7c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/398303f6": { + "id": "vault://iiif-parser/v4/ContentResource/398303f6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "id": "vault://iiif-parser/v4/ContentResource/398303f6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b3e46741": { + "id": "vault://iiif-parser/v4/ContentResource/b3e46741", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "id": "vault://iiif-parser/v4/ContentResource/b3e46741", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fcadd792": { + "id": "vault://iiif-parser/v4/ContentResource/fcadd792", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "lugal", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "id": "vault://iiif-parser/v4/ContentResource/fcadd792", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2699f809": { + "id": "vault://iiif-parser/v4/ContentResource/2699f809", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "id": "vault://iiif-parser/v4/ContentResource/2699f809", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3f61fafd": { + "id": "vault://iiif-parser/v4/ContentResource/3f61fafd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "id": "vault://iiif-parser/v4/ContentResource/3f61fafd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/abeefdd6": { + "id": "vault://iiif-parser/v4/ContentResource/abeefdd6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "id": "vault://iiif-parser/v4/ContentResource/abeefdd6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/edf311c0": { + "id": "vault://iiif-parser/v4/ContentResource/edf311c0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "id": "vault://iiif-parser/v4/ContentResource/edf311c0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/576cd085": { + "id": "vault://iiif-parser/v4/ContentResource/576cd085", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "mar2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "id": "vault://iiif-parser/v4/ContentResource/576cd085", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/21730761": { + "id": "vault://iiif-parser/v4/ContentResource/21730761", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "id": "vault://iiif-parser/v4/ContentResource/21730761", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6cd41355": { + "id": "vault://iiif-parser/v4/ContentResource/6cd41355", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "id": "vault://iiif-parser/v4/ContentResource/6cd41355", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0e831b19": { + "id": "vault://iiif-parser/v4/ContentResource/0e831b19", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "id": "vault://iiif-parser/v4/ContentResource/0e831b19", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ab1c4068": { + "id": "vault://iiif-parser/v4/ContentResource/ab1c4068", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "id": "vault://iiif-parser/v4/ContentResource/ab1c4068", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6baaa8ed": { + "id": "vault://iiif-parser/v4/ContentResource/6baaa8ed", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "id": "vault://iiif-parser/v4/ContentResource/6baaa8ed", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7e101d20": { + "id": "vault://iiif-parser/v4/ContentResource/7e101d20", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "id": "vault://iiif-parser/v4/ContentResource/7e101d20", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a1e5a614": { + "id": "vault://iiif-parser/v4/ContentResource/a1e5a614", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "id": "vault://iiif-parser/v4/ContentResource/a1e5a614", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6e6ed5f9": { + "id": "vault://iiif-parser/v4/ContentResource/6e6ed5f9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "id": "vault://iiif-parser/v4/ContentResource/6e6ed5f9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/047a2aa9": { + "id": "vault://iiif-parser/v4/ContentResource/047a2aa9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "id": "vault://iiif-parser/v4/ContentResource/047a2aa9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/464103cd": { + "id": "vault://iiif-parser/v4/ContentResource/464103cd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "u3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "id": "vault://iiif-parser/v4/ContentResource/464103cd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0d86d563": { + "id": "vault://iiif-parser/v4/ContentResource/0d86d563", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "id": "vault://iiif-parser/v4/ContentResource/0d86d563", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e6b9cd94": { + "id": "vault://iiif-parser/v4/ContentResource/e6b9cd94", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "id": "vault://iiif-parser/v4/ContentResource/e6b9cd94", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d1b7db3e": { + "id": "vault://iiif-parser/v4/ContentResource/d1b7db3e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "id": "vault://iiif-parser/v4/ContentResource/d1b7db3e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7b6f276a": { + "id": "vault://iiif-parser/v4/ContentResource/7b6f276a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "id": "vault://iiif-parser/v4/ContentResource/7b6f276a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/612b5f0c": { + "id": "vault://iiif-parser/v4/ContentResource/612b5f0c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "su", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "id": "vault://iiif-parser/v4/ContentResource/612b5f0c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6a23eb22": { + "id": "vault://iiif-parser/v4/ContentResource/6a23eb22", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "id": "vault://iiif-parser/v4/ContentResource/6a23eb22", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b1a83ad5": { + "id": "vault://iiif-parser/v4/ContentResource/b1a83ad5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "id": "vault://iiif-parser/v4/ContentResource/b1a83ad5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8ea5069c": { + "id": "vault://iiif-parser/v4/ContentResource/8ea5069c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "id": "vault://iiif-parser/v4/ContentResource/8ea5069c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b20241b5": { + "id": "vault://iiif-parser/v4/ContentResource/b20241b5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "id": "vault://iiif-parser/v4/ContentResource/b20241b5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b8801095": { + "id": "vault://iiif-parser/v4/ContentResource/b8801095", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "mu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "id": "vault://iiif-parser/v4/ContentResource/b8801095", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2ef8d765": { + "id": "vault://iiif-parser/v4/ContentResource/2ef8d765", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "id": "vault://iiif-parser/v4/ContentResource/2ef8d765", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0d214792": { + "id": "vault://iiif-parser/v4/ContentResource/0d214792", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "id": "vault://iiif-parser/v4/ContentResource/0d214792", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a36bd87a": { + "id": "vault://iiif-parser/v4/ContentResource/a36bd87a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "id": "vault://iiif-parser/v4/ContentResource/a36bd87a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b8a2106c": { + "id": "vault://iiif-parser/v4/ContentResource/b8a2106c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "id": "vault://iiif-parser/v4/ContentResource/b8a2106c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1639f137": { + "id": "vault://iiif-parser/v4/ContentResource/1639f137", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "id": "vault://iiif-parser/v4/ContentResource/1639f137", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8b95ed24": { + "id": "vault://iiif-parser/v4/ContentResource/8b95ed24", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "id": "vault://iiif-parser/v4/ContentResource/8b95ed24", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2c9bd5d3": { + "id": "vault://iiif-parser/v4/ContentResource/2c9bd5d3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "id": "vault://iiif-parser/v4/ContentResource/2c9bd5d3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/46935cdc": { + "id": "vault://iiif-parser/v4/ContentResource/46935cdc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "id": "vault://iiif-parser/v4/ContentResource/46935cdc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/11fffaad": { + "id": "vault://iiif-parser/v4/ContentResource/11fffaad", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "id": "vault://iiif-parser/v4/ContentResource/11fffaad", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/152a7797": { + "id": "vault://iiif-parser/v4/ContentResource/152a7797", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "id": "vault://iiif-parser/v4/ContentResource/152a7797", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1b0ca567": { + "id": "vault://iiif-parser/v4/ContentResource/1b0ca567", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "id": "vault://iiif-parser/v4/ContentResource/1b0ca567", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d933fd90": { + "id": "vault://iiif-parser/v4/ContentResource/d933fd90", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "id": "vault://iiif-parser/v4/ContentResource/d933fd90", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c4a589be": { + "id": "vault://iiif-parser/v4/ContentResource/c4a589be", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "id": "vault://iiif-parser/v4/ContentResource/c4a589be", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/88f4f76e": { + "id": "vault://iiif-parser/v4/ContentResource/88f4f76e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "id": "vault://iiif-parser/v4/ContentResource/88f4f76e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6c0d4d6f": { + "id": "vault://iiif-parser/v4/ContentResource/6c0d4d6f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "hi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "id": "vault://iiif-parser/v4/ContentResource/6c0d4d6f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/77a9bb26": { + "id": "vault://iiif-parser/v4/ContentResource/77a9bb26", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "id": "vault://iiif-parser/v4/ContentResource/77a9bb26", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a4226ad1": { + "id": "vault://iiif-parser/v4/ContentResource/a4226ad1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "id": "vault://iiif-parser/v4/ContentResource/a4226ad1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8192b51c": { + "id": "vault://iiif-parser/v4/ContentResource/8192b51c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "id": "vault://iiif-parser/v4/ContentResource/8192b51c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e252e1af": { + "id": "vault://iiif-parser/v4/ContentResource/e252e1af", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "id": "vault://iiif-parser/v4/ContentResource/e252e1af", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/833e2d05": { + "id": "vault://iiif-parser/v4/ContentResource/833e2d05", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "im", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "id": "vault://iiif-parser/v4/ContentResource/833e2d05", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/95409f69": { + "id": "vault://iiif-parser/v4/ContentResource/95409f69", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "id": "vault://iiif-parser/v4/ContentResource/95409f69", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8e74af9e": { + "id": "vault://iiif-parser/v4/ContentResource/8e74af9e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "id": "vault://iiif-parser/v4/ContentResource/8e74af9e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/228beef2": { + "id": "vault://iiif-parser/v4/ContentResource/228beef2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "id": "vault://iiif-parser/v4/ContentResource/228beef2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/374ea860": { + "id": "vault://iiif-parser/v4/ContentResource/374ea860", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "id": "vault://iiif-parser/v4/ContentResource/374ea860", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4e2ce787": { + "id": "vault://iiif-parser/v4/ContentResource/4e2ce787", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "id": "vault://iiif-parser/v4/ContentResource/4e2ce787", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f1ddb528": { + "id": "vault://iiif-parser/v4/ContentResource/f1ddb528", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "id": "vault://iiif-parser/v4/ContentResource/f1ddb528", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/474ab79e": { + "id": "vault://iiif-parser/v4/ContentResource/474ab79e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "id": "vault://iiif-parser/v4/ContentResource/474ab79e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/15395f75": { + "id": "vault://iiif-parser/v4/ContentResource/15395f75", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "id": "vault://iiif-parser/v4/ContentResource/15395f75", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/90ac92a1": { + "id": "vault://iiif-parser/v4/ContentResource/90ac92a1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "id": "vault://iiif-parser/v4/ContentResource/90ac92a1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3de3a361": { + "id": "vault://iiif-parser/v4/ContentResource/3de3a361", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "id": "vault://iiif-parser/v4/ContentResource/3de3a361", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4563564e": { + "id": "vault://iiif-parser/v4/ContentResource/4563564e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "id": "vault://iiif-parser/v4/ContentResource/4563564e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/caf89138": { + "id": "vault://iiif-parser/v4/ContentResource/caf89138", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "id": "vault://iiif-parser/v4/ContentResource/caf89138", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/54c85030": { + "id": "vault://iiif-parser/v4/ContentResource/54c85030", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "id": "vault://iiif-parser/v4/ContentResource/54c85030", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f3d68000": { + "id": "vault://iiif-parser/v4/ContentResource/f3d68000", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ru", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "id": "vault://iiif-parser/v4/ContentResource/f3d68000", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0b54abcf": { + "id": "vault://iiif-parser/v4/ContentResource/0b54abcf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "id": "vault://iiif-parser/v4/ContentResource/0b54abcf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ccf8c6b9": { + "id": "vault://iiif-parser/v4/ContentResource/ccf8c6b9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "id": "vault://iiif-parser/v4/ContentResource/ccf8c6b9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d21d8a10": { + "id": "vault://iiif-parser/v4/ContentResource/d21d8a10", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "id": "vault://iiif-parser/v4/ContentResource/d21d8a10", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0afe8386": { + "id": "vault://iiif-parser/v4/ContentResource/0afe8386", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "id": "vault://iiif-parser/v4/ContentResource/0afe8386", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8b6f5916": { + "id": "vault://iiif-parser/v4/ContentResource/8b6f5916", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "de3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "id": "vault://iiif-parser/v4/ContentResource/8b6f5916", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dc547bcc": { + "id": "vault://iiif-parser/v4/ContentResource/dc547bcc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "id": "vault://iiif-parser/v4/ContentResource/dc547bcc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/97a1ceba": { + "id": "vault://iiif-parser/v4/ContentResource/97a1ceba", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "id": "vault://iiif-parser/v4/ContentResource/97a1ceba", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1c215b74": { + "id": "vault://iiif-parser/v4/ContentResource/1c215b74", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "id": "vault://iiif-parser/v4/ContentResource/1c215b74", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b183df85": { + "id": "vault://iiif-parser/v4/ContentResource/b183df85", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "id": "vault://iiif-parser/v4/ContentResource/b183df85", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d463b589": { + "id": "vault://iiif-parser/v4/ContentResource/d463b589", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "esz", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "id": "vault://iiif-parser/v4/ContentResource/d463b589", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a245d14d": { + "id": "vault://iiif-parser/v4/ContentResource/a245d14d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "id": "vault://iiif-parser/v4/ContentResource/a245d14d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7de11d3b": { + "id": "vault://iiif-parser/v4/ContentResource/7de11d3b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "id": "vault://iiif-parser/v4/ContentResource/7de11d3b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c40ad854": { + "id": "vault://iiif-parser/v4/ContentResource/c40ad854", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "id": "vault://iiif-parser/v4/ContentResource/c40ad854", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f67bca04": { + "id": "vault://iiif-parser/v4/ContentResource/f67bca04", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "id": "vault://iiif-parser/v4/ContentResource/f67bca04", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8a3e9465": { + "id": "vault://iiif-parser/v4/ContentResource/8a3e9465", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "id": "vault://iiif-parser/v4/ContentResource/8a3e9465", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f908654a": { + "id": "vault://iiif-parser/v4/ContentResource/f908654a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "id": "vault://iiif-parser/v4/ContentResource/f908654a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a447cfbb": { + "id": "vault://iiif-parser/v4/ContentResource/a447cfbb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "id": "vault://iiif-parser/v4/ContentResource/a447cfbb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1d59d7": { + "id": "vault://iiif-parser/v4/ContentResource/1d59d7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "id": "vault://iiif-parser/v4/ContentResource/1d59d7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b6cb989d": { + "id": "vault://iiif-parser/v4/ContentResource/b6cb989d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "id": "vault://iiif-parser/v4/ContentResource/b6cb989d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/112b5b2b": { + "id": "vault://iiif-parser/v4/ContentResource/112b5b2b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sza", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "id": "vault://iiif-parser/v4/ContentResource/112b5b2b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bef9bacb": { + "id": "vault://iiif-parser/v4/ContentResource/bef9bacb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "id": "vault://iiif-parser/v4/ContentResource/bef9bacb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/be08813a": { + "id": "vault://iiif-parser/v4/ContentResource/be08813a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "id": "vault://iiif-parser/v4/ContentResource/be08813a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a32376b5": { + "id": "vault://iiif-parser/v4/ContentResource/a32376b5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "id": "vault://iiif-parser/v4/ContentResource/a32376b5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bea39282": { + "id": "vault://iiif-parser/v4/ContentResource/bea39282", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "id": "vault://iiif-parser/v4/ContentResource/bea39282", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9a8c900b": { + "id": "vault://iiif-parser/v4/ContentResource/9a8c900b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "id": "vault://iiif-parser/v4/ContentResource/9a8c900b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8ff98ac8": { + "id": "vault://iiif-parser/v4/ContentResource/8ff98ac8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "id": "vault://iiif-parser/v4/ContentResource/8ff98ac8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f35f7939": { + "id": "vault://iiif-parser/v4/ContentResource/f35f7939", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "id": "vault://iiif-parser/v4/ContentResource/f35f7939", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ee034a17": { + "id": "vault://iiif-parser/v4/ContentResource/ee034a17", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "id": "vault://iiif-parser/v4/ContentResource/ee034a17", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6528ee81": { + "id": "vault://iiif-parser/v4/ContentResource/6528ee81", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "id": "vault://iiif-parser/v4/ContentResource/6528ee81", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f943315b": { + "id": "vault://iiif-parser/v4/ContentResource/f943315b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "gi4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "id": "vault://iiif-parser/v4/ContentResource/f943315b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/55eae049": { + "id": "vault://iiif-parser/v4/ContentResource/55eae049", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "id": "vault://iiif-parser/v4/ContentResource/55eae049", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f15f43b8": { + "id": "vault://iiif-parser/v4/ContentResource/f15f43b8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "id": "vault://iiif-parser/v4/ContentResource/f15f43b8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ab1c78f1": { + "id": "vault://iiif-parser/v4/ContentResource/ab1c78f1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "id": "vault://iiif-parser/v4/ContentResource/ab1c78f1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aa20d900": { + "id": "vault://iiif-parser/v4/ContentResource/aa20d900", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "id": "vault://iiif-parser/v4/ContentResource/aa20d900", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/08bfd395": { + "id": "vault://iiif-parser/v4/ContentResource/08bfd395", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ri", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "id": "vault://iiif-parser/v4/ContentResource/08bfd395", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/53eb7c46": { + "id": "vault://iiif-parser/v4/ContentResource/53eb7c46", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "id": "vault://iiif-parser/v4/ContentResource/53eb7c46", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ff2ae6b7": { + "id": "vault://iiif-parser/v4/ContentResource/ff2ae6b7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "id": "vault://iiif-parser/v4/ContentResource/ff2ae6b7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e482e25f": { + "id": "vault://iiif-parser/v4/ContentResource/e482e25f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "id": "vault://iiif-parser/v4/ContentResource/e482e25f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b77e730f": { + "id": "vault://iiif-parser/v4/ContentResource/b77e730f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "id": "vault://iiif-parser/v4/ContentResource/b77e730f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9cf481f5": { + "id": "vault://iiif-parser/v4/ContentResource/9cf481f5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "is", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "id": "vault://iiif-parser/v4/ContentResource/9cf481f5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/19dcd1c7": { + "id": "vault://iiif-parser/v4/ContentResource/19dcd1c7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "id": "vault://iiif-parser/v4/ContentResource/19dcd1c7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/18eb9836": { + "id": "vault://iiif-parser/v4/ContentResource/18eb9836", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "id": "vault://iiif-parser/v4/ContentResource/18eb9836", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8788ff3d": { + "id": "vault://iiif-parser/v4/ContentResource/8788ff3d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "id": "vault://iiif-parser/v4/ContentResource/8788ff3d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fc765d8e": { + "id": "vault://iiif-parser/v4/ContentResource/fc765d8e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "id": "vault://iiif-parser/v4/ContentResource/fc765d8e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/01b7f04e": { + "id": "vault://iiif-parser/v4/ContentResource/01b7f04e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "id": "vault://iiif-parser/v4/ContentResource/01b7f04e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2ff6532f": { + "id": "vault://iiif-parser/v4/ContentResource/2ff6532f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "id": "vault://iiif-parser/v4/ContentResource/2ff6532f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/060fc3de": { + "id": "vault://iiif-parser/v4/ContentResource/060fc3de", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "id": "vault://iiif-parser/v4/ContentResource/060fc3de", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/97b1fc34": { + "id": "vault://iiif-parser/v4/ContentResource/97b1fc34", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "id": "vault://iiif-parser/v4/ContentResource/97b1fc34", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4970da26": { + "id": "vault://iiif-parser/v4/ContentResource/4970da26", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "id": "vault://iiif-parser/v4/ContentResource/4970da26", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5b170a6e": { + "id": "vault://iiif-parser/v4/ContentResource/5b170a6e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "mil", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "id": "vault://iiif-parser/v4/ContentResource/5b170a6e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d69868ee": { + "id": "vault://iiif-parser/v4/ContentResource/d69868ee", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "id": "vault://iiif-parser/v4/ContentResource/d69868ee", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/86f9311f": { + "id": "vault://iiif-parser/v4/ContentResource/86f9311f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "id": "vault://iiif-parser/v4/ContentResource/86f9311f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/28dea41a": { + "id": "vault://iiif-parser/v4/ContentResource/28dea41a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "id": "vault://iiif-parser/v4/ContentResource/28dea41a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ecd3c467": { + "id": "vault://iiif-parser/v4/ContentResource/ecd3c467", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "id": "vault://iiif-parser/v4/ContentResource/ecd3c467", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9873de87": { + "id": "vault://iiif-parser/v4/ContentResource/9873de87", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "id": "vault://iiif-parser/v4/ContentResource/9873de87", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7f0dfcad": { + "id": "vault://iiif-parser/v4/ContentResource/7f0dfcad", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "id": "vault://iiif-parser/v4/ContentResource/7f0dfcad", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9d00e95c": { + "id": "vault://iiif-parser/v4/ContentResource/9d00e95c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "id": "vault://iiif-parser/v4/ContentResource/9d00e95c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/53f9ac78": { + "id": "vault://iiif-parser/v4/ContentResource/53f9ac78", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "id": "vault://iiif-parser/v4/ContentResource/53f9ac78", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7cc79ca4": { + "id": "vault://iiif-parser/v4/ContentResource/7cc79ca4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "id": "vault://iiif-parser/v4/ContentResource/7cc79ca4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9b6e33cf": { + "id": "vault://iiif-parser/v4/ContentResource/9b6e33cf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "id": "vault://iiif-parser/v4/ContentResource/9b6e33cf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/25b0126c": { + "id": "vault://iiif-parser/v4/ContentResource/25b0126c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "id": "vault://iiif-parser/v4/ContentResource/25b0126c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7276779d": { + "id": "vault://iiif-parser/v4/ContentResource/7276779d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "id": "vault://iiif-parser/v4/ContentResource/7276779d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6f0b4881": { + "id": "vault://iiif-parser/v4/ContentResource/6f0b4881", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "id": "vault://iiif-parser/v4/ContentResource/6f0b4881", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/202a86e5": { + "id": "vault://iiif-parser/v4/ContentResource/202a86e5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "id": "vault://iiif-parser/v4/ContentResource/202a86e5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e766c0ac": { + "id": "vault://iiif-parser/v4/ContentResource/e766c0ac", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "id": "vault://iiif-parser/v4/ContentResource/e766c0ac", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e39b622b": { + "id": "vault://iiif-parser/v4/ContentResource/e39b622b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "id": "vault://iiif-parser/v4/ContentResource/e39b622b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b9b4d2da": { + "id": "vault://iiif-parser/v4/ContentResource/b9b4d2da", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "id": "vault://iiif-parser/v4/ContentResource/b9b4d2da", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d3a86407": { + "id": "vault://iiif-parser/v4/ContentResource/d3a86407", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "id": "vault://iiif-parser/v4/ContentResource/d3a86407", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fd15e922": { + "id": "vault://iiif-parser/v4/ContentResource/fd15e922", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "id": "vault://iiif-parser/v4/ContentResource/fd15e922", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2b7e44c5": { + "id": "vault://iiif-parser/v4/ContentResource/2b7e44c5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "id": "vault://iiif-parser/v4/ContentResource/2b7e44c5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8a3d77ea": { + "id": "vault://iiif-parser/v4/ContentResource/8a3d77ea", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "id": "vault://iiif-parser/v4/ContentResource/8a3d77ea", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/24e81cda": { + "id": "vault://iiif-parser/v4/ContentResource/24e81cda", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "id": "vault://iiif-parser/v4/ContentResource/24e81cda", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/24bf0137": { + "id": "vault://iiif-parser/v4/ContentResource/24bf0137", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "id": "vault://iiif-parser/v4/ContentResource/24bf0137", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a078d363": { + "id": "vault://iiif-parser/v4/ContentResource/a078d363", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "id": "vault://iiif-parser/v4/ContentResource/a078d363", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5602ebae": { + "id": "vault://iiif-parser/v4/ContentResource/5602ebae", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "id": "vault://iiif-parser/v4/ContentResource/5602ebae", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/32b30ba9": { + "id": "vault://iiif-parser/v4/ContentResource/32b30ba9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "id": "vault://iiif-parser/v4/ContentResource/32b30ba9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/914ed099": { + "id": "vault://iiif-parser/v4/ContentResource/914ed099", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "id": "vault://iiif-parser/v4/ContentResource/914ed099", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ea623d97": { + "id": "vault://iiif-parser/v4/ContentResource/ea623d97", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "id": "vault://iiif-parser/v4/ContentResource/ea623d97", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4eb8933e": { + "id": "vault://iiif-parser/v4/ContentResource/4eb8933e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "id": "vault://iiif-parser/v4/ContentResource/4eb8933e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c159bb6b": { + "id": "vault://iiif-parser/v4/ContentResource/c159bb6b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "id": "vault://iiif-parser/v4/ContentResource/c159bb6b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d9552168": { + "id": "vault://iiif-parser/v4/ContentResource/d9552168", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "id": "vault://iiif-parser/v4/ContentResource/d9552168", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bbd94258": { + "id": "vault://iiif-parser/v4/ContentResource/bbd94258", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "id": "vault://iiif-parser/v4/ContentResource/bbd94258", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/14d07577": { + "id": "vault://iiif-parser/v4/ContentResource/14d07577", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "id": "vault://iiif-parser/v4/ContentResource/14d07577", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d3cf95e1": { + "id": "vault://iiif-parser/v4/ContentResource/d3cf95e1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "id": "vault://iiif-parser/v4/ContentResource/d3cf95e1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7568ff0d": { + "id": "vault://iiif-parser/v4/ContentResource/7568ff0d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "id": "vault://iiif-parser/v4/ContentResource/7568ff0d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3e7e7927": { + "id": "vault://iiif-parser/v4/ContentResource/3e7e7927", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "id": "vault://iiif-parser/v4/ContentResource/3e7e7927", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b4a117": { + "id": "vault://iiif-parser/v4/ContentResource/b4a117", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "id": "vault://iiif-parser/v4/ContentResource/b4a117", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f33dcedf": { + "id": "vault://iiif-parser/v4/ContentResource/f33dcedf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "id": "vault://iiif-parser/v4/ContentResource/f33dcedf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3ae8b42e": { + "id": "vault://iiif-parser/v4/ContentResource/3ae8b42e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "id": "vault://iiif-parser/v4/ContentResource/3ae8b42e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/40e77f45": { + "id": "vault://iiif-parser/v4/ContentResource/40e77f45", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "id": "vault://iiif-parser/v4/ContentResource/40e77f45", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e5208ee6": { + "id": "vault://iiif-parser/v4/ContentResource/e5208ee6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "id": "vault://iiif-parser/v4/ContentResource/e5208ee6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7fcb33d6": { + "id": "vault://iiif-parser/v4/ContentResource/7fcb33d6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "id": "vault://iiif-parser/v4/ContentResource/7fcb33d6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/092489bf": { + "id": "vault://iiif-parser/v4/ContentResource/092489bf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "id": "vault://iiif-parser/v4/ContentResource/092489bf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/de4b9e6f": { + "id": "vault://iiif-parser/v4/ContentResource/de4b9e6f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "id": "vault://iiif-parser/v4/ContentResource/de4b9e6f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/03013f10": { + "id": "vault://iiif-parser/v4/ContentResource/03013f10", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "id": "vault://iiif-parser/v4/ContentResource/03013f10", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a1a41d77": { + "id": "vault://iiif-parser/v4/ContentResource/a1a41d77", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "id": "vault://iiif-parser/v4/ContentResource/a1a41d77", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/16273387": { + "id": "vault://iiif-parser/v4/ContentResource/16273387", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "id": "vault://iiif-parser/v4/ContentResource/16273387", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fac5f379": { + "id": "vault://iiif-parser/v4/ContentResource/fac5f379", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "id": "vault://iiif-parser/v4/ContentResource/fac5f379", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9910372a": { + "id": "vault://iiif-parser/v4/ContentResource/9910372a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "id": "vault://iiif-parser/v4/ContentResource/9910372a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c66a4817": { + "id": "vault://iiif-parser/v4/ContentResource/c66a4817", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "id": "vault://iiif-parser/v4/ContentResource/c66a4817", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ae66c016": { + "id": "vault://iiif-parser/v4/ContentResource/ae66c016", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "id": "vault://iiif-parser/v4/ContentResource/ae66c016", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/94e5f8a6": { + "id": "vault://iiif-parser/v4/ContentResource/94e5f8a6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "id": "vault://iiif-parser/v4/ContentResource/94e5f8a6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ba77e46d": { + "id": "vault://iiif-parser/v4/ContentResource/ba77e46d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "id": "vault://iiif-parser/v4/ContentResource/ba77e46d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6c5010bf": { + "id": "vault://iiif-parser/v4/ContentResource/6c5010bf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "id": "vault://iiif-parser/v4/ContentResource/6c5010bf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/17e86ada": { + "id": "vault://iiif-parser/v4/ContentResource/17e86ada", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "id": "vault://iiif-parser/v4/ContentResource/17e86ada", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/49abc3b5": { + "id": "vault://iiif-parser/v4/ContentResource/49abc3b5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "id": "vault://iiif-parser/v4/ContentResource/49abc3b5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0833d9c5": { + "id": "vault://iiif-parser/v4/ContentResource/0833d9c5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "id": "vault://iiif-parser/v4/ContentResource/0833d9c5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b604a881": { + "id": "vault://iiif-parser/v4/ContentResource/b604a881", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "id": "vault://iiif-parser/v4/ContentResource/b604a881", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/185c9d9c": { + "id": "vault://iiif-parser/v4/ContentResource/185c9d9c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "id": "vault://iiif-parser/v4/ContentResource/185c9d9c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f3a59eb1": { + "id": "vault://iiif-parser/v4/ContentResource/f3a59eb1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "id": "vault://iiif-parser/v4/ContentResource/f3a59eb1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/958a2654": { + "id": "vault://iiif-parser/v4/ContentResource/958a2654", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "id": "vault://iiif-parser/v4/ContentResource/958a2654", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/86f29ee4": { + "id": "vault://iiif-parser/v4/ContentResource/86f29ee4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "id": "vault://iiif-parser/v4/ContentResource/86f29ee4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ae983b21": { + "id": "vault://iiif-parser/v4/ContentResource/ae983b21", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "id": "vault://iiif-parser/v4/ContentResource/ae983b21", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/537376fd": { + "id": "vault://iiif-parser/v4/ContentResource/537376fd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "id": "vault://iiif-parser/v4/ContentResource/537376fd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f2086a80": { + "id": "vault://iiif-parser/v4/ContentResource/f2086a80", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "id": "vault://iiif-parser/v4/ContentResource/f2086a80", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/488c8bf3": { + "id": "vault://iiif-parser/v4/ContentResource/488c8bf3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "id": "vault://iiif-parser/v4/ContentResource/488c8bf3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bd0fa203": { + "id": "vault://iiif-parser/v4/ContentResource/bd0fa203", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "id": "vault://iiif-parser/v4/ContentResource/bd0fa203", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b62ac3be": { + "id": "vault://iiif-parser/v4/ContentResource/b62ac3be", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "id": "vault://iiif-parser/v4/ContentResource/b62ac3be", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/173d65da": { + "id": "vault://iiif-parser/v4/ContentResource/173d65da", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "id": "vault://iiif-parser/v4/ContentResource/173d65da", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/687ac962": { + "id": "vault://iiif-parser/v4/ContentResource/687ac962", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "id": "vault://iiif-parser/v4/ContentResource/687ac962", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/554f2e92": { + "id": "vault://iiif-parser/v4/ContentResource/554f2e92", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "id": "vault://iiif-parser/v4/ContentResource/554f2e92", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3bce6722": { + "id": "vault://iiif-parser/v4/ContentResource/3bce6722", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "id": "vault://iiif-parser/v4/ContentResource/3bce6722", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/31d854be": { + "id": "vault://iiif-parser/v4/ContentResource/31d854be", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "id": "vault://iiif-parser/v4/ContentResource/31d854be", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/13387f3b": { + "id": "vault://iiif-parser/v4/ContentResource/13387f3b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "id": "vault://iiif-parser/v4/ContentResource/13387f3b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bf87e3fe": { + "id": "vault://iiif-parser/v4/ContentResource/bf87e3fe", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "id": "vault://iiif-parser/v4/ContentResource/bf87e3fe", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f0943231": { + "id": "vault://iiif-parser/v4/ContentResource/f0943231", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "id": "vault://iiif-parser/v4/ContentResource/f0943231", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1b277ea2": { + "id": "vault://iiif-parser/v4/ContentResource/1b277ea2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "id": "vault://iiif-parser/v4/ContentResource/1b277ea2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8cfe234c": { + "id": "vault://iiif-parser/v4/ContentResource/8cfe234c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "id": "vault://iiif-parser/v4/ContentResource/8cfe234c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bf450c18": { + "id": "vault://iiif-parser/v4/ContentResource/bf450c18", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "id": "vault://iiif-parser/v4/ContentResource/bf450c18", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b89468d5": { + "id": "vault://iiif-parser/v4/ContentResource/b89468d5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ku3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "id": "vault://iiif-parser/v4/ContentResource/b89468d5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3c7294d0": { + "id": "vault://iiif-parser/v4/ContentResource/3c7294d0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "id": "vault://iiif-parser/v4/ContentResource/3c7294d0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9c68b983": { + "id": "vault://iiif-parser/v4/ContentResource/9c68b983", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "id": "vault://iiif-parser/v4/ContentResource/9c68b983", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0e9b7c2e": { + "id": "vault://iiif-parser/v4/ContentResource/0e9b7c2e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "id": "vault://iiif-parser/v4/ContentResource/0e9b7c2e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fa5be579": { + "id": "vault://iiif-parser/v4/ContentResource/fa5be579", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "id": "vault://iiif-parser/v4/ContentResource/fa5be579", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a90ca955": { + "id": "vault://iiif-parser/v4/ContentResource/a90ca955", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "id": "vault://iiif-parser/v4/ContentResource/a90ca955", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fbf8747f": { + "id": "vault://iiif-parser/v4/ContentResource/fbf8747f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "id": "vault://iiif-parser/v4/ContentResource/fbf8747f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c0a00d6c": { + "id": "vault://iiif-parser/v4/ContentResource/c0a00d6c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "id": "vault://iiif-parser/v4/ContentResource/c0a00d6c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7b51a400": { + "id": "vault://iiif-parser/v4/ContentResource/7b51a400", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "id": "vault://iiif-parser/v4/ContentResource/7b51a400", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1600a056": { + "id": "vault://iiif-parser/v4/ContentResource/1600a056", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "id": "vault://iiif-parser/v4/ContentResource/1600a056", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a8f7b31f": { + "id": "vault://iiif-parser/v4/ContentResource/a8f7b31f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nin", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "id": "vault://iiif-parser/v4/ContentResource/a8f7b31f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/08bb171e": { + "id": "vault://iiif-parser/v4/ContentResource/08bb171e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "id": "vault://iiif-parser/v4/ContentResource/08bb171e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/41e1484d": { + "id": "vault://iiif-parser/v4/ContentResource/41e1484d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "id": "vault://iiif-parser/v4/ContentResource/41e1484d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/68553066": { + "id": "vault://iiif-parser/v4/ContentResource/68553066", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "id": "vault://iiif-parser/v4/ContentResource/68553066", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/11fbb9b7": { + "id": "vault://iiif-parser/v4/ContentResource/11fbb9b7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "id": "vault://iiif-parser/v4/ContentResource/11fbb9b7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0ec0b6e7": { + "id": "vault://iiif-parser/v4/ContentResource/0ec0b6e7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "szubur", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "id": "vault://iiif-parser/v4/ContentResource/0ec0b6e7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fe413336": { + "id": "vault://iiif-parser/v4/ContentResource/fe413336", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "id": "vault://iiif-parser/v4/ContentResource/fe413336", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bfa9a0a5": { + "id": "vault://iiif-parser/v4/ContentResource/bfa9a0a5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "id": "vault://iiif-parser/v4/ContentResource/bfa9a0a5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/15f8c9cf": { + "id": "vault://iiif-parser/v4/ContentResource/15f8c9cf", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "id": "vault://iiif-parser/v4/ContentResource/15f8c9cf", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f13e649f": { + "id": "vault://iiif-parser/v4/ContentResource/f13e649f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "id": "vault://iiif-parser/v4/ContentResource/f13e649f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4580dad6": { + "id": "vault://iiif-parser/v4/ContentResource/4580dad6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "id": "vault://iiif-parser/v4/ContentResource/4580dad6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cde14e57": { + "id": "vault://iiif-parser/v4/ContentResource/cde14e57", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "id": "vault://iiif-parser/v4/ContentResource/cde14e57", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1c9e8404": { + "id": "vault://iiif-parser/v4/ContentResource/1c9e8404", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "id": "vault://iiif-parser/v4/ContentResource/1c9e8404", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aaa98b2d": { + "id": "vault://iiif-parser/v4/ContentResource/aaa98b2d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "id": "vault://iiif-parser/v4/ContentResource/aaa98b2d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/12f2267e": { + "id": "vault://iiif-parser/v4/ContentResource/12f2267e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "id": "vault://iiif-parser/v4/ContentResource/12f2267e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9f0e0e04": { + "id": "vault://iiif-parser/v4/ContentResource/9f0e0e04", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dingir§", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "id": "vault://iiif-parser/v4/ContentResource/9f0e0e04", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/52095c2a": { + "id": "vault://iiif-parser/v4/ContentResource/52095c2a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "id": "vault://iiif-parser/v4/ContentResource/52095c2a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/17a1fa67": { + "id": "vault://iiif-parser/v4/ContentResource/17a1fa67", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "id": "vault://iiif-parser/v4/ContentResource/17a1fa67", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5842d20f": { + "id": "vault://iiif-parser/v4/ContentResource/5842d20f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "id": "vault://iiif-parser/v4/ContentResource/5842d20f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e34b0add": { + "id": "vault://iiif-parser/v4/ContentResource/e34b0add", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "id": "vault://iiif-parser/v4/ContentResource/e34b0add", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/51b6b27e": { + "id": "vault://iiif-parser/v4/ContentResource/51b6b27e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "id": "vault://iiif-parser/v4/ContentResource/51b6b27e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6affb495": { + "id": "vault://iiif-parser/v4/ContentResource/6affb495", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "id": "vault://iiif-parser/v4/ContentResource/6affb495", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7496ddc6": { + "id": "vault://iiif-parser/v4/ContentResource/7496ddc6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "id": "vault://iiif-parser/v4/ContentResource/7496ddc6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1fffd3e1": { + "id": "vault://iiif-parser/v4/ContentResource/1fffd3e1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "id": "vault://iiif-parser/v4/ContentResource/1fffd3e1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b0108cbc": { + "id": "vault://iiif-parser/v4/ContentResource/b0108cbc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "id": "vault://iiif-parser/v4/ContentResource/b0108cbc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/04266e5d": { + "id": "vault://iiif-parser/v4/ContentResource/04266e5d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "id": "vault://iiif-parser/v4/ContentResource/04266e5d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a529a1b2": { + "id": "vault://iiif-parser/v4/ContentResource/a529a1b2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "id": "vault://iiif-parser/v4/ContentResource/a529a1b2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/66920f21": { + "id": "vault://iiif-parser/v4/ContentResource/66920f21", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "id": "vault://iiif-parser/v4/ContentResource/66920f21", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8be55747": { + "id": "vault://iiif-parser/v4/ContentResource/8be55747", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "id": "vault://iiif-parser/v4/ContentResource/8be55747", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9826d31b": { + "id": "vault://iiif-parser/v4/ContentResource/9826d31b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "id": "vault://iiif-parser/v4/ContentResource/9826d31b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c0987adc": { + "id": "vault://iiif-parser/v4/ContentResource/c0987adc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "id": "vault://iiif-parser/v4/ContentResource/c0987adc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/74c9bcd3": { + "id": "vault://iiif-parser/v4/ContentResource/74c9bcd3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "id": "vault://iiif-parser/v4/ContentResource/74c9bcd3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3a291721": { + "id": "vault://iiif-parser/v4/ContentResource/3a291721", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "id": "vault://iiif-parser/v4/ContentResource/3a291721", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f5b5302e": { + "id": "vault://iiif-parser/v4/ContentResource/f5b5302e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "id": "vault://iiif-parser/v4/ContentResource/f5b5302e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b9da94fa": { + "id": "vault://iiif-parser/v4/ContentResource/b9da94fa", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "id": "vault://iiif-parser/v4/ContentResource/b9da94fa", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/37535b5a": { + "id": "vault://iiif-parser/v4/ContentResource/37535b5a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "id": "vault://iiif-parser/v4/ContentResource/37535b5a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/973647f0": { + "id": "vault://iiif-parser/v4/ContentResource/973647f0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "id": "vault://iiif-parser/v4/ContentResource/973647f0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ef165442": { + "id": "vault://iiif-parser/v4/ContentResource/ef165442", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "id": "vault://iiif-parser/v4/ContentResource/ef165442", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0ef349ce": { + "id": "vault://iiif-parser/v4/ContentResource/0ef349ce", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "id": "vault://iiif-parser/v4/ContentResource/0ef349ce", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8a337959": { + "id": "vault://iiif-parser/v4/ContentResource/8a337959", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "id": "vault://iiif-parser/v4/ContentResource/8a337959", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e899b692": { + "id": "vault://iiif-parser/v4/ContentResource/e899b692", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "id": "vault://iiif-parser/v4/ContentResource/e899b692", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/11e82311": { + "id": "vault://iiif-parser/v4/ContentResource/11e82311", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "id": "vault://iiif-parser/v4/ContentResource/11e82311", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/922170e3": { + "id": "vault://iiif-parser/v4/ContentResource/922170e3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "id": "vault://iiif-parser/v4/ContentResource/922170e3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2953156e": { + "id": "vault://iiif-parser/v4/ContentResource/2953156e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "id": "vault://iiif-parser/v4/ContentResource/2953156e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/56f8fb38": { + "id": "vault://iiif-parser/v4/ContentResource/56f8fb38", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "id": "vault://iiif-parser/v4/ContentResource/56f8fb38", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/28440359": { + "id": "vault://iiif-parser/v4/ContentResource/28440359", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "id": "vault://iiif-parser/v4/ContentResource/28440359", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/58958a3e": { + "id": "vault://iiif-parser/v4/ContentResource/58958a3e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "id": "vault://iiif-parser/v4/ContentResource/58958a3e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4a89e30c": { + "id": "vault://iiif-parser/v4/ContentResource/4a89e30c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "id": "vault://iiif-parser/v4/ContentResource/4a89e30c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/82426106": { + "id": "vault://iiif-parser/v4/ContentResource/82426106", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "id": "vault://iiif-parser/v4/ContentResource/82426106", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/96ea0d97": { + "id": "vault://iiif-parser/v4/ContentResource/96ea0d97", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "id": "vault://iiif-parser/v4/ContentResource/96ea0d97", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8fde5bf2": { + "id": "vault://iiif-parser/v4/ContentResource/8fde5bf2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "id": "vault://iiif-parser/v4/ContentResource/8fde5bf2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f2b40453": { + "id": "vault://iiif-parser/v4/ContentResource/f2b40453", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "li", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "id": "vault://iiif-parser/v4/ContentResource/f2b40453", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/487be07c": { + "id": "vault://iiif-parser/v4/ContentResource/487be07c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "id": "vault://iiif-parser/v4/ContentResource/487be07c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8b27e30c": { + "id": "vault://iiif-parser/v4/ContentResource/8b27e30c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "id": "vault://iiif-parser/v4/ContentResource/8b27e30c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/155581": { + "id": "vault://iiif-parser/v4/ContentResource/155581", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "id": "vault://iiif-parser/v4/ContentResource/155581", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/03fe2090": { + "id": "vault://iiif-parser/v4/ContentResource/03fe2090", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "di", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "id": "vault://iiif-parser/v4/ContentResource/03fe2090", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d4fadff5": { + "id": "vault://iiif-parser/v4/ContentResource/d4fadff5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "id": "vault://iiif-parser/v4/ContentResource/d4fadff5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2432d3c7": { + "id": "vault://iiif-parser/v4/ContentResource/2432d3c7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "id": "vault://iiif-parser/v4/ContentResource/2432d3c7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3b9bb64f": { + "id": "vault://iiif-parser/v4/ContentResource/3b9bb64f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "id": "vault://iiif-parser/v4/ContentResource/3b9bb64f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/07461cdc": { + "id": "vault://iiif-parser/v4/ContentResource/07461cdc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "id": "vault://iiif-parser/v4/ContentResource/07461cdc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fdca0e5c": { + "id": "vault://iiif-parser/v4/ContentResource/fdca0e5c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "isz", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "id": "vault://iiif-parser/v4/ContentResource/fdca0e5c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/99e40694": { + "id": "vault://iiif-parser/v4/ContentResource/99e40694", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "id": "vault://iiif-parser/v4/ContentResource/99e40694", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/eacb14e6": { + "id": "vault://iiif-parser/v4/ContentResource/eacb14e6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "id": "vault://iiif-parser/v4/ContentResource/eacb14e6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/872121ef": { + "id": "vault://iiif-parser/v4/ContentResource/872121ef", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "id": "vault://iiif-parser/v4/ContentResource/872121ef", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bb67ba3d": { + "id": "vault://iiif-parser/v4/ContentResource/bb67ba3d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "id": "vault://iiif-parser/v4/ContentResource/bb67ba3d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e81e09f6": { + "id": "vault://iiif-parser/v4/ContentResource/e81e09f6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "id": "vault://iiif-parser/v4/ContentResource/e81e09f6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fa941a37": { + "id": "vault://iiif-parser/v4/ContentResource/fa941a37", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "id": "vault://iiif-parser/v4/ContentResource/fa941a37", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b4949985": { + "id": "vault://iiif-parser/v4/ContentResource/b4949985", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "id": "vault://iiif-parser/v4/ContentResource/b4949985", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ca876203": { + "id": "vault://iiif-parser/v4/ContentResource/ca876203", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "id": "vault://iiif-parser/v4/ContentResource/ca876203", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2cdf571e": { + "id": "vault://iiif-parser/v4/ContentResource/2cdf571e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "id": "vault://iiif-parser/v4/ContentResource/2cdf571e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bacda101": { + "id": "vault://iiif-parser/v4/ContentResource/bacda101", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dingir", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "id": "vault://iiif-parser/v4/ContentResource/bacda101", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fe9900d6": { + "id": "vault://iiif-parser/v4/ContentResource/fe9900d6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "id": "vault://iiif-parser/v4/ContentResource/fe9900d6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7b2cdaa4": { + "id": "vault://iiif-parser/v4/ContentResource/7b2cdaa4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "id": "vault://iiif-parser/v4/ContentResource/7b2cdaa4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5f8091a3": { + "id": "vault://iiif-parser/v4/ContentResource/5f8091a3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "id": "vault://iiif-parser/v4/ContentResource/5f8091a3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/201cb47f": { + "id": "vault://iiif-parser/v4/ContentResource/201cb47f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "id": "vault://iiif-parser/v4/ContentResource/201cb47f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/128c519a": { + "id": "vault://iiif-parser/v4/ContentResource/128c519a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "id": "vault://iiif-parser/v4/ContentResource/128c519a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7be34e71": { + "id": "vault://iiif-parser/v4/ContentResource/7be34e71", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "id": "vault://iiif-parser/v4/ContentResource/7be34e71", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cb1b4243": { + "id": "vault://iiif-parser/v4/ContentResource/cb1b4243", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "id": "vault://iiif-parser/v4/ContentResource/cb1b4243", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e981863c": { + "id": "vault://iiif-parser/v4/ContentResource/e981863c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "id": "vault://iiif-parser/v4/ContentResource/e981863c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ae2e8b58": { + "id": "vault://iiif-parser/v4/ContentResource/ae2e8b58", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "id": "vault://iiif-parser/v4/ContentResource/ae2e8b58", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/40f817ff": { + "id": "vault://iiif-parser/v4/ContentResource/40f817ff", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "id": "vault://iiif-parser/v4/ContentResource/40f817ff", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/40cc7510": { + "id": "vault://iiif-parser/v4/ContentResource/40cc7510", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "id": "vault://iiif-parser/v4/ContentResource/40cc7510", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/91b38362": { + "id": "vault://iiif-parser/v4/ContentResource/91b38362", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "id": "vault://iiif-parser/v4/ContentResource/91b38362", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/652f173c": { + "id": "vault://iiif-parser/v4/ContentResource/652f173c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "id": "vault://iiif-parser/v4/ContentResource/652f173c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/625028b9": { + "id": "vault://iiif-parser/v4/ContentResource/625028b9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "id": "vault://iiif-parser/v4/ContentResource/625028b9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0e9f8d7c": { + "id": "vault://iiif-parser/v4/ContentResource/0e9f8d7c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "id": "vault://iiif-parser/v4/ContentResource/0e9f8d7c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a17c88b3": { + "id": "vault://iiif-parser/v4/ContentResource/a17c88b3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "id": "vault://iiif-parser/v4/ContentResource/a17c88b3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/730ad06e": { + "id": "vault://iiif-parser/v4/ContentResource/730ad06e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "id": "vault://iiif-parser/v4/ContentResource/730ad06e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f60cfdce": { + "id": "vault://iiif-parser/v4/ContentResource/f60cfdce", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "id": "vault://iiif-parser/v4/ContentResource/f60cfdce", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d3c7c59a": { + "id": "vault://iiif-parser/v4/ContentResource/d3c7c59a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "id": "vault://iiif-parser/v4/ContentResource/d3c7c59a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/95138721": { + "id": "vault://iiif-parser/v4/ContentResource/95138721", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "id": "vault://iiif-parser/v4/ContentResource/95138721", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a5816f52": { + "id": "vault://iiif-parser/v4/ContentResource/a5816f52", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "id": "vault://iiif-parser/v4/ContentResource/a5816f52", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ac728f4f": { + "id": "vault://iiif-parser/v4/ContentResource/ac728f4f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "id": "vault://iiif-parser/v4/ContentResource/ac728f4f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/41f23eac": { + "id": "vault://iiif-parser/v4/ContentResource/41f23eac", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "id": "vault://iiif-parser/v4/ContentResource/41f23eac", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c70522fb": { + "id": "vault://iiif-parser/v4/ContentResource/c70522fb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "id": "vault://iiif-parser/v4/ContentResource/c70522fb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/021a3180": { + "id": "vault://iiif-parser/v4/ContentResource/021a3180", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ur2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "id": "vault://iiif-parser/v4/ContentResource/021a3180", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2f4f36fd": { + "id": "vault://iiif-parser/v4/ContentResource/2f4f36fd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "id": "vault://iiif-parser/v4/ContentResource/2f4f36fd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5000ada0": { + "id": "vault://iiif-parser/v4/ContentResource/5000ada0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "id": "vault://iiif-parser/v4/ContentResource/5000ada0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8fd45d82": { + "id": "vault://iiif-parser/v4/ContentResource/8fd45d82", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "id": "vault://iiif-parser/v4/ContentResource/8fd45d82", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/acf1c5d4": { + "id": "vault://iiif-parser/v4/ContentResource/acf1c5d4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "id": "vault://iiif-parser/v4/ContentResource/acf1c5d4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6d5bd0f3": { + "id": "vault://iiif-parser/v4/ContentResource/6d5bd0f3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "id": "vault://iiif-parser/v4/ContentResource/6d5bd0f3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f4385d9c": { + "id": "vault://iiif-parser/v4/ContentResource/f4385d9c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "id": "vault://iiif-parser/v4/ContentResource/f4385d9c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/89686c81": { + "id": "vault://iiif-parser/v4/ContentResource/89686c81", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "id": "vault://iiif-parser/v4/ContentResource/89686c81", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b76cd9e4": { + "id": "vault://iiif-parser/v4/ContentResource/b76cd9e4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "id": "vault://iiif-parser/v4/ContentResource/b76cd9e4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/61136335": { + "id": "vault://iiif-parser/v4/ContentResource/61136335", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "id": "vault://iiif-parser/v4/ContentResource/61136335", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/83eba335": { + "id": "vault://iiif-parser/v4/ContentResource/83eba335", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "el", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "id": "vault://iiif-parser/v4/ContentResource/83eba335", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3197f5b4": { + "id": "vault://iiif-parser/v4/ContentResource/3197f5b4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "id": "vault://iiif-parser/v4/ContentResource/3197f5b4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4db7eee9": { + "id": "vault://iiif-parser/v4/ContentResource/4db7eee9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "id": "vault://iiif-parser/v4/ContentResource/4db7eee9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ace9ef4d": { + "id": "vault://iiif-parser/v4/ContentResource/ace9ef4d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "id": "vault://iiif-parser/v4/ContentResource/ace9ef4d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dcbbab1d": { + "id": "vault://iiif-parser/v4/ContentResource/dcbbab1d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "id": "vault://iiif-parser/v4/ContentResource/dcbbab1d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/acafd3a0": { + "id": "vault://iiif-parser/v4/ContentResource/acafd3a0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "id": "vault://iiif-parser/v4/ContentResource/acafd3a0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/64d273d5": { + "id": "vault://iiif-parser/v4/ContentResource/64d273d5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "id": "vault://iiif-parser/v4/ContentResource/64d273d5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0e473548": { + "id": "vault://iiif-parser/v4/ContentResource/0e473548", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "id": "vault://iiif-parser/v4/ContentResource/0e473548", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5b91e1af": { + "id": "vault://iiif-parser/v4/ContentResource/5b91e1af", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "id": "vault://iiif-parser/v4/ContentResource/5b91e1af", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6209cffc": { + "id": "vault://iiif-parser/v4/ContentResource/6209cffc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "id": "vault://iiif-parser/v4/ContentResource/6209cffc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a47f7d19": { + "id": "vault://iiif-parser/v4/ContentResource/a47f7d19", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "id": "vault://iiif-parser/v4/ContentResource/a47f7d19", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a1362ff6": { + "id": "vault://iiif-parser/v4/ContentResource/a1362ff6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "id": "vault://iiif-parser/v4/ContentResource/a1362ff6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7351292b": { + "id": "vault://iiif-parser/v4/ContentResource/7351292b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "id": "vault://iiif-parser/v4/ContentResource/7351292b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/43c0188d": { + "id": "vault://iiif-parser/v4/ContentResource/43c0188d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "id": "vault://iiif-parser/v4/ContentResource/43c0188d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4c59e55f": { + "id": "vault://iiif-parser/v4/ContentResource/4c59e55f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "id": "vault://iiif-parser/v4/ContentResource/4c59e55f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c9d7d19a": { + "id": "vault://iiif-parser/v4/ContentResource/c9d7d19a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "szesz", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "id": "vault://iiif-parser/v4/ContentResource/c9d7d19a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7f826e17": { + "id": "vault://iiif-parser/v4/ContentResource/7f826e17", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "id": "vault://iiif-parser/v4/ContentResource/7f826e17", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/33e06f8a": { + "id": "vault://iiif-parser/v4/ContentResource/33e06f8a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "id": "vault://iiif-parser/v4/ContentResource/33e06f8a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/eca91163": { + "id": "vault://iiif-parser/v4/ContentResource/eca91163", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "id": "vault://iiif-parser/v4/ContentResource/eca91163", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7cb9ca3e": { + "id": "vault://iiif-parser/v4/ContentResource/7cb9ca3e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "id": "vault://iiif-parser/v4/ContentResource/7cb9ca3e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/752906c7": { + "id": "vault://iiif-parser/v4/ContentResource/752906c7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "a", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "id": "vault://iiif-parser/v4/ContentResource/752906c7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d8806430": { + "id": "vault://iiif-parser/v4/ContentResource/d8806430", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "id": "vault://iiif-parser/v4/ContentResource/d8806430", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a6cf806d": { + "id": "vault://iiif-parser/v4/ContentResource/a6cf806d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "id": "vault://iiif-parser/v4/ContentResource/a6cf806d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/22d67cc5": { + "id": "vault://iiif-parser/v4/ContentResource/22d67cc5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "id": "vault://iiif-parser/v4/ContentResource/22d67cc5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/83a41999": { + "id": "vault://iiif-parser/v4/ContentResource/83a41999", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "id": "vault://iiif-parser/v4/ContentResource/83a41999", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9d952dbe": { + "id": "vault://iiif-parser/v4/ContentResource/9d952dbe", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "id": "vault://iiif-parser/v4/ContentResource/9d952dbe", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0bbae251": { + "id": "vault://iiif-parser/v4/ContentResource/0bbae251", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "id": "vault://iiif-parser/v4/ContentResource/0bbae251", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/675ec6cc": { + "id": "vault://iiif-parser/v4/ContentResource/675ec6cc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "id": "vault://iiif-parser/v4/ContentResource/675ec6cc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4d73b6dc": { + "id": "vault://iiif-parser/v4/ContentResource/4d73b6dc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "id": "vault://iiif-parser/v4/ContentResource/4d73b6dc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/08f23e78": { + "id": "vault://iiif-parser/v4/ContentResource/08f23e78", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "id": "vault://iiif-parser/v4/ContentResource/08f23e78", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/67fd77bd": { + "id": "vault://iiif-parser/v4/ContentResource/67fd77bd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "id": "vault://iiif-parser/v4/ContentResource/67fd77bd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/481e9e72": { + "id": "vault://iiif-parser/v4/ContentResource/481e9e72", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "id": "vault://iiif-parser/v4/ContentResource/481e9e72", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5e948b0e": { + "id": "vault://iiif-parser/v4/ContentResource/5e948b0e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "id": "vault://iiif-parser/v4/ContentResource/5e948b0e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/76f66b0f": { + "id": "vault://iiif-parser/v4/ContentResource/76f66b0f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "id": "vault://iiif-parser/v4/ContentResource/76f66b0f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f34253db": { + "id": "vault://iiif-parser/v4/ContentResource/f34253db", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "id": "vault://iiif-parser/v4/ContentResource/f34253db", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7406dd90": { + "id": "vault://iiif-parser/v4/ContentResource/7406dd90", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ib", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "id": "vault://iiif-parser/v4/ContentResource/7406dd90", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/266adc93": { + "id": "vault://iiif-parser/v4/ContentResource/266adc93", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "id": "vault://iiif-parser/v4/ContentResource/266adc93", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9e0544af": { + "id": "vault://iiif-parser/v4/ContentResource/9e0544af", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "id": "vault://iiif-parser/v4/ContentResource/9e0544af", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e55528ed": { + "id": "vault://iiif-parser/v4/ContentResource/e55528ed", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "id": "vault://iiif-parser/v4/ContentResource/e55528ed", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/23a238ba": { + "id": "vault://iiif-parser/v4/ContentResource/23a238ba", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "id": "vault://iiif-parser/v4/ContentResource/23a238ba", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b9c96053": { + "id": "vault://iiif-parser/v4/ContentResource/b9c96053", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "id": "vault://iiif-parser/v4/ContentResource/b9c96053", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8bec4cbc": { + "id": "vault://iiif-parser/v4/ContentResource/8bec4cbc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "id": "vault://iiif-parser/v4/ContentResource/8bec4cbc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/858f6840": { + "id": "vault://iiif-parser/v4/ContentResource/858f6840", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "id": "vault://iiif-parser/v4/ContentResource/858f6840", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/af4eebc3": { + "id": "vault://iiif-parser/v4/ContentResource/af4eebc3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "id": "vault://iiif-parser/v4/ContentResource/af4eebc3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6fdc30cb": { + "id": "vault://iiif-parser/v4/ContentResource/6fdc30cb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "id": "vault://iiif-parser/v4/ContentResource/6fdc30cb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1eb3ed3d": { + "id": "vault://iiif-parser/v4/ContentResource/1eb3ed3d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ir3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "id": "vault://iiif-parser/v4/ContentResource/1eb3ed3d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bf26cadd": { + "id": "vault://iiif-parser/v4/ContentResource/bf26cadd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "id": "vault://iiif-parser/v4/ContentResource/bf26cadd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c50021e1": { + "id": "vault://iiif-parser/v4/ContentResource/c50021e1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "id": "vault://iiif-parser/v4/ContentResource/c50021e1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/10cac425": { + "id": "vault://iiif-parser/v4/ContentResource/10cac425", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "id": "vault://iiif-parser/v4/ContentResource/10cac425", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/07b578f4": { + "id": "vault://iiif-parser/v4/ContentResource/07b578f4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "id": "vault://iiif-parser/v4/ContentResource/07b578f4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1bc3fc88": { + "id": "vault://iiif-parser/v4/ContentResource/1bc3fc88", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ra", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "id": "vault://iiif-parser/v4/ContentResource/1bc3fc88", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/55492c73": { + "id": "vault://iiif-parser/v4/ContentResource/55492c73", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "id": "vault://iiif-parser/v4/ContentResource/55492c73", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1636f80f": { + "id": "vault://iiif-parser/v4/ContentResource/1636f80f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "id": "vault://iiif-parser/v4/ContentResource/1636f80f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aa234a8a": { + "id": "vault://iiif-parser/v4/ContentResource/aa234a8a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "id": "vault://iiif-parser/v4/ContentResource/aa234a8a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/23fa065a": { + "id": "vault://iiif-parser/v4/ContentResource/23fa065a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "id": "vault://iiif-parser/v4/ContentResource/23fa065a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7a0f5713": { + "id": "vault://iiif-parser/v4/ContentResource/7a0f5713", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "id": "vault://iiif-parser/v4/ContentResource/7a0f5713", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/620bcf12": { + "id": "vault://iiif-parser/v4/ContentResource/620bcf12", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "id": "vault://iiif-parser/v4/ContentResource/620bcf12", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/94f5bd2e": { + "id": "vault://iiif-parser/v4/ContentResource/94f5bd2e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "id": "vault://iiif-parser/v4/ContentResource/94f5bd2e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/04f0afe8": { + "id": "vault://iiif-parser/v4/ContentResource/04f0afe8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "id": "vault://iiif-parser/v4/ContentResource/04f0afe8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1ff51fbb": { + "id": "vault://iiif-parser/v4/ContentResource/1ff51fbb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "id": "vault://iiif-parser/v4/ContentResource/1ff51fbb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/896c0f83": { + "id": "vault://iiif-parser/v4/ContentResource/896c0f83", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "id": "vault://iiif-parser/v4/ContentResource/896c0f83", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fd50d2b1": { + "id": "vault://iiif-parser/v4/ContentResource/fd50d2b1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "id": "vault://iiif-parser/v4/ContentResource/fd50d2b1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/08439e4d": { + "id": "vault://iiif-parser/v4/ContentResource/08439e4d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "id": "vault://iiif-parser/v4/ContentResource/08439e4d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8afe73ca": { + "id": "vault://iiif-parser/v4/ContentResource/8afe73ca", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "id": "vault://iiif-parser/v4/ContentResource/8afe73ca", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cc01ac98": { + "id": "vault://iiif-parser/v4/ContentResource/cc01ac98", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "id": "vault://iiif-parser/v4/ContentResource/cc01ac98", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d29c4f0f": { + "id": "vault://iiif-parser/v4/ContentResource/d29c4f0f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "id": "vault://iiif-parser/v4/ContentResource/d29c4f0f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/492f3550": { + "id": "vault://iiif-parser/v4/ContentResource/492f3550", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "id": "vault://iiif-parser/v4/ContentResource/492f3550", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8702636c": { + "id": "vault://iiif-parser/v4/ContentResource/8702636c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "id": "vault://iiif-parser/v4/ContentResource/8702636c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c8f7daa4": { + "id": "vault://iiif-parser/v4/ContentResource/c8f7daa4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "id": "vault://iiif-parser/v4/ContentResource/c8f7daa4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/071885f9": { + "id": "vault://iiif-parser/v4/ContentResource/071885f9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "id": "vault://iiif-parser/v4/ContentResource/071885f9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4a64891c": { + "id": "vault://iiif-parser/v4/ContentResource/4a64891c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "id": "vault://iiif-parser/v4/ContentResource/4a64891c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/94e77cf7": { + "id": "vault://iiif-parser/v4/ContentResource/94e77cf7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "id": "vault://iiif-parser/v4/ContentResource/94e77cf7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d698a78b": { + "id": "vault://iiif-parser/v4/ContentResource/d698a78b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "id": "vault://iiif-parser/v4/ContentResource/d698a78b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/200fd802": { + "id": "vault://iiif-parser/v4/ContentResource/200fd802", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "id": "vault://iiif-parser/v4/ContentResource/200fd802", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/54928634": { + "id": "vault://iiif-parser/v4/ContentResource/54928634", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Wordindex", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "id": "vault://iiif-parser/v4/ContentResource/54928634", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/596d113f": { + "id": "vault://iiif-parser/v4/ContentResource/596d113f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "id": "vault://iiif-parser/v4/ContentResource/596d113f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1d6df456": { + "id": "vault://iiif-parser/v4/ContentResource/1d6df456", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "asz", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "id": "vault://iiif-parser/v4/ContentResource/1d6df456", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a1aa1f96": { + "id": "vault://iiif-parser/v4/ContentResource/a1aa1f96", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "id": "vault://iiif-parser/v4/ContentResource/a1aa1f96", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/55576caa": { + "id": "vault://iiif-parser/v4/ContentResource/55576caa", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "id": "vault://iiif-parser/v4/ContentResource/55576caa", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/eb110d9b": { + "id": "vault://iiif-parser/v4/ContentResource/eb110d9b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "id": "vault://iiif-parser/v4/ContentResource/eb110d9b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5f93703f": { + "id": "vault://iiif-parser/v4/ContentResource/5f93703f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "id": "vault://iiif-parser/v4/ContentResource/5f93703f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/59bd757a": { + "id": "vault://iiif-parser/v4/ContentResource/59bd757a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "id": "vault://iiif-parser/v4/ContentResource/59bd757a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3cef2335": { + "id": "vault://iiif-parser/v4/ContentResource/3cef2335", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "id": "vault://iiif-parser/v4/ContentResource/3cef2335", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c8a54dc9": { + "id": "vault://iiif-parser/v4/ContentResource/c8a54dc9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "id": "vault://iiif-parser/v4/ContentResource/c8a54dc9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/58cb44d9": { + "id": "vault://iiif-parser/v4/ContentResource/58cb44d9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "id": "vault://iiif-parser/v4/ContentResource/58cb44d9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0b9ffd1c": { + "id": "vault://iiif-parser/v4/ContentResource/0b9ffd1c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "id": "vault://iiif-parser/v4/ContentResource/0b9ffd1c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/623f31": { + "id": "vault://iiif-parser/v4/ContentResource/623f31", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "id": "vault://iiif-parser/v4/ContentResource/623f31", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/88cd85d4": { + "id": "vault://iiif-parser/v4/ContentResource/88cd85d4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "id": "vault://iiif-parser/v4/ContentResource/88cd85d4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/476412e8": { + "id": "vault://iiif-parser/v4/ContentResource/476412e8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "id": "vault://iiif-parser/v4/ContentResource/476412e8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/be0ae81b": { + "id": "vault://iiif-parser/v4/ContentResource/be0ae81b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "id": "vault://iiif-parser/v4/ContentResource/be0ae81b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/46b6d67d": { + "id": "vault://iiif-parser/v4/ContentResource/46b6d67d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "id": "vault://iiif-parser/v4/ContentResource/46b6d67d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d853ce4d": { + "id": "vault://iiif-parser/v4/ContentResource/d853ce4d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ku", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "id": "vault://iiif-parser/v4/ContentResource/d853ce4d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/af9d837b": { + "id": "vault://iiif-parser/v4/ContentResource/af9d837b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "id": "vault://iiif-parser/v4/ContentResource/af9d837b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bbe2a107": { + "id": "vault://iiif-parser/v4/ContentResource/bbe2a107", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "id": "vault://iiif-parser/v4/ContentResource/bbe2a107", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1b4854d5": { + "id": "vault://iiif-parser/v4/ContentResource/1b4854d5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "id": "vault://iiif-parser/v4/ContentResource/1b4854d5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c9a5af52": { + "id": "vault://iiif-parser/v4/ContentResource/c9a5af52", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "id": "vault://iiif-parser/v4/ContentResource/c9a5af52", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2efd1195": { + "id": "vault://iiif-parser/v4/ContentResource/2efd1195", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "id": "vault://iiif-parser/v4/ContentResource/2efd1195", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bc60261a": { + "id": "vault://iiif-parser/v4/ContentResource/bc60261a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "id": "vault://iiif-parser/v4/ContentResource/bc60261a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0ba0829e": { + "id": "vault://iiif-parser/v4/ContentResource/0ba0829e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "id": "vault://iiif-parser/v4/ContentResource/0ba0829e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/320722e7": { + "id": "vault://iiif-parser/v4/ContentResource/320722e7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "id": "vault://iiif-parser/v4/ContentResource/320722e7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c5a0c8b3": { + "id": "vault://iiif-parser/v4/ContentResource/c5a0c8b3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "id": "vault://iiif-parser/v4/ContentResource/c5a0c8b3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ff5d8bc5": { + "id": "vault://iiif-parser/v4/ContentResource/ff5d8bc5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "a", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "id": "vault://iiif-parser/v4/ContentResource/ff5d8bc5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b1e64232": { + "id": "vault://iiif-parser/v4/ContentResource/b1e64232", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "id": "vault://iiif-parser/v4/ContentResource/b1e64232", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/01269eb6": { + "id": "vault://iiif-parser/v4/ContentResource/01269eb6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "id": "vault://iiif-parser/v4/ContentResource/01269eb6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aa3e4f8c": { + "id": "vault://iiif-parser/v4/ContentResource/aa3e4f8c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "id": "vault://iiif-parser/v4/ContentResource/aa3e4f8c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a4e3739b": { + "id": "vault://iiif-parser/v4/ContentResource/a4e3739b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "id": "vault://iiif-parser/v4/ContentResource/a4e3739b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/254325a6": { + "id": "vault://iiif-parser/v4/ContentResource/254325a6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "hu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "id": "vault://iiif-parser/v4/ContentResource/254325a6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/81865d53": { + "id": "vault://iiif-parser/v4/ContentResource/81865d53", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "id": "vault://iiif-parser/v4/ContentResource/81865d53", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d0c6b9d7": { + "id": "vault://iiif-parser/v4/ContentResource/d0c6b9d7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "id": "vault://iiif-parser/v4/ContentResource/d0c6b9d7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b9b4db2c": { + "id": "vault://iiif-parser/v4/ContentResource/b9b4db2c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "id": "vault://iiif-parser/v4/ContentResource/b9b4db2c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c697357a": { + "id": "vault://iiif-parser/v4/ContentResource/c697357a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "id": "vault://iiif-parser/v4/ContentResource/c697357a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7a8b0318": { + "id": "vault://iiif-parser/v4/ContentResource/7a8b0318", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "szi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "id": "vault://iiif-parser/v4/ContentResource/7a8b0318", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a3f2e870": { + "id": "vault://iiif-parser/v4/ContentResource/a3f2e870", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "id": "vault://iiif-parser/v4/ContentResource/a3f2e870", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f33344f4": { + "id": "vault://iiif-parser/v4/ContentResource/f33344f4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "id": "vault://iiif-parser/v4/ContentResource/f33344f4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/775f2d48": { + "id": "vault://iiif-parser/v4/ContentResource/775f2d48", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "id": "vault://iiif-parser/v4/ContentResource/775f2d48", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/96f019d9": { + "id": "vault://iiif-parser/v4/ContentResource/96f019d9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "id": "vault://iiif-parser/v4/ContentResource/96f019d9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2a425676": { + "id": "vault://iiif-parser/v4/ContentResource/2a425676", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "id": "vault://iiif-parser/v4/ContentResource/2a425676", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1ea4c391": { + "id": "vault://iiif-parser/v4/ContentResource/1ea4c391", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "id": "vault://iiif-parser/v4/ContentResource/1ea4c391", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6de52015": { + "id": "vault://iiif-parser/v4/ContentResource/6de52015", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "id": "vault://iiif-parser/v4/ContentResource/6de52015", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ec0a63e8": { + "id": "vault://iiif-parser/v4/ContentResource/ec0a63e8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "id": "vault://iiif-parser/v4/ContentResource/ec0a63e8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/287b0be6": { + "id": "vault://iiif-parser/v4/ContentResource/287b0be6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "id": "vault://iiif-parser/v4/ContentResource/287b0be6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dbcf56f7": { + "id": "vault://iiif-parser/v4/ContentResource/dbcf56f7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "id": "vault://iiif-parser/v4/ContentResource/dbcf56f7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f18492b6": { + "id": "vault://iiif-parser/v4/ContentResource/f18492b6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "id": "vault://iiif-parser/v4/ContentResource/f18492b6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c1884e32": { + "id": "vault://iiif-parser/v4/ContentResource/c1884e32", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "id": "vault://iiif-parser/v4/ContentResource/c1884e32", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fae1ce0c": { + "id": "vault://iiif-parser/v4/ContentResource/fae1ce0c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "id": "vault://iiif-parser/v4/ContentResource/fae1ce0c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e481c41f": { + "id": "vault://iiif-parser/v4/ContentResource/e481c41f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "id": "vault://iiif-parser/v4/ContentResource/e481c41f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cec10f3d": { + "id": "vault://iiif-parser/v4/ContentResource/cec10f3d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "id": "vault://iiif-parser/v4/ContentResource/cec10f3d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c124add7": { + "id": "vault://iiif-parser/v4/ContentResource/c124add7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "id": "vault://iiif-parser/v4/ContentResource/c124add7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/91286953": { + "id": "vault://iiif-parser/v4/ContentResource/91286953", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "id": "vault://iiif-parser/v4/ContentResource/91286953", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0a5859ac": { + "id": "vault://iiif-parser/v4/ContentResource/0a5859ac", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "id": "vault://iiif-parser/v4/ContentResource/0a5859ac", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/063585fe": { + "id": "vault://iiif-parser/v4/ContentResource/063585fe", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "id": "vault://iiif-parser/v4/ContentResource/063585fe", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/74656137": { + "id": "vault://iiif-parser/v4/ContentResource/74656137", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "id": "vault://iiif-parser/v4/ContentResource/74656137", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e39138f4": { + "id": "vault://iiif-parser/v4/ContentResource/e39138f4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "id": "vault://iiif-parser/v4/ContentResource/e39138f4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b394f470": { + "id": "vault://iiif-parser/v4/ContentResource/b394f470", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "id": "vault://iiif-parser/v4/ContentResource/b394f470", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ed4bbac0": { + "id": "vault://iiif-parser/v4/ContentResource/ed4bbac0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "id": "vault://iiif-parser/v4/ContentResource/ed4bbac0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d68e6a5d": { + "id": "vault://iiif-parser/v4/ContentResource/d68e6a5d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "id": "vault://iiif-parser/v4/ContentResource/d68e6a5d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0a536872": { + "id": "vault://iiif-parser/v4/ContentResource/0a536872", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "id": "vault://iiif-parser/v4/ContentResource/0a536872", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5e431415": { + "id": "vault://iiif-parser/v4/ContentResource/5e431415", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "id": "vault://iiif-parser/v4/ContentResource/5e431415", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2e46cf91": { + "id": "vault://iiif-parser/v4/ContentResource/2e46cf91", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "id": "vault://iiif-parser/v4/ContentResource/2e46cf91", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/61f6f160": { + "id": "vault://iiif-parser/v4/ContentResource/61f6f160", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "id": "vault://iiif-parser/v4/ContentResource/61f6f160", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a353ec3c": { + "id": "vault://iiif-parser/v4/ContentResource/a353ec3c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "id": "vault://iiif-parser/v4/ContentResource/a353ec3c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d92c6538": { + "id": "vault://iiif-parser/v4/ContentResource/d92c6538", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "gal", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "id": "vault://iiif-parser/v4/ContentResource/d92c6538", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0c3a993a": { + "id": "vault://iiif-parser/v4/ContentResource/0c3a993a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "id": "vault://iiif-parser/v4/ContentResource/0c3a993a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5b7af5be": { + "id": "vault://iiif-parser/v4/ContentResource/5b7af5be", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "id": "vault://iiif-parser/v4/ContentResource/5b7af5be", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f27cb677": { + "id": "vault://iiif-parser/v4/ContentResource/f27cb677", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "id": "vault://iiif-parser/v4/ContentResource/f27cb677", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4a8f1c93": { + "id": "vault://iiif-parser/v4/ContentResource/4a8f1c93", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "id": "vault://iiif-parser/v4/ContentResource/4a8f1c93", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4164763c": { + "id": "vault://iiif-parser/v4/ContentResource/4164763c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "id": "vault://iiif-parser/v4/ContentResource/4164763c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dbdab45b": { + "id": "vault://iiif-parser/v4/ContentResource/dbdab45b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "id": "vault://iiif-parser/v4/ContentResource/dbdab45b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2b1b10df": { + "id": "vault://iiif-parser/v4/ContentResource/2b1b10df", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "id": "vault://iiif-parser/v4/ContentResource/2b1b10df", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6e2a4777": { + "id": "vault://iiif-parser/v4/ContentResource/6e2a4777", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "id": "vault://iiif-parser/v4/ContentResource/6e2a4777", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6c42de72": { + "id": "vault://iiif-parser/v4/ContentResource/6c42de72", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "id": "vault://iiif-parser/v4/ContentResource/6c42de72", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1c92e73e": { + "id": "vault://iiif-parser/v4/ContentResource/1c92e73e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "id": "vault://iiif-parser/v4/ContentResource/1c92e73e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/889feef1": { + "id": "vault://iiif-parser/v4/ContentResource/889feef1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "id": "vault://iiif-parser/v4/ContentResource/889feef1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5eaa20f4": { + "id": "vault://iiif-parser/v4/ContentResource/5eaa20f4", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "id": "vault://iiif-parser/v4/ContentResource/5eaa20f4", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/849b630c": { + "id": "vault://iiif-parser/v4/ContentResource/849b630c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "id": "vault://iiif-parser/v4/ContentResource/849b630c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/baeb2bd8": { + "id": "vault://iiif-parser/v4/ContentResource/baeb2bd8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "id": "vault://iiif-parser/v4/ContentResource/baeb2bd8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/33cd7f8b": { + "id": "vault://iiif-parser/v4/ContentResource/33cd7f8b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ar", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "id": "vault://iiif-parser/v4/ContentResource/33cd7f8b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4d891590": { + "id": "vault://iiif-parser/v4/ContentResource/4d891590", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "id": "vault://iiif-parser/v4/ContentResource/4d891590", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dfeb5bd5": { + "id": "vault://iiif-parser/v4/ContentResource/dfeb5bd5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "id": "vault://iiif-parser/v4/ContentResource/dfeb5bd5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a4d3d86e": { + "id": "vault://iiif-parser/v4/ContentResource/a4d3d86e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "id": "vault://iiif-parser/v4/ContentResource/a4d3d86e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6f0cc939": { + "id": "vault://iiif-parser/v4/ContentResource/6f0cc939", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "id": "vault://iiif-parser/v4/ContentResource/6f0cc939", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/17e0f405": { + "id": "vault://iiif-parser/v4/ContentResource/17e0f405", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "wi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "id": "vault://iiif-parser/v4/ContentResource/17e0f405", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ae392933": { + "id": "vault://iiif-parser/v4/ContentResource/ae392933", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "id": "vault://iiif-parser/v4/ContentResource/ae392933", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/795a1b36": { + "id": "vault://iiif-parser/v4/ContentResource/795a1b36", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "id": "vault://iiif-parser/v4/ContentResource/795a1b36", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/10ea6b4c": { + "id": "vault://iiif-parser/v4/ContentResource/10ea6b4c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "id": "vault://iiif-parser/v4/ContentResource/10ea6b4c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e084661a": { + "id": "vault://iiif-parser/v4/ContentResource/e084661a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "id": "vault://iiif-parser/v4/ContentResource/e084661a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/deff0da2": { + "id": "vault://iiif-parser/v4/ContentResource/deff0da2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "id": "vault://iiif-parser/v4/ContentResource/deff0da2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b23e0fd2": { + "id": "vault://iiif-parser/v4/ContentResource/b23e0fd2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "id": "vault://iiif-parser/v4/ContentResource/b23e0fd2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fa9b5617": { + "id": "vault://iiif-parser/v4/ContentResource/fa9b5617", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "id": "vault://iiif-parser/v4/ContentResource/fa9b5617", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e0163a2a": { + "id": "vault://iiif-parser/v4/ContentResource/e0163a2a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "id": "vault://iiif-parser/v4/ContentResource/e0163a2a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d3c1c37b": { + "id": "vault://iiif-parser/v4/ContentResource/d3c1c37b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "id": "vault://iiif-parser/v4/ContentResource/d3c1c37b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a57e232e": { + "id": "vault://iiif-parser/v4/ContentResource/a57e232e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dub", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "id": "vault://iiif-parser/v4/ContentResource/a57e232e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5b18e3ab": { + "id": "vault://iiif-parser/v4/ContentResource/5b18e3ab", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "id": "vault://iiif-parser/v4/ContentResource/5b18e3ab", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1f0bd070": { + "id": "vault://iiif-parser/v4/ContentResource/1f0bd070", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "id": "vault://iiif-parser/v4/ContentResource/1f0bd070", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d53ee18c": { + "id": "vault://iiif-parser/v4/ContentResource/d53ee18c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "id": "vault://iiif-parser/v4/ContentResource/d53ee18c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fa897c5c": { + "id": "vault://iiif-parser/v4/ContentResource/fa897c5c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "id": "vault://iiif-parser/v4/ContentResource/fa897c5c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d291e79c": { + "id": "vault://iiif-parser/v4/ContentResource/d291e79c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "sar", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "id": "vault://iiif-parser/v4/ContentResource/d291e79c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8d276614": { + "id": "vault://iiif-parser/v4/ContentResource/8d276614", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "id": "vault://iiif-parser/v4/ContentResource/8d276614", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a04d0b51": { + "id": "vault://iiif-parser/v4/ContentResource/a04d0b51", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "id": "vault://iiif-parser/v4/ContentResource/a04d0b51", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f57756ee": { + "id": "vault://iiif-parser/v4/ContentResource/f57756ee", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "id": "vault://iiif-parser/v4/ContentResource/f57756ee", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aeab19bd": { + "id": "vault://iiif-parser/v4/ContentResource/aeab19bd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "id": "vault://iiif-parser/v4/ContentResource/aeab19bd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c2449c78": { + "id": "vault://iiif-parser/v4/ContentResource/c2449c78", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "id": "vault://iiif-parser/v4/ContentResource/c2449c78", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/edd779b7": { + "id": "vault://iiif-parser/v4/ContentResource/edd779b7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "id": "vault://iiif-parser/v4/ContentResource/edd779b7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e2f69ad8": { + "id": "vault://iiif-parser/v4/ContentResource/e2f69ad8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "id": "vault://iiif-parser/v4/ContentResource/e2f69ad8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fbef87d0": { + "id": "vault://iiif-parser/v4/ContentResource/fbef87d0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "id": "vault://iiif-parser/v4/ContentResource/fbef87d0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5f6c0e6d": { + "id": "vault://iiif-parser/v4/ContentResource/5f6c0e6d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "id": "vault://iiif-parser/v4/ContentResource/5f6c0e6d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/931999b1": { + "id": "vault://iiif-parser/v4/ContentResource/931999b1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "id": "vault://iiif-parser/v4/ContentResource/931999b1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f1dc6056": { + "id": "vault://iiif-parser/v4/ContentResource/f1dc6056", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "id": "vault://iiif-parser/v4/ContentResource/f1dc6056", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d44e26d0": { + "id": "vault://iiif-parser/v4/ContentResource/d44e26d0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "id": "vault://iiif-parser/v4/ContentResource/d44e26d0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f5974da8": { + "id": "vault://iiif-parser/v4/ContentResource/f5974da8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "id": "vault://iiif-parser/v4/ContentResource/f5974da8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/136013ff": { + "id": "vault://iiif-parser/v4/ContentResource/136013ff", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "id": "vault://iiif-parser/v4/ContentResource/136013ff", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fd0f341a": { + "id": "vault://iiif-parser/v4/ContentResource/fd0f341a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "id": "vault://iiif-parser/v4/ContentResource/fd0f341a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e2f445f9": { + "id": "vault://iiif-parser/v4/ContentResource/e2f445f9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "id": "vault://iiif-parser/v4/ContentResource/e2f445f9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/871765ff": { + "id": "vault://iiif-parser/v4/ContentResource/871765ff", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "id": "vault://iiif-parser/v4/ContentResource/871765ff", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dc2f4e86": { + "id": "vault://iiif-parser/v4/ContentResource/dc2f4e86", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "id": "vault://iiif-parser/v4/ContentResource/dc2f4e86", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6096d4d0": { + "id": "vault://iiif-parser/v4/ContentResource/6096d4d0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "id": "vault://iiif-parser/v4/ContentResource/6096d4d0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0574286a": { + "id": "vault://iiif-parser/v4/ContentResource/0574286a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "id": "vault://iiif-parser/v4/ContentResource/0574286a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a7dd6c98": { + "id": "vault://iiif-parser/v4/ContentResource/a7dd6c98", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "id": "vault://iiif-parser/v4/ContentResource/a7dd6c98", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/93da089e": { + "id": "vault://iiif-parser/v4/ContentResource/93da089e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "id": "vault://iiif-parser/v4/ContentResource/93da089e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6b11e8e0": { + "id": "vault://iiif-parser/v4/ContentResource/6b11e8e0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "id": "vault://iiif-parser/v4/ContentResource/6b11e8e0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/14b87231": { + "id": "vault://iiif-parser/v4/ContentResource/14b87231", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "id": "vault://iiif-parser/v4/ContentResource/14b87231", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4dadfb2f": { + "id": "vault://iiif-parser/v4/ContentResource/4dadfb2f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "id": "vault://iiif-parser/v4/ContentResource/4dadfb2f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e53d04b0": { + "id": "vault://iiif-parser/v4/ContentResource/e53d04b0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "id": "vault://iiif-parser/v4/ContentResource/e53d04b0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/896024b6": { + "id": "vault://iiif-parser/v4/ContentResource/896024b6", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "id": "vault://iiif-parser/v4/ContentResource/896024b6", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/608efe49": { + "id": "vault://iiif-parser/v4/ContentResource/608efe49", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "id": "vault://iiif-parser/v4/ContentResource/608efe49", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/9060ba19": { + "id": "vault://iiif-parser/v4/ContentResource/9060ba19", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "id": "vault://iiif-parser/v4/ContentResource/9060ba19", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/108dc5e5": { + "id": "vault://iiif-parser/v4/ContentResource/108dc5e5", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "szu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "id": "vault://iiif-parser/v4/ContentResource/108dc5e5", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/187782d1": { + "id": "vault://iiif-parser/v4/ContentResource/187782d1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "id": "vault://iiif-parser/v4/ContentResource/187782d1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/59003fd7": { + "id": "vault://iiif-parser/v4/ContentResource/59003fd7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "id": "vault://iiif-parser/v4/ContentResource/59003fd7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0f36f0ab": { + "id": "vault://iiif-parser/v4/ContentResource/0f36f0ab", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "id": "vault://iiif-parser/v4/ContentResource/0f36f0ab", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/15aedef8": { + "id": "vault://iiif-parser/v4/ContentResource/15aedef8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "id": "vault://iiif-parser/v4/ContentResource/15aedef8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f5210333": { + "id": "vault://iiif-parser/v4/ContentResource/f5210333", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "id": "vault://iiif-parser/v4/ContentResource/f5210333", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/54db3ef2": { + "id": "vault://iiif-parser/v4/ContentResource/54db3ef2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "id": "vault://iiif-parser/v4/ContentResource/54db3ef2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6eb02a74": { + "id": "vault://iiif-parser/v4/ContentResource/6eb02a74", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "id": "vault://iiif-parser/v4/ContentResource/6eb02a74", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f7652789": { + "id": "vault://iiif-parser/v4/ContentResource/f7652789", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "id": "vault://iiif-parser/v4/ContentResource/f7652789", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fffef45b": { + "id": "vault://iiif-parser/v4/ContentResource/fffef45b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "id": "vault://iiif-parser/v4/ContentResource/fffef45b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/dee48161": { + "id": "vault://iiif-parser/v4/ContentResource/dee48161", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "id": "vault://iiif-parser/v4/ContentResource/dee48161", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/33277d13": { + "id": "vault://iiif-parser/v4/ContentResource/33277d13", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "id": "vault://iiif-parser/v4/ContentResource/33277d13", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e9620595": { + "id": "vault://iiif-parser/v4/ContentResource/e9620595", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "id": "vault://iiif-parser/v4/ContentResource/e9620595", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/39040267": { + "id": "vault://iiif-parser/v4/ContentResource/39040267", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "id": "vault://iiif-parser/v4/ContentResource/39040267", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/305ed93a": { + "id": "vault://iiif-parser/v4/ContentResource/305ed93a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "id": "vault://iiif-parser/v4/ContentResource/305ed93a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0e0faaab": { + "id": "vault://iiif-parser/v4/ContentResource/0e0faaab", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "id": "vault://iiif-parser/v4/ContentResource/0e0faaab", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/24db5534": { + "id": "vault://iiif-parser/v4/ContentResource/24db5534", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "id": "vault://iiif-parser/v4/ContentResource/24db5534", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/49c1d432": { + "id": "vault://iiif-parser/v4/ContentResource/49c1d432", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "id": "vault://iiif-parser/v4/ContentResource/49c1d432", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d67b8bc1": { + "id": "vault://iiif-parser/v4/ContentResource/d67b8bc1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "id": "vault://iiif-parser/v4/ContentResource/d67b8bc1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cfff0a9d": { + "id": "vault://iiif-parser/v4/ContentResource/cfff0a9d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "id": "vault://iiif-parser/v4/ContentResource/cfff0a9d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aec1b5be": { + "id": "vault://iiif-parser/v4/ContentResource/aec1b5be", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "id": "vault://iiif-parser/v4/ContentResource/aec1b5be", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5815d355": { + "id": "vault://iiif-parser/v4/ContentResource/5815d355", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "id": "vault://iiif-parser/v4/ContentResource/5815d355", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1961ef53": { + "id": "vault://iiif-parser/v4/ContentResource/1961ef53", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "id": "vault://iiif-parser/v4/ContentResource/1961ef53", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0118c5d8": { + "id": "vault://iiif-parser/v4/ContentResource/0118c5d8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "id": "vault://iiif-parser/v4/ContentResource/0118c5d8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/554d2f7c": { + "id": "vault://iiif-parser/v4/ContentResource/554d2f7c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "id": "vault://iiif-parser/v4/ContentResource/554d2f7c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/29d2c736": { + "id": "vault://iiif-parser/v4/ContentResource/29d2c736", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "asz", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "id": "vault://iiif-parser/v4/ContentResource/29d2c736", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/94798f76": { + "id": "vault://iiif-parser/v4/ContentResource/94798f76", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "id": "vault://iiif-parser/v4/ContentResource/94798f76", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2f11d9f0": { + "id": "vault://iiif-parser/v4/ContentResource/2f11d9f0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "id": "vault://iiif-parser/v4/ContentResource/2f11d9f0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a25f911a": { + "id": "vault://iiif-parser/v4/ContentResource/a25f911a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "id": "vault://iiif-parser/v4/ContentResource/a25f911a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3f9d44df": { + "id": "vault://iiif-parser/v4/ContentResource/3f9d44df", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "id": "vault://iiif-parser/v4/ContentResource/3f9d44df", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5f27ec98": { + "id": "vault://iiif-parser/v4/ContentResource/5f27ec98", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "id": "vault://iiif-parser/v4/ContentResource/5f27ec98", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/72c5cd97": { + "id": "vault://iiif-parser/v4/ContentResource/72c5cd97", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "id": "vault://iiif-parser/v4/ContentResource/72c5cd97", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a9c3b511": { + "id": "vault://iiif-parser/v4/ContentResource/a9c3b511", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "id": "vault://iiif-parser/v4/ContentResource/a9c3b511", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d412a058": { + "id": "vault://iiif-parser/v4/ContentResource/d412a058", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "id": "vault://iiif-parser/v4/ContentResource/d412a058", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6ffd29be": { + "id": "vault://iiif-parser/v4/ContentResource/6ffd29be", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "id": "vault://iiif-parser/v4/ContentResource/6ffd29be", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b57b96dd": { + "id": "vault://iiif-parser/v4/ContentResource/b57b96dd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "id": "vault://iiif-parser/v4/ContentResource/b57b96dd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/3f915bb8": { + "id": "vault://iiif-parser/v4/ContentResource/3f915bb8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "id": "vault://iiif-parser/v4/ContentResource/3f915bb8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e3b47bbe": { + "id": "vault://iiif-parser/v4/ContentResource/e3b47bbe", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "id": "vault://iiif-parser/v4/ContentResource/e3b47bbe", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/64dca116": { + "id": "vault://iiif-parser/v4/ContentResource/64dca116", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "id": "vault://iiif-parser/v4/ContentResource/64dca116", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/360c6311": { + "id": "vault://iiif-parser/v4/ContentResource/360c6311", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "id": "vault://iiif-parser/v4/ContentResource/360c6311", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6158d42f": { + "id": "vault://iiif-parser/v4/ContentResource/6158d42f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "ku", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "id": "vault://iiif-parser/v4/ContentResource/6158d42f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/72cbd9d9": { + "id": "vault://iiif-parser/v4/ContentResource/72cbd9d9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "id": "vault://iiif-parser/v4/ContentResource/72cbd9d9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b35496df": { + "id": "vault://iiif-parser/v4/ContentResource/b35496df", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "id": "vault://iiif-parser/v4/ContentResource/b35496df", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bb196dd0": { + "id": "vault://iiif-parser/v4/ContentResource/bb196dd0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "14", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "id": "vault://iiif-parser/v4/ContentResource/bb196dd0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bb5a87f0": { + "id": "vault://iiif-parser/v4/ContentResource/bb5a87f0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "id": "vault://iiif-parser/v4/ContentResource/bb5a87f0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1b2a2e7e": { + "id": "vault://iiif-parser/v4/ContentResource/1b2a2e7e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "du8", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "id": "vault://iiif-parser/v4/ContentResource/1b2a2e7e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/29a654a1": { + "id": "vault://iiif-parser/v4/ContentResource/29a654a1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "id": "vault://iiif-parser/v4/ContentResource/29a654a1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/805655f8": { + "id": "vault://iiif-parser/v4/ContentResource/805655f8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "id": "vault://iiif-parser/v4/ContentResource/805655f8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/61d86300": { + "id": "vault://iiif-parser/v4/ContentResource/61d86300", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "id": "vault://iiif-parser/v4/ContentResource/61d86300", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fc875f56": { + "id": "vault://iiif-parser/v4/ContentResource/fc875f56", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "id": "vault://iiif-parser/v4/ContentResource/fc875f56", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/96f89ee9": { + "id": "vault://iiif-parser/v4/ContentResource/96f89ee9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "a", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "id": "vault://iiif-parser/v4/ContentResource/96f89ee9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cda18cd2": { + "id": "vault://iiif-parser/v4/ContentResource/cda18cd2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "back", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "id": "vault://iiif-parser/v4/ContentResource/cda18cd2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/019790d9": { + "id": "vault://iiif-parser/v4/ContentResource/019790d9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "id": "vault://iiif-parser/v4/ContentResource/019790d9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4edbef66": { + "id": "vault://iiif-parser/v4/ContentResource/4edbef66", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "id": "vault://iiif-parser/v4/ContentResource/4edbef66", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f7368b4e": { + "id": "vault://iiif-parser/v4/ContentResource/f7368b4e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "za", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "id": "vault://iiif-parser/v4/ContentResource/f7368b4e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bd795bbd": { + "id": "vault://iiif-parser/v4/ContentResource/bd795bbd", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "id": "vault://iiif-parser/v4/ContentResource/bd795bbd", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ab203449": { + "id": "vault://iiif-parser/v4/ContentResource/ab203449", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "id": "vault://iiif-parser/v4/ContentResource/ab203449", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/25621485": { + "id": "vault://iiif-parser/v4/ContentResource/25621485", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "id": "vault://iiif-parser/v4/ContentResource/25621485", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/26c6ea14": { + "id": "vault://iiif-parser/v4/ContentResource/26c6ea14", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "top", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "id": "vault://iiif-parser/v4/ContentResource/26c6ea14", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2e031276": { + "id": "vault://iiif-parser/v4/ContentResource/2e031276", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "bara2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "id": "vault://iiif-parser/v4/ContentResource/2e031276", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0957be5c": { + "id": "vault://iiif-parser/v4/ContentResource/0957be5c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "id": "vault://iiif-parser/v4/ContentResource/0957be5c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/29def968": { + "id": "vault://iiif-parser/v4/ContentResource/29def968", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "id": "vault://iiif-parser/v4/ContentResource/29def968", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1df5a725": { + "id": "vault://iiif-parser/v4/ContentResource/1df5a725", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "id": "vault://iiif-parser/v4/ContentResource/1df5a725", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/233211ab": { + "id": "vault://iiif-parser/v4/ContentResource/233211ab", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "top", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "id": "vault://iiif-parser/v4/ContentResource/233211ab", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/367bd6d1": { + "id": "vault://iiif-parser/v4/ContentResource/367bd6d1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "id": "vault://iiif-parser/v4/ContentResource/367bd6d1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bc5a23fb": { + "id": "vault://iiif-parser/v4/ContentResource/bc5a23fb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "id": "vault://iiif-parser/v4/ContentResource/bc5a23fb", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/122b1f8f": { + "id": "vault://iiif-parser/v4/ContentResource/122b1f8f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "id": "vault://iiif-parser/v4/ContentResource/122b1f8f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/05a7b241": { + "id": "vault://iiif-parser/v4/ContentResource/05a7b241", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "id": "vault://iiif-parser/v4/ContentResource/05a7b241", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/25a7b252": { + "id": "vault://iiif-parser/v4/ContentResource/25a7b252", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "top", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "id": "vault://iiif-parser/v4/ContentResource/25a7b252", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6959629b": { + "id": "vault://iiif-parser/v4/ContentResource/6959629b", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "nin", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "id": "vault://iiif-parser/v4/ContentResource/6959629b", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c91cc69a": { + "id": "vault://iiif-parser/v4/ContentResource/c91cc69a", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "id": "vault://iiif-parser/v4/ContentResource/c91cc69a", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/90e9e4ae": { + "id": "vault://iiif-parser/v4/ContentResource/90e9e4ae", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "id": "vault://iiif-parser/v4/ContentResource/90e9e4ae", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ed92bae1": { + "id": "vault://iiif-parser/v4/ContentResource/ed92bae1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "id": "vault://iiif-parser/v4/ContentResource/ed92bae1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/21a2cbb3": { + "id": "vault://iiif-parser/v4/ContentResource/21a2cbb3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "top", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "id": "vault://iiif-parser/v4/ContentResource/21a2cbb3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/726dc989": { + "id": "vault://iiif-parser/v4/ContentResource/726dc989", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "mu", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "id": "vault://iiif-parser/v4/ContentResource/726dc989", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/6461ca39": { + "id": "vault://iiif-parser/v4/ContentResource/6461ca39", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "id": "vault://iiif-parser/v4/ContentResource/6461ca39", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7042fc2e": { + "id": "vault://iiif-parser/v4/ContentResource/7042fc2e", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "id": "vault://iiif-parser/v4/ContentResource/7042fc2e", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/1c0f1f07": { + "id": "vault://iiif-parser/v4/ContentResource/1c0f1f07", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "id": "vault://iiif-parser/v4/ContentResource/1c0f1f07", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cdaf5890": { + "id": "vault://iiif-parser/v4/ContentResource/cdaf5890", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "top", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "id": "vault://iiif-parser/v4/ContentResource/cdaf5890", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/042a793f": { + "id": "vault://iiif-parser/v4/ContentResource/042a793f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "id": "vault://iiif-parser/v4/ContentResource/042a793f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/b0402cd8": { + "id": "vault://iiif-parser/v4/ContentResource/b0402cd8", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "id": "vault://iiif-parser/v4/ContentResource/b0402cd8", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f184370f": { + "id": "vault://iiif-parser/v4/ContentResource/f184370f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "id": "vault://iiif-parser/v4/ContentResource/f184370f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0ee367a7": { + "id": "vault://iiif-parser/v4/ContentResource/0ee367a7", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "id": "vault://iiif-parser/v4/ContentResource/0ee367a7", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/08c631f1": { + "id": "vault://iiif-parser/v4/ContentResource/08c631f1", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "top", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "id": "vault://iiif-parser/v4/ContentResource/08c631f1", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ffc2e88d": { + "id": "vault://iiif-parser/v4/ContentResource/ffc2e88d", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "dim2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "id": "vault://iiif-parser/v4/ContentResource/ffc2e88d", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/882adc77": { + "id": "vault://iiif-parser/v4/ContentResource/882adc77", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "id": "vault://iiif-parser/v4/ContentResource/882adc77", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/7bf137e0": { + "id": "vault://iiif-parser/v4/ContentResource/7bf137e0", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "id": "vault://iiif-parser/v4/ContentResource/7bf137e0", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/158a874f": { + "id": "vault://iiif-parser/v4/ContentResource/158a874f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "id": "vault://iiif-parser/v4/ContentResource/158a874f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0c061cde": { + "id": "vault://iiif-parser/v4/ContentResource/0c061cde", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "top", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "id": "vault://iiif-parser/v4/ContentResource/0c061cde", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/257def69": { + "id": "vault://iiif-parser/v4/ContentResource/257def69", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Transliteration", + "value": "re", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "id": "vault://iiif-parser/v4/ContentResource/257def69", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/94ed7f16": { + "id": "vault://iiif-parser/v4/ContentResource/94ed7f16", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Column", + "value": "", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "id": "vault://iiif-parser/v4/ContentResource/94ed7f16", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/aa8b7a22": { + "id": "vault://iiif-parser/v4/ContentResource/aa8b7a22", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "id": "vault://iiif-parser/v4/ContentResource/aa8b7a22", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ed1753e3": { + "id": "vault://iiif-parser/v4/ContentResource/ed1753e3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "id": "vault://iiif-parser/v4/ContentResource/ed1753e3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/0801363f": { + "id": "vault://iiif-parser/v4/ContentResource/0801363f", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "TabletSide", + "value": "top", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "id": "vault://iiif-parser/v4/ContentResource/0801363f", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB", + "type": "ImageService2", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB/full/full/0/default.jpg", + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/d66affb5": { + "id": "vault://iiif-parser/v4/Selector/d66affb5", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/06d6e61e": { + "id": "vault://iiif-parser/v4/Selector/06d6e61e", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1a4bfab4": { + "id": "vault://iiif-parser/v4/Selector/1a4bfab4", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/775c59da": { + "id": "vault://iiif-parser/v4/Selector/775c59da", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/2fa4c8e7": { + "id": "vault://iiif-parser/v4/Selector/2fa4c8e7", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/c4fd9c41": { + "id": "vault://iiif-parser/v4/Selector/c4fd9c41", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/265bbf3d": { + "id": "vault://iiif-parser/v4/Selector/265bbf3d", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/dfe1ced8": { + "id": "vault://iiif-parser/v4/Selector/dfe1ced8", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/35d2d3f5": { + "id": "vault://iiif-parser/v4/Selector/35d2d3f5", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/15a1f6ca": { + "id": "vault://iiif-parser/v4/Selector/15a1f6ca", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/2fba2d0d": { + "id": "vault://iiif-parser/v4/Selector/2fba2d0d", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/661a3332": { + "id": "vault://iiif-parser/v4/Selector/661a3332", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/8504731b": { + "id": "vault://iiif-parser/v4/Selector/8504731b", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/afb33e7b": { + "id": "vault://iiif-parser/v4/Selector/afb33e7b", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/5a3631ed": { + "id": "vault://iiif-parser/v4/Selector/5a3631ed", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/ba7e9784": { + "id": "vault://iiif-parser/v4/Selector/ba7e9784", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/68b5a7fc": { + "id": "vault://iiif-parser/v4/Selector/68b5a7fc", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/3636cbf5": { + "id": "vault://iiif-parser/v4/Selector/3636cbf5", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/0878fe80": { + "id": "vault://iiif-parser/v4/Selector/0878fe80", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/29d525bd": { + "id": "vault://iiif-parser/v4/Selector/29d525bd", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/8235531e": { + "id": "vault://iiif-parser/v4/Selector/8235531e", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/3116ceb8": { + "id": "vault://iiif-parser/v4/Selector/3116ceb8", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4ca9d350": { + "id": "vault://iiif-parser/v4/Selector/4ca9d350", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/51712143": { + "id": "vault://iiif-parser/v4/Selector/51712143", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/79a84595": { + "id": "vault://iiif-parser/v4/Selector/79a84595", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/9777fe41": { + "id": "vault://iiif-parser/v4/Selector/9777fe41", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/534de380": { + "id": "vault://iiif-parser/v4/Selector/534de380", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/e2b9ed0f": { + "id": "vault://iiif-parser/v4/Selector/e2b9ed0f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/09d8e3ad": { + "id": "vault://iiif-parser/v4/Selector/09d8e3ad", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/97406f8b": { + "id": "vault://iiif-parser/v4/Selector/97406f8b", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/0d77f4fc": { + "id": "vault://iiif-parser/v4/Selector/0d77f4fc", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/7081b5b4": { + "id": "vault://iiif-parser/v4/Selector/7081b5b4", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/fabc3298": { + "id": "vault://iiif-parser/v4/Selector/fabc3298", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/75bdb340": { + "id": "vault://iiif-parser/v4/Selector/75bdb340", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/c5b64ed7": { + "id": "vault://iiif-parser/v4/Selector/c5b64ed7", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/48041079": { + "id": "vault://iiif-parser/v4/Selector/48041079", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/8089c84f": { + "id": "vault://iiif-parser/v4/Selector/8089c84f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/cc858fac": { + "id": "vault://iiif-parser/v4/Selector/cc858fac", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/10719c53": { + "id": "vault://iiif-parser/v4/Selector/10719c53", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/105a4c12": { + "id": "vault://iiif-parser/v4/Selector/105a4c12", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/9397b99a": { + "id": "vault://iiif-parser/v4/Selector/9397b99a", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/efd8db59": { + "id": "vault://iiif-parser/v4/Selector/efd8db59", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/9217e410": { + "id": "vault://iiif-parser/v4/Selector/9217e410", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/ae13886d": { + "id": "vault://iiif-parser/v4/Selector/ae13886d", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/d747abc6": { + "id": "vault://iiif-parser/v4/Selector/d747abc6", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/eed03075": { + "id": "vault://iiif-parser/v4/Selector/eed03075", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/5af95b35": { + "id": "vault://iiif-parser/v4/Selector/5af95b35", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b6b36635": { + "id": "vault://iiif-parser/v4/Selector/b6b36635", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f7ea9aeb": { + "id": "vault://iiif-parser/v4/Selector/f7ea9aeb", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/21048b62": { + "id": "vault://iiif-parser/v4/Selector/21048b62", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6610d713": { + "id": "vault://iiif-parser/v4/Selector/6610d713", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/40843e6d": { + "id": "vault://iiif-parser/v4/Selector/40843e6d", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1049c1ac": { + "id": "vault://iiif-parser/v4/Selector/1049c1ac", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/57f25574": { + "id": "vault://iiif-parser/v4/Selector/57f25574", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/337830e3": { + "id": "vault://iiif-parser/v4/Selector/337830e3", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/e63f2c53": { + "id": "vault://iiif-parser/v4/Selector/e63f2c53", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/d63f2cb5": { + "id": "vault://iiif-parser/v4/Selector/d63f2cb5", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/95f78de4": { + "id": "vault://iiif-parser/v4/Selector/95f78de4", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/bc1c4239": { + "id": "vault://iiif-parser/v4/Selector/bc1c4239", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f0c56640": { + "id": "vault://iiif-parser/v4/Selector/f0c56640", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6ca97227": { + "id": "vault://iiif-parser/v4/Selector/6ca97227", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6fce2d86": { + "id": "vault://iiif-parser/v4/Selector/6fce2d86", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/a4bd1c98": { + "id": "vault://iiif-parser/v4/Selector/a4bd1c98", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1ebf9759": { + "id": "vault://iiif-parser/v4/Selector/1ebf9759", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/92c16eb2": { + "id": "vault://iiif-parser/v4/Selector/92c16eb2", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/2b694895": { + "id": "vault://iiif-parser/v4/Selector/2b694895", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/bc0aab92": { + "id": "vault://iiif-parser/v4/Selector/bc0aab92", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/93526ebe": { + "id": "vault://iiif-parser/v4/Selector/93526ebe", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/3fd5ab2d": { + "id": "vault://iiif-parser/v4/Selector/3fd5ab2d", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/bc29424c": { + "id": "vault://iiif-parser/v4/Selector/bc29424c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/34ad7c19": { + "id": "vault://iiif-parser/v4/Selector/34ad7c19", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1528ae90": { + "id": "vault://iiif-parser/v4/Selector/1528ae90", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b4f39aa3": { + "id": "vault://iiif-parser/v4/Selector/b4f39aa3", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/43375741": { + "id": "vault://iiif-parser/v4/Selector/43375741", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/a6d6d05f": { + "id": "vault://iiif-parser/v4/Selector/a6d6d05f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/5aab2991": { + "id": "vault://iiif-parser/v4/Selector/5aab2991", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/a85c5294": { + "id": "vault://iiif-parser/v4/Selector/a85c5294", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b38ce55f": { + "id": "vault://iiif-parser/v4/Selector/b38ce55f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/c9d0fde6": { + "id": "vault://iiif-parser/v4/Selector/c9d0fde6", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/ac2fcdd1": { + "id": "vault://iiif-parser/v4/Selector/ac2fcdd1", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/c977b25a": { + "id": "vault://iiif-parser/v4/Selector/c977b25a", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/cc9d3ffc": { + "id": "vault://iiif-parser/v4/Selector/cc9d3ffc", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/56f58297": { + "id": "vault://iiif-parser/v4/Selector/56f58297", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/10a093df": { + "id": "vault://iiif-parser/v4/Selector/10a093df", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/29035b9c": { + "id": "vault://iiif-parser/v4/Selector/29035b9c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/ded18b41": { + "id": "vault://iiif-parser/v4/Selector/ded18b41", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b47307b4": { + "id": "vault://iiif-parser/v4/Selector/b47307b4", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/5dffd0c8": { + "id": "vault://iiif-parser/v4/Selector/5dffd0c8", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6739f63d": { + "id": "vault://iiif-parser/v4/Selector/6739f63d", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/92c05f33": { + "id": "vault://iiif-parser/v4/Selector/92c05f33", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/fa775153": { + "id": "vault://iiif-parser/v4/Selector/fa775153", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/59175bf8": { + "id": "vault://iiif-parser/v4/Selector/59175bf8", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1bbfae55": { + "id": "vault://iiif-parser/v4/Selector/1bbfae55", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/a04ac357": { + "id": "vault://iiif-parser/v4/Selector/a04ac357", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/18a85b8a": { + "id": "vault://iiif-parser/v4/Selector/18a85b8a", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4c3fd3d2": { + "id": "vault://iiif-parser/v4/Selector/4c3fd3d2", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/eec45e54": { + "id": "vault://iiif-parser/v4/Selector/eec45e54", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/15c666de": { + "id": "vault://iiif-parser/v4/Selector/15c666de", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/deaa4d11": { + "id": "vault://iiif-parser/v4/Selector/deaa4d11", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/20e4a2cc": { + "id": "vault://iiif-parser/v4/Selector/20e4a2cc", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/7fa399": { + "id": "vault://iiif-parser/v4/Selector/7fa399", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/d69aa485": { + "id": "vault://iiif-parser/v4/Selector/d69aa485", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/e0df1661": { + "id": "vault://iiif-parser/v4/Selector/e0df1661", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/99217d40": { + "id": "vault://iiif-parser/v4/Selector/99217d40", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f18ddc21": { + "id": "vault://iiif-parser/v4/Selector/f18ddc21", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/dbebb56e": { + "id": "vault://iiif-parser/v4/Selector/dbebb56e", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f437d6a3": { + "id": "vault://iiif-parser/v4/Selector/f437d6a3", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/a4a026c0": { + "id": "vault://iiif-parser/v4/Selector/a4a026c0", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/3118c09c": { + "id": "vault://iiif-parser/v4/Selector/3118c09c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/e4c22178": { + "id": "vault://iiif-parser/v4/Selector/e4c22178", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/259a3941": { + "id": "vault://iiif-parser/v4/Selector/259a3941", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6cc127a3": { + "id": "vault://iiif-parser/v4/Selector/6cc127a3", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f2ca0807": { + "id": "vault://iiif-parser/v4/Selector/f2ca0807", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/820b2793": { + "id": "vault://iiif-parser/v4/Selector/820b2793", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4011609f": { + "id": "vault://iiif-parser/v4/Selector/4011609f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/63b6fd11": { + "id": "vault://iiif-parser/v4/Selector/63b6fd11", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/d8307259": { + "id": "vault://iiif-parser/v4/Selector/d8307259", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6c3f0032": { + "id": "vault://iiif-parser/v4/Selector/6c3f0032", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/0c2b735c": { + "id": "vault://iiif-parser/v4/Selector/0c2b735c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f78894d1": { + "id": "vault://iiif-parser/v4/Selector/f78894d1", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4254b60f": { + "id": "vault://iiif-parser/v4/Selector/4254b60f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/53af9737": { + "id": "vault://iiif-parser/v4/Selector/53af9737", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1810719b": { + "id": "vault://iiif-parser/v4/Selector/1810719b", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4870e8ea": { + "id": "vault://iiif-parser/v4/Selector/4870e8ea", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/e808d913": { + "id": "vault://iiif-parser/v4/Selector/e808d913", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4ddfce16": { + "id": "vault://iiif-parser/v4/Selector/4ddfce16", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/07669bbe": { + "id": "vault://iiif-parser/v4/Selector/07669bbe", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/01d40801": { + "id": "vault://iiif-parser/v4/Selector/01d40801", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/20ae6eda": { + "id": "vault://iiif-parser/v4/Selector/20ae6eda", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/21872b1a": { + "id": "vault://iiif-parser/v4/Selector/21872b1a", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/d23fbea8": { + "id": "vault://iiif-parser/v4/Selector/d23fbea8", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/dbac45b1": { + "id": "vault://iiif-parser/v4/Selector/dbac45b1", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/0894956f": { + "id": "vault://iiif-parser/v4/Selector/0894956f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/bdf4e19c": { + "id": "vault://iiif-parser/v4/Selector/bdf4e19c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4dbdb69f": { + "id": "vault://iiif-parser/v4/Selector/4dbdb69f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6495b9e4": { + "id": "vault://iiif-parser/v4/Selector/6495b9e4", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/ee2ff5df": { + "id": "vault://iiif-parser/v4/Selector/ee2ff5df", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/dbae78ac": { + "id": "vault://iiif-parser/v4/Selector/dbae78ac", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b36fee81": { + "id": "vault://iiif-parser/v4/Selector/b36fee81", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/17ba9ec2": { + "id": "vault://iiif-parser/v4/Selector/17ba9ec2", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/dff93ab7": { + "id": "vault://iiif-parser/v4/Selector/dff93ab7", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4cf22601": { + "id": "vault://iiif-parser/v4/Selector/4cf22601", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/ca27ab11": { + "id": "vault://iiif-parser/v4/Selector/ca27ab11", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/14a60109": { + "id": "vault://iiif-parser/v4/Selector/14a60109", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6a12c627": { + "id": "vault://iiif-parser/v4/Selector/6a12c627", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/eb446487": { + "id": "vault://iiif-parser/v4/Selector/eb446487", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1b0ab58e": { + "id": "vault://iiif-parser/v4/Selector/1b0ab58e", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/5654f5fe": { + "id": "vault://iiif-parser/v4/Selector/5654f5fe", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f670c6d9": { + "id": "vault://iiif-parser/v4/Selector/f670c6d9", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1bef5105": { + "id": "vault://iiif-parser/v4/Selector/1bef5105", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/040edca5": { + "id": "vault://iiif-parser/v4/Selector/040edca5", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1938ff80": { + "id": "vault://iiif-parser/v4/Selector/1938ff80", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/12ea2ec9": { + "id": "vault://iiif-parser/v4/Selector/12ea2ec9", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f264951c": { + "id": "vault://iiif-parser/v4/Selector/f264951c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b59bbaea": { + "id": "vault://iiif-parser/v4/Selector/b59bbaea", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/461a51a3": { + "id": "vault://iiif-parser/v4/Selector/461a51a3", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/2cf83fbb": { + "id": "vault://iiif-parser/v4/Selector/2cf83fbb", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/aba90e1c": { + "id": "vault://iiif-parser/v4/Selector/aba90e1c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/0cedb40c": { + "id": "vault://iiif-parser/v4/Selector/0cedb40c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/25c6450e": { + "id": "vault://iiif-parser/v4/Selector/25c6450e", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/ab64645c": { + "id": "vault://iiif-parser/v4/Selector/ab64645c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/9e353869": { + "id": "vault://iiif-parser/v4/Selector/9e353869", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/ae12a24b": { + "id": "vault://iiif-parser/v4/Selector/ae12a24b", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/fa0ec39f": { + "id": "vault://iiif-parser/v4/Selector/fa0ec39f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/e6c96935": { + "id": "vault://iiif-parser/v4/Selector/e6c96935", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/6eef52c5": { + "id": "vault://iiif-parser/v4/Selector/6eef52c5", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/396e6209": { + "id": "vault://iiif-parser/v4/Selector/396e6209", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4d9138b2": { + "id": "vault://iiif-parser/v4/Selector/4d9138b2", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/210dcfca": { + "id": "vault://iiif-parser/v4/Selector/210dcfca", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/7cdc3760": { + "id": "vault://iiif-parser/v4/Selector/7cdc3760", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/376b521c": { + "id": "vault://iiif-parser/v4/Selector/376b521c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f94dac7a": { + "id": "vault://iiif-parser/v4/Selector/f94dac7a", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b1666ebc": { + "id": "vault://iiif-parser/v4/Selector/b1666ebc", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/f46b74": { + "id": "vault://iiif-parser/v4/Selector/f46b74", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/4f4a4b50": { + "id": "vault://iiif-parser/v4/Selector/4f4a4b50", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/91d2d63f": { + "id": "vault://iiif-parser/v4/Selector/91d2d63f", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/c7ae8de5": { + "id": "vault://iiif-parser/v4/Selector/c7ae8de5", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b6d8ddad": { + "id": "vault://iiif-parser/v4/Selector/b6d8ddad", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/0d22060b": { + "id": "vault://iiif-parser/v4/Selector/0d22060b", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/49987e3d": { + "id": "vault://iiif-parser/v4/Selector/49987e3d", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/03b55f90": { + "id": "vault://iiif-parser/v4/Selector/03b55f90", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/c8edb66e": { + "id": "vault://iiif-parser/v4/Selector/c8edb66e", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/1df9cc2a": { + "id": "vault://iiif-parser/v4/Selector/1df9cc2a", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/d862568e": { + "id": "vault://iiif-parser/v4/Selector/d862568e", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/b7ea8318": { + "id": "vault://iiif-parser/v4/Selector/b7ea8318", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/31254a48": { + "id": "vault://iiif-parser/v4/Selector/31254a48", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/24b63558": { + "id": "vault://iiif-parser/v4/Selector/24b63558", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/7b99c3af": { + "id": "vault://iiif-parser/v4/Selector/7b99c3af", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/978d618c": { + "id": "vault://iiif-parser/v4/Selector/978d618c", + "type": "SvgSelector", + "selectors": [], + "value": "" + }, + "vault://iiif-parser/v4/Selector/fcf8619f": { + "id": "vault://iiif-parser/v4/Selector/fcf8619f", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_has_part": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Canvas with a single IIIF image" + ] + }, + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {}, + "height": {}, + "width": {} + }, + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {}, + "language": [], + "service": [], + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen": { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_ldmax": { + "Collection": { + "https://www.ldmax.nl/datasets/q4350196.jsonld": { + "id": "https://www.ldmax.nl/datasets/q4350196.jsonld", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://www.ldmax.nl/datasets/q4350196.jsonld", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json": { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "type": "Manifest", + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "nl": [ + "Datum gemaakt" + ] + }, + "value": { + "nl": [ + "2025-06-05T15:01:51" + ] + } + }, + { + "label": { + "nl": [ + "Datum gewijzigd" + ] + }, + "value": { + "nl": [ + "2025-06-05T15:14:31" + ] + } + }, + { + "label": { + "nl": [ + "dateCreated" + ] + }, + "value": { + "nl": [ + "1938" + ] + } + }, + { + "label": { + "nl": [ + "beschrijving" + ] + }, + "value": { + "nl": [ + "De kunstenares maakte zes illustraties voor het sprookje 'Grethe het kippenvrouwtje' van H.C. Andersen." + ] + } + }, + { + "label": { + "nl": [ + "identificatie" + ] + }, + "value": { + "nl": [ + "00002" + ] + } + }, + { + "label": { + "nl": [ + "itemLocatie" + ] + }, + "value": { + "nl": [ + "KO.rek06.40" + ] + } + }, + { + "label": { + "nl": [ + "naam" + ] + }, + "value": { + "nl": [ + "De familie van Grenthe, het kippenvrouwtje" + ] + } + } + ], + "provider": [ + { + "id": "http://www.museumkranenburgh.nl", + "type": "Agent" + } + ], + "thumbnail": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "ContentResource" + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [ + "paged" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://www.ldmax.nl/datasets/q4350196/triples?subject=https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [ + { + "id": "https://www.ldmax.nl/datasets/q4350196.jsonld", + "type": "Collection" + } + ], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "nl": [ + "De familie van Grenthe, het kippenvrouwtje" + ] + }, + "summary": { + "nl": [ + "De kunstenares maakte zes illustraties voor het sprookje 'Grethe het kippenvrouwtje' van H.C. Andersen." + ] + }, + "viewingDirection": "right-to-left", + "rights": "http://creativecommons.org/licenses/by/4.0", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ], + "nl": [ + "Naamsvermelding" + ] + }, + "value": { + "en": [ + "Provided by Museum Kranenburgh" + ], + "nl": [ + "Aangeboden door Museum Kranenburgh" + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1": { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "type": "Canvas", + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "p. 1" + ] + }, + "height": 1000, + "width": 750, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation": { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation", + "type": "AnnotationPage", + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation/image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 1000, + "width": 750, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation/image": { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/body", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation", + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation/image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/body": { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/body", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180", + "type": "ImageService3", + "service": [], + "profile": "level3" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation/image", + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/body", + "type": "Image" + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "Image" + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "Image" + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "Image" + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "Image" + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "Image" + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "Image" + } + ] + }, + "https://www.ldmax.nl/datasets/q4350196/triples?subject=https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71": { + "id": "https://www.ldmax.nl/datasets/q4350196/triples?subject=https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "nl": [ + "Detailpagina" + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "https://www.ldmax.nl/datasets/q4350196/triples?subject=https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71", + "type": "Text" + } + ] + }, + "https://www.ldmax.nl/organisaties/q4350196.jsonld": { + "id": "https://www.ldmax.nl/organisaties/q4350196.jsonld", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/ld+json", + "profile": "https://schema.org/", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.museumkranenburgh.nl", + "id": "https://www.ldmax.nl/organisaties/q4350196.jsonld", + "type": "Dataset" + } + ] + }, + "https://www.ldmax.nl/organisaties/q4350196.ttl": { + "id": "https://www.ldmax.nl/organisaties/q4350196.ttl", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "text/turtle", + "profile": "https://schema.org/", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.museumkranenburgh.nl", + "id": "https://www.ldmax.nl/organisaties/q4350196.ttl", + "type": "Dataset" + } + ] + }, + "https://www.ldmax.nl/organisaties/q4350196.nt": { + "id": "https://www.ldmax.nl/organisaties/q4350196.nt", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "application/n-triples", + "profile": "https://schema.org/", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "http://www.museumkranenburgh.nl", + "id": "https://www.ldmax.nl/organisaties/q4350196.nt", + "type": "Dataset" + } + ] + } + }, + "Range": {}, + "Service": { + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180", + "type": "ImageService3", + "service": [], + "profile": "level3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/body", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + }, + "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg": { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "ImageService3", + "service": [], + "profile": "level3", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": { + "http://www.museumkranenburgh.nl": { + "id": "http://www.museumkranenburgh.nl", + "type": "Agent", + "logo": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [ + { + "id": "https://www.ldmax.nl/organisaties/q4350196.jsonld", + "type": "ContentResource" + }, + { + "id": "https://www.ldmax.nl/organisaties/q4350196.ttl", + "type": "ContentResource" + }, + { + "id": "https://www.ldmax.nl/organisaties/q4350196.nt", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "Museum Kranenburgh" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "id": "http://www.museumkranenburgh.nl", + "type": "Agent" + } + ] + } + }, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_ocean_liners": { + "Collection": {}, + "Manifest": { + "https://iiif.vam.ac.uk/collections/O1023003/manifest.json": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "value": { + "en": [ + "E.1829-2004" + ] + }, + "label": { + "en": [ + "Museum number" + ] + } + }, + { + "value": { + "en": [ + "Cunard Line - to all parts of the world" + ] + }, + "label": { + "en": [ + "title" + ] + } + }, + { + "value": { + "en": [ + "Chromolithograph travel poster for \"Cunard Line - to all parts of the world\", depicting a cross section of the Aquitania at sea, printed by Thos. Forman & Sons, Nottingham, ca. 1920." + ] + }, + "label": { + "en": [ + "Descriptive Line" + ] + } + }, + { + "value": { + "en": [ + "PDP" + ] + }, + "label": { + "en": [ + "Collection" + ] + } + }, + { + "value": { + "en": [ + "Nottingham (printed)" + ] + }, + "label": { + "en": [ + "Place" + ] + } + }, + { + "value": { + "en": [ + "chromolithograph" + ] + }, + "label": { + "en": [ + "Materials & Techniques" + ] + } + }, + { + "value": { + "en": [ + "ca. 1920 (made)" + ] + }, + "label": { + "en": [ + "Date" + ] + } + }, + { + "value": { + "en": [ + "Posters;Boats and ships;Tourism & Travel" + ] + }, + "label": { + "en": [ + "Categories" + ] + } + }, + { + "value": { + "en": [ + "Chromolithograph travel poster for \"Cunard Line - to all parts of the world\", depicting a cross section of the Aquitania at sea, printed by Thos. Forman & Sons, Nottingham, ca. 1920." + ] + }, + "label": { + "en": [ + "Description" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [ + "individuals" + ], + "seeAlso": [ + { + "id": "https://collections.vam.ac.uk/item/O1023003.jsonld", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Cunard Line - to all parts of the world" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/manifest.json", + "id": "https://iiif.vam.ac.uk/collections/O1023003/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "items": [ + { + "id": "vault://iiif-parser/v4/AnnotationPage/77305cd9", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a2", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a3", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a4", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a5", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a6", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a7", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a8", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a9", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a10", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/manifest.json", + "@explicit": true, + "label": {}, + "width": {}, + "height": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "vault://iiif-parser/v4/AnnotationPage/77305cd9", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "type": "AnnotationPage" + } + ], + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Object image 0" + ] + }, + "width": 3788, + "height": 6000 + } + }, + "Scene": {}, + "AnnotationPage": { + "vault://iiif-parser/v4/AnnotationPage/77305cd9": { + "id": "vault://iiif-parser/v4/AnnotationPage/77305cd9", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/anno/a1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "id": "vault://iiif-parser/v4/AnnotationPage/77305cd9", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a1", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a2", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a3", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a4", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a5", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a6", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a7", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a8", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a9", + "type": "Annotation" + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a10", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.vam.ac.uk/collections/O1023003/anno/a1": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/anno/a1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://framemark.vam.ac.uk/collections/2013GU2911/full/full/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a1": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a1", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/01f4956c", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9177e8b7", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1800,2000,500,500" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a1", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a2": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a2", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/140f5c04", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/edc159de", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=3000,2100,100,200" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a2", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a3": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a3", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/45224861", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/33702816", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=2000,2800,400,400" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a3", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a4": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a4", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a87383b9", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e508d35e", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1400,2500,100,200" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a4", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a5": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a5", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/270724ab", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/2d4fcf93", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=2450,3800,100,200" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a5", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a6": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a6", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/4b9b03cc", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/f1276264", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=800,3500,100,200" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a6", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a7": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a7", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/63933af2", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/dd38fa51", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=2500,4500,500,800" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a7", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a8": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a8", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/69b04f78", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1b3ec9bf", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=3000,4000,100,200" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a8", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a9": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a9", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/cfefd5e3", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/53125a70", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=2100,4000,100,200" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a9", + "type": "Annotation" + } + ] + }, + "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a10": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a10", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/d6f36235", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/5512a536", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1500,3250,100,200" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a10", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://framemark.vam.ac.uk/collections/2013GU2911/full/full/0/default.jpg": { + "id": "https://framemark.vam.ac.uk/collections/2013GU2911/full/full/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://framemark.vam.ac.uk/collections/2013GU2911", + "type": "ImageService2", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 6000, + "width": 3788, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/anno/a1", + "id": "https://framemark.vam.ac.uk/collections/2013GU2911/full/full/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/01f4956c": { + "id": "vault://iiif-parser/v4/ContentResource/01f4956c", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

First-class lounge

First-class public rooms were located in the centre of the ship – the most stable and comfortable areas on board. The Aquitania's opulent interiors were inspired by classical architecture – spot the Ionic columns in the lounge. Architect Arthur Davis recommended the use of plaster and papier-mâché for ceilings, domes, and other decorative moulding, but advised against using marble and brickwork, as these would make the ship top-heavy.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a1", + "id": "vault://iiif-parser/v4/ContentResource/01f4956c", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/140f5c04": { + "id": "vault://iiif-parser/v4/ContentResource/140f5c04", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Garden lounge

“As cool, as restful, as any terrace overlooking a rose-garden.” (The New Art of Going Abroad, 1929). Overlooking the sea and decorated with palms, the garden lounge was a fashionable place to have tea and was sometimes used for dancing.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a2", + "id": "vault://iiif-parser/v4/ContentResource/140f5c04", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/45224861": { + "id": "vault://iiif-parser/v4/ContentResource/45224861", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

First-class restaurant

Dining on ocean liners was a radically different experience depending on the class of travel. In first class, the Aquitania’s Louis XVI-style dining room offered seating in small isolated groups, echoing elegant restaurants on land. The ship’s architect, Arthur Davis, explained that a “cheerful room with comfortable surroundings” was a necessary distraction from “the often very unpleasant conditions” at sea.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a3", + "id": "vault://iiif-parser/v4/ContentResource/45224861", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a87383b9": { + "id": "vault://iiif-parser/v4/ContentResource/a87383b9", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

First-class state room

The Aquitania’s first-class cabins were designed by architect Arthur Davis, whose firm, Mewès and Davis Architects, had decorated the famously opulent Ritz hotels in Paris and London. The cabins were “as spacious as a bedroom at the Ritz or the Barclay. The walls are panelled in grey silk. The carpets are vibrant blue and yellow, as are also the striped silk chair coverings. Note the bath – just off-stage, and the electric heater”. (The New Art of Going Abroad, 1929).

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a4", + "id": "vault://iiif-parser/v4/ContentResource/a87383b9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/270724ab": { + "id": "vault://iiif-parser/v4/ContentResource/270724ab", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Third-class dining saloon

While extravagant dishes and refined delicacies were served in first class, third-class meals were less sophisticated. A third-class lunch on a Cunard ship in the 1920s could include rice soup, boiled haddock or braised beef with cabbage, boiled potatoes, bread and ‘cabin biscuits’, followed by bread and butter pudding. To save space, passengers sat at long communal tables on chairs bolted to the floor, in case of bad weather.

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a5", + "id": "vault://iiif-parser/v4/ContentResource/270724ab", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/4b9b03cc": { + "id": "vault://iiif-parser/v4/ContentResource/4b9b03cc", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Third-class four berth room

Liners were strictly organised spaces which reflected social hierarchies. Although people travelling in third class could account for 60% of the total number of passengers, they were segregated into a relatively small space in the lower decks of the ship, close to the noisy engine room. These four-berth rooms had none of the luxurious furnishings or fabrics found in first class, but they were an improvement on the communal sleeping quarters provided for steerage-class passengers on earlier liners.

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a6", + "id": "vault://iiif-parser/v4/ContentResource/4b9b03cc", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/63933af2": { + "id": "vault://iiif-parser/v4/ContentResource/63933af2", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Boiler room

In 1919 the Aquitania was refitted and converted from coal-burning to oil-burning engines, which meant fewer crew were required to labour in the engine room.

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a7", + "id": "vault://iiif-parser/v4/ContentResource/63933af2", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/69b04f78": { + "id": "vault://iiif-parser/v4/ContentResource/69b04f78", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Stores

Ocean liners required huge quantities of food, enough for all crew and passengers – the equivalent to feeding a floating city. Cunard catered for varied tastes. Provisions for one trip included 500 sheep kidneys, 400 ox tails, 800 tongues and large quantities of frogs’ legs, as well as geese, turkey, duck, game and “75 heads of cattle and calfs”.

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a8", + "id": "vault://iiif-parser/v4/ContentResource/69b04f78", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/cfefd5e3": { + "id": "vault://iiif-parser/v4/ContentResource/cfefd5e3", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Baggage

Passengers travelling for weeks or months would bring a huge number of trunks, most of which were kept in the baggage store deep in the hull of the ship. Cabins could only accommodate smaller trunks. Louis Vuitton designed the ‘steamer trunk’ specifically to fit under a first-class cabin bed. The baggage store was opened daily so that maids or stewards could collect personal items that were needed during the voyage.

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a9", + "id": "vault://iiif-parser/v4/ContentResource/cfefd5e3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/d6f36235": { + "id": "vault://iiif-parser/v4/ContentResource/d6f36235", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Second-class dining saloon

The second-class spaces, like first class, were decorated in a neo-classical style. “The second-class accommodation on the vessel, though not so sumptuous as the first-class, is still very elaborate and comfortable”, explained the architect. “The dining-room, no less than 104 ft in length and extending across the whole width of the ship, is decorated with paintings adapted from panels by Pergolesi”– the 18th-century decorative artist. (Arthur Davis, The Architectural Review, April 1914)

", + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a10", + "id": "vault://iiif-parser/v4/ContentResource/d6f36235", + "type": "TextualBody" + } + ] + }, + "https://collections.vam.ac.uk/item/O1023003.jsonld": { + "id": "https://collections.vam.ac.uk/item/O1023003.jsonld", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@format": "application/ld+json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.vam.ac.uk/collections/O1023003/manifest.json", + "id": "https://collections.vam.ac.uk/item/O1023003.jsonld", + "type": "Dataset" + } + ] + } + }, + "Range": {}, + "Service": { + "https://framemark.vam.ac.uk/collections/2013GU2911": { + "id": "https://framemark.vam.ac.uk/collections/2013GU2911", + "type": "ImageService2", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://framemark.vam.ac.uk/collections/2013GU2911/full/full/0/default.jpg", + "id": "https://framemark.vam.ac.uk/collections/2013GU2911", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/9177e8b7": { + "id": "vault://iiif-parser/v4/Selector/9177e8b7", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1800,2000,500,500" + }, + "vault://iiif-parser/v4/Selector/edc159de": { + "id": "vault://iiif-parser/v4/Selector/edc159de", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=3000,2100,100,200" + }, + "vault://iiif-parser/v4/Selector/33702816": { + "id": "vault://iiif-parser/v4/Selector/33702816", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=2000,2800,400,400" + }, + "vault://iiif-parser/v4/Selector/e508d35e": { + "id": "vault://iiif-parser/v4/Selector/e508d35e", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1400,2500,100,200" + }, + "vault://iiif-parser/v4/Selector/2d4fcf93": { + "id": "vault://iiif-parser/v4/Selector/2d4fcf93", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=2450,3800,100,200" + }, + "vault://iiif-parser/v4/Selector/f1276264": { + "id": "vault://iiif-parser/v4/Selector/f1276264", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=800,3500,100,200" + }, + "vault://iiif-parser/v4/Selector/dd38fa51": { + "id": "vault://iiif-parser/v4/Selector/dd38fa51", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=2500,4500,500,800" + }, + "vault://iiif-parser/v4/Selector/1b3ec9bf": { + "id": "vault://iiif-parser/v4/Selector/1b3ec9bf", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=3000,4000,100,200" + }, + "vault://iiif-parser/v4/Selector/53125a70": { + "id": "vault://iiif-parser/v4/Selector/53125a70", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=2100,4000,100,200" + }, + "vault://iiif-parser/v4/Selector/5512a536": { + "id": "vault://iiif-parser/v4/Selector/5512a536", + "type": "FragmentSelector", + "selectors": [], + "value": "xywh=1500,3250,100,200" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_specific_resource_infer": { + "Collection": {}, + "Manifest": { + "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest", + "type": "Manifest", + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [ + { + "label": { + "none": [ + "Creator" + ] + }, + "value": { + "none": [ + "Ian David McCrabb" + ] + } + }, + { + "label": { + "none": [ + "Date Created" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Modified" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Published" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:19.000000Z" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "none": [ + "Schist Buddha Triad (year 5)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest", + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas", + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest", + "@explicit": true, + "label": {}, + "summary": {}, + "width": {}, + "height": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13", + "type": "AnnotationPage" + } + ], + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas" + } + ], + "label": { + "none": [ + "Year 5 Buddha Triad" + ] + }, + "summary": { + "none": [ + "Year 5 Buddha Triad" + ] + }, + "width": 8058, + "height": 9856 + } + }, + "Scene": {}, + "AnnotationPage": { + "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page/annotation", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page", + "type": "AnnotationPage" + } + ] + }, + "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13", + "type": "AnnotationPage", + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "type": "Annotation" + } + ], + "metadata": [ + { + "label": { + "none": [ + "Identifier" + ] + }, + "value": { + "none": [ + 13 + ] + } + }, + { + "label": { + "none": [ + "Creator" + ] + }, + "value": { + "none": [ + "Ian David McCrabb" + ] + } + }, + { + "label": { + "none": [ + "Date Created" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Modified" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:10.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Published" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:10.000000Z" + ] + } + } + ], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "Annotations" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page/annotation": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D/full/max/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page", + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page/annotation", + "type": "Annotation" + } + ] + }, + "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/25a023f3", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fb243508", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/55765aea", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/ec242f84", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/fd765be9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/91a3fc20", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/e7d1e09f", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/adbeb5ae", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c8afd5e9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/8ead1776", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/e8e4aff3", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "created": "2024-01-14T23:24:15.000000Z", + "modified": "2024-01-14T23:24:15.000000Z", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13", + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D/full/max/0/default.jpg": { + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D", + "type": "ImageService3", + "service": [], + "profile": "level2" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "width": 8058, + "height": 9856, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page/annotation", + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D/full/max/0/default.jpg", + "type": "Image" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/25a023f3": { + "id": "vault://iiif-parser/v4/ContentResource/25a023f3", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "describing", + "format": "text/plain", + "value": "Title: Hair", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/25a023f3", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fb243508": { + "id": "vault://iiif-parser/v4/ContentResource/fb243508", + "type": "TextualBody", + "language": [ + "it" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "describing", + "format": "text/plain", + "value": "Title: Capelli", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/fb243508", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/55765aea": { + "id": "vault://iiif-parser/v4/ContentResource/55765aea", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "describing", + "format": "text/plain", + "value": "Description: Buddha's hair, with an uṣṇīṣa.", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/55765aea", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/ec242f84": { + "id": "vault://iiif-parser/v4/ContentResource/ec242f84", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "tagging", + "format": "text/plain", + "value": "Tag: [hair parted in middle with lateral continuous waves; separate uṣṇīṣa](https://w3id.org/diga/terms/1940192311)\nVocabulary: [DiGA - The Digitization of Gandharan Artefacts Thesaurus](https://diga.skosmos.ub.rub.de/thesaurus/en/)\nData: {\"trace\":[{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"figures\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"literay persons\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"buddha\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"buddha: general features\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"hair of buddha\"}]}", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/ec242f84", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/fd765be9": { + "id": "vault://iiif-parser/v4/ContentResource/fd765be9", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "commenting", + "format": "text/plain", + "value": "Note: (Harle 1974, 132) “wavy, rolling up and inwards from the hairline on either side of a central little almond-shaped dividing point”", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/fd765be9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/91a3fc20": { + "id": "vault://iiif-parser/v4/ContentResource/91a3fc20", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "commenting", + "format": "text/plain", + "value": "Note: (Mitterwallner 1987, 217) “rendered in a systematized manner in the form of semi-circles… bound by a band”", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/91a3fc20", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e7d1e09f": { + "id": "vault://iiif-parser/v4/ContentResource/e7d1e09f", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "commenting", + "format": "text/plain", + "value": "Note: (Guy 2022, 97) “his uncut hair is drawn back in prominent waves and tied up to form a large chignon-ushnisha”", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/e7d1e09f", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/adbeb5ae": { + "id": "vault://iiif-parser/v4/ContentResource/adbeb5ae", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "commenting", + "format": "text/plain", + "value": "Attribution: Allon 2022", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/adbeb5ae", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/c8afd5e9": { + "id": "vault://iiif-parser/v4/ContentResource/c8afd5e9", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "commenting", + "format": "text/plain", + "value": "Date: 1970-01-01", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/c8afd5e9", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/8ead1776": { + "id": "vault://iiif-parser/v4/ContentResource/8ead1776", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "purpose": "classifying", + "format": "text/plain", + "value": "Line Color: Medium", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "id": "vault://iiif-parser/v4/ContentResource/8ead1776", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": { + "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D": { + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D", + "type": "ImageService3", + "service": [], + "profile": "level2", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D/full/max/0/default.jpg", + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": { + "vault://iiif-parser/v4/Selector/e8e4aff3": { + "id": "vault://iiif-parser/v4/Selector/e8e4aff3", + "type": "SvgSelector", + "selectors": [], + "value": "" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_start_canvas": { + "Collection": {}, + "Manifest": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Multiple Related Images (Book, etc.)" + ] + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "height": {}, + "width": {} + } + ] + }, + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "service": [], + "profile": "level1" + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/jpeg", + "height": 4613, + "width": 3204, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/annotation/p0001-image", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": { + "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18": { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "service": [], + "profile": "level1", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "@explicit": true, + "service": [], + "profile": {} + } + ] + } + }, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_wellcome_p3_2": { + "Collection": { + "https://iiif.wellcomecollection.org/presentation/collections/contributors/xtwzf3g5": { + "id": "https://iiif.wellcomecollection.org/presentation/collections/contributors/xtwzf3g5", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Contributor: Bolle, Fritz." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/collections/contributors/xtwzf3g5", + "type": "Collection" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/collections/subjects/hq8gcy73": { + "id": "https://iiif.wellcomecollection.org/presentation/collections/subjects/hq8gcy73", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Subject: Genetics - history" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/collections/subjects/hq8gcy73", + "type": "Collection" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/collections/genres/Pamphlets": { + "id": "https://iiif.wellcomecollection.org/presentation/collections/genres/Pamphlets", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Genre: Pamphlets" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/collections/genres/Pamphlets", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "https://iiif.wellcomecollection.org/presentation/b18035723": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723", + "type": "Manifest", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0001", + "type": "Range" + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0003", + "type": "Range" + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0002", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Publication/creation" + ] + }, + "value": { + "none": [ + "Murnau ; München : Sebastian Lux, [1951]" + ] + } + }, + { + "label": { + "en": [ + "Physical description" + ] + }, + "value": { + "en": [ + "31 pages : illustrations ; 15 cm." + ] + } + }, + { + "label": { + "en": [ + "Contributors" + ] + }, + "value": { + "none": [ + "Bolle, Fritz." + ] + } + }, + { + "label": { + "en": [ + "Type/technique" + ] + }, + "value": { + "en": [ + "Pamphlets" + ] + } + }, + { + "label": { + "en": [ + "Subjects" + ] + }, + "value": { + "en": [ + "Genetics - history" + ] + } + }, + { + "label": { + "en": [ + "Attribution and usage" + ] + }, + "value": { + "en": [ + "Wellcome Collection", + "You have permission to make copies of this work under a Creative Commons, Attribution, Non-commercial license.

Non-commercial use includes private study, academic research, teaching, and other activities that are not primarily intended for, or directed towards, commercial advantage or private monetary compensation. See the Legal Code for further information.

Image source should be attributed as specified in the full catalogue record. If no source is given the image should be attributed to Wellcome Collection.
" + ] + } + } + ], + "provider": [ + { + "id": "https://wellcomecollection.org", + "type": "Agent" + } + ], + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [ + "paged" + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/catalogue/v2/works/krqp99r9", + "type": "ContentResource" + } + ], + "service": [ + { + "id": "https://iiif.wellcomecollection.org/search/v1/b18035723", + "type": "SearchService1", + "service": [ + { + "id": "https://iiif.wellcomecollection.org/search/autocomplete/v1/b18035723", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest" + } + ], + "profile": "http://iiif.io/api/search/1/search", + "label": "Search within this manifest" + } + ], + "services": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#tracking", + "type": "Text", + "service": [], + "profile": "http://universalviewer.io/tracking-extensions-profile", + "label": { + "en": [ + "Format: Monograph, Institution: n/a, Identifier: b18035723, Digicode: diggenetics, Collection code: n/a" + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#timestamp", + "type": "Text", + "service": [], + "profile": "https://github.com/wellcomecollection/iiif-builder/build-timestamp", + "label": { + "none": [ + "2021-04-29T21:58:28.9247406Z" + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#accesscontrolhints", + "type": "Text", + "service": [], + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "label": { + "en": [ + "open" + ] + } + } + ], + "homepage": [ + { + "id": "https://wellcomecollection.org/works/krqp99r9", + "type": "ContentResource" + } + ], + "rendering": [ + { + "id": "https://iiif.wellcomecollection.org/pdf/b18035723", + "type": "ContentResource" + }, + { + "id": "https://api.wellcomecollection.org/text/v1/b18035723", + "type": "ContentResource" + } + ], + "partOf": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/contributors/xtwzf3g5", + "type": "Collection" + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/subjects/hq8gcy73", + "type": "Collection" + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/genres/Pamphlets", + "type": "Collection" + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/images", + "type": "AnnotationPage" + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Wunder der Vererbung / von Fritz Bolle." + ] + }, + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0001.JP2", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0001.JP2/line", + "type": "AnnotationPage" + } + ], + "label": { + "none": [ + "-" + ] + }, + "width": 2569, + "height": 3543, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0001.JP2", + "type": "ContentResource" + } + ], + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0001.JP2/line", + "type": "AnnotationPage" + } + ], + "label": {}, + "width": {}, + "height": {} + }, + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0001", + "@explicit": true, + "metadata": {}, + "provider": {}, + "behavior": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [], + "thumbnail": [], + "seeAlso": [], + "annotations": [], + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0003", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0002", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting/anno", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0001.JP2/line": { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0001.JP2/line", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Text of page -" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0001.JP2/line", + "type": "AnnotationPage" + } + ] + }, + "https://iiif.wellcomecollection.org/annotations/v3/b18035723/images": { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/images", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "OCR-identified images and figures for b18035723" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/images", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting/anno": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2/full/742,1024/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting/anno", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2/full/742,1024/0/default.jpg": { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2/full/742,1024/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2569, + "height": 3543 + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 742, + "height": 1024, + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting/anno", + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2/full/742,1024/0/default.jpg", + "type": "Image" + } + ] + }, + "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg": { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 742, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 145, + "height": 200 + }, + { + "width": 290, + "height": 400 + }, + { + "width": 742, + "height": 1024 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 73, + "height": 100, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg", + "type": "Image" + } + ] + }, + "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0001.JP2": { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0001.JP2", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0001.JP2", + "type": "Dataset" + } + ] + }, + "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg": { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 72, + "height": 100, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg", + "type": "Image" + } + ] + }, + "https://wellcomecollection.org/works/krqp99r9": { + "id": "https://wellcomecollection.org/works/krqp99r9", + "type": "Text", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Wunder der Vererbung / von Fritz Bolle." + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://wellcomecollection.org/works/krqp99r9", + "type": "Text" + } + ] + }, + "https://iiif.wellcomecollection.org/pdf/b18035723": { + "id": "https://iiif.wellcomecollection.org/pdf/b18035723", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "View as PDF" + ] + }, + "format": "application/pdf", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/pdf/b18035723", + "type": "Text" + } + ] + }, + "https://api.wellcomecollection.org/text/v1/b18035723": { + "id": "https://api.wellcomecollection.org/text/v1/b18035723", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "View raw text" + ] + }, + "format": "text/plain", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://api.wellcomecollection.org/text/v1/b18035723", + "type": "Text" + } + ] + }, + "https://api.wellcomecollection.org/catalogue/v2/works/krqp99r9": { + "id": "https://api.wellcomecollection.org/catalogue/v2/works/krqp99r9", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "profile": "https://api.wellcomecollection.org/catalogue/v2/context.json", + "label": { + "en": [ + "Wellcome Collection Catalogue API" + ] + }, + "format": "application/json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://api.wellcomecollection.org/catalogue/v2/works/krqp99r9", + "type": "Dataset" + } + ] + }, + "https://wellcomecollection.org/works": { + "id": "https://wellcomecollection.org/works", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Explore our collections" + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://wellcomecollection.org", + "id": "https://wellcomecollection.org/works", + "type": "Text" + } + ] + }, + "https://iiif.wellcomecollection.org/logos/wellcome-collection-black.png": { + "id": "https://iiif.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://wellcomecollection.org", + "id": "https://iiif.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0001": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0001", + "type": "Range", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "Front Cover" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0001", + "type": "Range" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0003": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0003", + "type": "Range", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "Title Page" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0003", + "type": "Range" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0002": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0002", + "type": "Range", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "Back Cover" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0002", + "type": "Range" + } + ] + } + }, + "Service": { + "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2": { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2569, + "height": 3543, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2/full/742,1024/0/default.jpg", + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {}, + "width": {}, + "height": {} + } + ] + }, + "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2": { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 742, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 145, + "height": 200 + }, + { + "width": 290, + "height": 400 + }, + { + "width": 742, + "height": 1024 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg", + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {}, + "width": {}, + "height": {}, + "sizes": {} + } + ] + }, + "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2": { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg", + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {}, + "width": {}, + "height": {}, + "sizes": {} + } + ] + }, + "https://iiif.wellcomecollection.org/search/autocomplete/v1/b18035723": { + "id": "https://iiif.wellcomecollection.org/search/autocomplete/v1/b18035723", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/search/v1/b18035723", + "id": "https://iiif.wellcomecollection.org/search/autocomplete/v1/b18035723", + "type": "AutoCompleteService1" + } + ] + }, + "https://iiif.wellcomecollection.org/search/v1/b18035723": { + "id": "https://iiif.wellcomecollection.org/search/v1/b18035723", + "type": "SearchService1", + "service": [ + { + "id": "https://iiif.wellcomecollection.org/search/autocomplete/v1/b18035723", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest" + } + ], + "profile": "http://iiif.io/api/search/1/search", + "label": "Search within this manifest", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/search/v1/b18035723", + "type": "SearchService1" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/b18035723#tracking": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#tracking", + "type": "Text", + "service": [], + "profile": "http://universalviewer.io/tracking-extensions-profile", + "label": { + "en": [ + "Format: Monograph, Institution: n/a, Identifier: b18035723, Digicode: diggenetics, Collection code: n/a" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#tracking", + "type": "Text" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/b18035723#timestamp": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#timestamp", + "type": "Text", + "service": [], + "profile": "https://github.com/wellcomecollection/iiif-builder/build-timestamp", + "label": { + "none": [ + "2021-04-29T21:58:28.9247406Z" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#timestamp", + "type": "Text" + } + ] + }, + "https://iiif.wellcomecollection.org/presentation/b18035723#accesscontrolhints": { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#accesscontrolhints", + "type": "Text", + "service": [], + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "label": { + "en": [ + "open" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#accesscontrolhints", + "type": "Text" + } + ] + } + }, + "Selector": {}, + "Agent": { + "https://wellcomecollection.org": { + "id": "https://wellcomecollection.org", + "type": "Agent", + "logo": [ + { + "id": "https://iiif.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "ContentResource" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://wellcomecollection.org/works", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Wellcome Collection", + "183 Euston Road", + "London NW1 2BE UK", + "T +44 (0)20 7611 8722", + "E library@wellcomecollection.org", + "https://wellcomecollection.org" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif.wellcomecollection.org/presentation/b18035723", + "id": "https://wellcomecollection.org", + "type": "Agent" + } + ] + } + }, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "3_to_4_converted_presentation_3_wellcome_p3": { + "Collection": { + "https://iiif-test.wellcomecollection.org/presentation/collections/contributors/Llanwrtyd_Wells_(Wales)._Urban_District_Council.": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/contributors/Llanwrtyd_Wells_(Wales)._Urban_District_Council.", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Contributor: Llanwrtyd Wells (Wales). Urban District Council." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/contributors/Llanwrtyd_Wells_(Wales)._Urban_District_Council.", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/xaqnqsbj": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/xaqnqsbj", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Subject: Disease Outbreaks." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/xaqnqsbj", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/tva37rme": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/tva37rme", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Subject: Public Health." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/tva37rme", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/p2mzt7rw": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/p2mzt7rw", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Subject: Sanitation." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/p2mzt7rw", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/pxxu6hsg": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/pxxu6hsg", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Subject: Water Supply." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/pxxu6hsg", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/dyss49dy": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/dyss49dy", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Subject: Llanwrtyd Wells (Wales)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/dyss49dy", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Electronic_books.": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Electronic_books.", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Genre: Electronic books." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Electronic_books.", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Annual_reports.": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Annual_reports.", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Genre: Annual reports." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Annual_reports.", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/genres/MOH_reports.": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/MOH_reports.", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Genre: MOH reports." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/MOH_reports.", + "type": "Collection" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Statistics.": { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Statistics.", + "type": "Collection", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Genre: Statistics." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Statistics.", + "type": "Collection" + } + ] + } + }, + "Manifest": { + "https://iiif-test.wellcomecollection.org/presentation/b28857021": { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "type": "Manifest", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas" + } + ], + "structures": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0001", + "type": "Range" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0002", + "type": "Range" + } + ], + "metadata": [ + { + "label": { + "en": [ + "Publication/creation" + ] + }, + "value": { + "none": [ + "1960" + ] + } + }, + { + "label": { + "en": [ + "Contributors" + ] + }, + "value": { + "none": [ + "Llanwrtyd Wells (Wales). Urban District Council." + ] + } + }, + { + "label": { + "en": [ + "Type/technique" + ] + }, + "value": { + "en": [ + "Electronic books.", + "Annual reports.", + "MOH reports.", + "Statistics." + ] + } + }, + { + "label": { + "en": [ + "Subjects" + ] + }, + "value": { + "en": [ + "Disease Outbreaks.", + "Public Health.", + "Sanitation.", + "Water Supply.", + "Llanwrtyd Wells (Wales)" + ] + } + } + ], + "provider": [ + { + "id": "https://wellcomecollection.org", + "type": "Agent" + } + ], + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [ + "paged" + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/catalogue/v2/works/rfm2hr8w", + "type": "ContentResource" + } + ], + "service": [ + { + "id": "https://iiif-test.wellcomecollection.org/search/v1/b28857021", + "type": "SearchService1", + "service": [ + { + "id": "https://iiif-test.wellcomecollection.org/search/autocomplete/v1/b28857021", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest" + } + ], + "profile": "http://iiif.io/api/search/1/search", + "label": "Search within this manifest" + } + ], + "services": [ + { + "id": "vault://iiif-parser/v4/Service/7c91dea5", + "type": "Text", + "service": [], + "profile": "http://universalviewer.io/tracking-extensions-profile", + "label": { + "en": [ + "Format: Monograph, Institution: n/a, Identifier: b28857021, Digicode: digmoh, Collection code: n/a" + ] + } + }, + { + "id": "vault://iiif-parser/v4/Service/f62a19e1", + "type": "Text", + "service": [], + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "label": { + "en": [ + "open" + ] + } + } + ], + "homepage": [ + { + "id": "https://wellcomecollection.org/works/rfm2hr8w", + "type": "ContentResource" + } + ], + "rendering": [ + { + "id": "https://dlcs.io/pdf/wellcome/pdf/6/b28857021", + "type": "ContentResource" + }, + { + "id": "https://iiif-test.wellcomecollection.org/text/v1/b28857021", + "type": "ContentResource" + } + ], + "partOf": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/contributors/Llanwrtyd_Wells_(Wales)._Urban_District_Council.", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/xaqnqsbj", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/tva37rme", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/p2mzt7rw", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/pxxu6hsg", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/dyss49dy", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Electronic_books.", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Annual_reports.", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/MOH_reports.", + "type": "Collection" + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Statistics.", + "type": "Collection" + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/images", + "type": "AnnotationPage" + }, + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/all/line", + "type": "AnnotationPage" + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "[Report 1960] / Medical Officer of Health, Llanwrtyd Wells U.D.C." + ] + }, + "rights": "https://creativecommons.org/licenses/by/4.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution and usage" + ] + }, + "value": { + "en": [ + "Wellcome Collection", + "You have permission to make copies of this work under a Creative Commons, Attribution license.

This licence permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. See the Legal Code for further information.

Image source should be attributed as specified in the full catalogue record. If no source is given the image should be attributed to Wellcome Library.
" + ] + } + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2": { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": [], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0001.jp2", + "type": "ContentResource" + } + ], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0001.jp2/line", + "type": "AnnotationPage" + } + ], + "label": { + "none": [ + "-" + ] + }, + "width": 2670, + "height": 4412, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "ContentResource" + } + ], + "behavior": {}, + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0001.jp2", + "type": "ContentResource" + } + ], + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0001.jp2/line", + "type": "AnnotationPage" + } + ], + "label": {}, + "width": {}, + "height": {} + }, + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0001", + "@explicit": true, + "metadata": {}, + "provider": {}, + "behavior": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [], + "thumbnail": [], + "seeAlso": [], + "annotations": [], + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2": { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0002", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas" + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting": { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting/anno", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting", + "type": "AnnotationPage" + } + ] + }, + "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0001.jp2/line": { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0001.jp2/line", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Text of page -" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0001.jp2/line", + "type": "AnnotationPage" + } + ] + }, + "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/images": { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/images", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "OCR-identified images and figures for b28857021" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/images", + "type": "AnnotationPage" + } + ] + }, + "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/all/line": { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/all/line", + "type": "AnnotationPage", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "All OCR-derived annotations for b28857021" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/all/line", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting/anno": { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2/full/620,1024/0/default.jpg", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting/anno", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2/full/620,1024/0/default.jpg": { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2670, + "height": 4412 + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 620, + "height": 1024, + "format": "image/jpeg", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting/anno", + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2/full/620,1024/0/default.jpg", + "type": "Image" + } + ] + }, + "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg": { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + }, + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ] + } + ], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "width": 61, + "height": 100, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "Image", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ] + } + ], + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "width": {}, + "height": {} + }, + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "width": {}, + "height": {}, + "language": [], + "service": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ] + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "Image" + } + ] + }, + "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0001.jp2": { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0001.jp2", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0001.jp2", + "type": "Dataset" + } + ] + }, + "https://wellcomecollection.org/works/rfm2hr8w": { + "id": "https://wellcomecollection.org/works/rfm2hr8w", + "type": "Text", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "[Report 1960] / Medical Officer of Health, Llanwrtyd Wells U.D.C." + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://wellcomecollection.org/works/rfm2hr8w", + "type": "Text" + } + ] + }, + "https://dlcs.io/pdf/wellcome/pdf/6/b28857021": { + "id": "https://dlcs.io/pdf/wellcome/pdf/6/b28857021", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "View as PDF" + ] + }, + "format": "application/pdf", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://dlcs.io/pdf/wellcome/pdf/6/b28857021", + "type": "Text" + } + ] + }, + "https://iiif-test.wellcomecollection.org/text/v1/b28857021": { + "id": "https://iiif-test.wellcomecollection.org/text/v1/b28857021", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "View raw text" + ] + }, + "format": "text/plain", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/text/v1/b28857021", + "type": "Text" + } + ] + }, + "https://api.wellcomecollection.org/catalogue/v2/works/rfm2hr8w": { + "id": "https://api.wellcomecollection.org/catalogue/v2/works/rfm2hr8w", + "type": "Dataset", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "profile": "https://api.wellcomecollection.org/catalogue/v2/context.json", + "label": { + "en": [ + "Wellcome Collection Catalogue API" + ] + }, + "format": "application/json", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://api.wellcomecollection.org/catalogue/v2/works/rfm2hr8w", + "type": "Dataset" + } + ] + }, + "https://wellcomecollection.org/works": { + "id": "https://wellcomecollection.org/works", + "type": "Text", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Explore our collections" + ] + }, + "format": "text/html", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://wellcomecollection.org", + "id": "https://wellcomecollection.org/works", + "type": "Text" + } + ] + }, + "https://iiif-test.wellcomecollection.org/logos/wellcome-collection-black.png": { + "id": "https://iiif-test.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://wellcomecollection.org", + "id": "https://iiif-test.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "Image" + } + ] + } + }, + "Range": { + "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0001": { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0001", + "type": "Range", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "Cover" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0001", + "type": "Range" + } + ] + }, + "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0002": { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0002", + "type": "Range", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "none": [ + "Cover" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0002", + "type": "Range" + } + ] + } + }, + "Service": { + "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2": { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2670, + "height": 4412, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2/full/620,1024/0/default.jpg", + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {}, + "width": {}, + "height": {} + } + ] + }, + "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2": { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2", + "service": [], + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + }, + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2", + "@explicit": true, + "service": [], + "profile": {}, + "width": {}, + "height": {}, + "sizes": {} + } + ] + }, + "https://iiif-test.wellcomecollection.org/search/autocomplete/v1/b28857021": { + "id": "https://iiif-test.wellcomecollection.org/search/autocomplete/v1/b28857021", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/search/v1/b28857021", + "id": "https://iiif-test.wellcomecollection.org/search/autocomplete/v1/b28857021", + "type": "AutoCompleteService1" + } + ] + }, + "https://iiif-test.wellcomecollection.org/search/v1/b28857021": { + "id": "https://iiif-test.wellcomecollection.org/search/v1/b28857021", + "type": "SearchService1", + "service": [ + { + "id": "https://iiif-test.wellcomecollection.org/search/autocomplete/v1/b28857021", + "type": "AutoCompleteService1", + "service": [], + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest" + } + ], + "profile": "http://iiif.io/api/search/1/search", + "label": "Search within this manifest", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://iiif-test.wellcomecollection.org/search/v1/b28857021", + "type": "SearchService1" + } + ] + }, + "vault://iiif-parser/v4/Service/7c91dea5": { + "id": "vault://iiif-parser/v4/Service/7c91dea5", + "type": "Text", + "service": [], + "profile": "http://universalviewer.io/tracking-extensions-profile", + "label": { + "en": [ + "Format: Monograph, Institution: n/a, Identifier: b28857021, Digicode: digmoh, Collection code: n/a" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "vault://iiif-parser/v4/Service/7c91dea5", + "type": "Text" + } + ] + }, + "vault://iiif-parser/v4/Service/f62a19e1": { + "id": "vault://iiif-parser/v4/Service/f62a19e1", + "type": "Text", + "service": [], + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "label": { + "en": [ + "open" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "vault://iiif-parser/v4/Service/f62a19e1", + "type": "Text" + } + ] + } + }, + "Selector": {}, + "Agent": { + "https://wellcomecollection.org": { + "id": "https://wellcomecollection.org", + "type": "Agent", + "logo": [ + { + "id": "https://iiif-test.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "ContentResource" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [ + { + "id": "https://wellcomecollection.org/works", + "type": "ContentResource" + } + ], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Wellcome Collection", + "183 Euston Road", + "London NW1 2BE UK", + "T +44 (0)20 7611 8722", + "E library@wellcomecollection.org", + "https://wellcomecollection.org" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "id": "https://wellcomecollection.org", + "type": "Agent" + } + ] + } + }, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "cookbook_v4_0001_mvm_image": { + "Collection": {}, + "Manifest": { + "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/manifest.json": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Simplest Image Example (IIIF Presentation v4)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/manifest.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "type": "Canvas", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 1800, + "width": 1200, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/manifest.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/page/p1/1": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/annotation/p0001-image", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/annotation/p0001-image": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/page/p1/1", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/annotation/p0001-image", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png": { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "Image", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "image/png", + "height": 1800, + "width": 1200, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/annotation/p0001-image", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "Image" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "cookbook_v4_0002_mvm_audio": { + "Collection": {}, + "Manifest": { + "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/manifest.json": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "type": "Timeline" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Simplest Audio Example (IIIF Presentation v4)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/manifest.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": { + "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "type": "Timeline", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "duration": 1985.024, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/manifest.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "type": "Timeline", + "@explicit": true, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "duration": {} + } + ] + } + }, + "Canvas": {}, + "Scene": {}, + "AnnotationPage": { + "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page/annotation", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page/annotation": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "type": "Timeline" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page/annotation", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4": { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "audio/mp4", + "duration": 1985.024, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page/annotation", + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "cookbook_v4_0003_mvm_video": { + "Collection": {}, + "Manifest": { + "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/manifest.json": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "type": "Canvas" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Simplest Video Example (IIIF Presentation 4)" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/manifest.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "type": "Canvas", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 360, + "width": 480, + "duration": 572.034, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/manifest.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "type": "Canvas", + "@explicit": true, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "height": {}, + "width": {}, + "duration": {} + } + ] + } + }, + "Scene": {}, + "AnnotationPage": { + "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page/annotation", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page/annotation": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "type": "Canvas" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page/annotation", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4": { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page/annotation", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "cookbook_v4_0608_mvm_3d": { + "Collection": {}, + "Manifest": { + "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/manifest.json": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/manifest.json", + "type": "Manifest", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "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" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/manifest.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/manifest.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "type": "Scene", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "A Scene" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/manifest.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "type": "Scene", + "@explicit": true, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {} + } + ] + } + }, + "AnnotationPage": { + "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1/anno/1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1/anno/1": { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1/anno/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1/anno/1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1/anno/1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_01_model_in_scene": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Single Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin, and then viewer should add default lighting and camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "A Scene" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {} + } + ] + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_02_model_with_background": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Single Model with background color" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the origin, with a background color of purple, and then viewer should add default lighting and camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "A Scene" + ] + }, + "backgroundColor": "#FF00FE", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {}, + "backgroundColor": {} + } + ] + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_03_perspective_camera": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Model with Explicit Perspective Camera" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin, and the camera at the scene origin facing -Z, then add default lighting" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Scene with Model and Camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {} + } + ] + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + }, + { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "@explicit": true, + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/cameras/1": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_04_perpsective_camera_with_annotation": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Model with Explicit Perspective Camera Looking at an Annotation" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a perspective camera looking in the direction of the Model Annotation, and add default lighting" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "Scene with Model and Camera" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9529f9d3", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 3, + "z": -10 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/cameras/1": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "lookAt": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/9529f9d3": { + "id": "vault://iiif-parser/v4/Selector/9529f9d3", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 3, + "z": -10 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_05_perspective_camerea_with_point": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Model with Explicit Perspective Camera Looking at a Point" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a perspective camera looking toward the PointSelector coordinates, and add default lighting" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "Scene with a Model and Camera Looking at a Point" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9529f9d3", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 3, + "z": -10 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/cameras/1": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "lookAt": { + "type": "PointSelector", + "x": 2, + "y": 1, + "z": 0 + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/9529f9d3": { + "id": "vault://iiif-parser/v4/Selector/9529f9d3", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 3, + "z": -10 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_07_orthographic_camera": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/orthographic_camera.json": { + "id": "https://example.org/iiif/3d/orthographic_camera.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Orthographic Camera" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and an Orthographic camera looking at the model, and add default lighting." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/orthographic_camera.json", + "id": "https://example.org/iiif/3d/orthographic_camera.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/orthographic_camera.json", + "@explicit": true, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ] + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno3": { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://example.org/iiif/3d/cameras/2", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/9529f9d3", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 3, + "z": -10 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/cameras/2": { + "id": "https://example.org/iiif/3d/cameras/2", + "type": "OrthographicCamera", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Orthographic Camera 1" + ] + }, + "lookAt": { + "type": "Annotation", + "id": "https://example.org/iiif/3d/anno1", + "motivation": [], + "body": [], + "target": [] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/3d/cameras/2", + "type": "OrthographicCamera" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/9529f9d3": { + "id": "vault://iiif-parser/v4/Selector/9529f9d3", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 3, + "z": -10 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_08_ambient_light": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Model with Green AmbientLight" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with green AmbientLight, and add default camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Scene with Model and AmbientLight" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {} + } + ] + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/cameras/1": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "AmbientLight", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Ambient Green Light" + ] + }, + "color": "#00FF00", + "intensity": { + "type": "Value", + "value": 0.5, + "unit": "relative" + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/3d/cameras/1", + "type": "AmbientLight" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_09_directional_light": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Model with DirectionalLight" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a DirectionalLight positioned at the point in the Scene defined by the PointSelector and facing the the Model, then add default camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "Scene with Model and DirectionalLight" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://example.org/iiif/3d/lights/1", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d415125e", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 3, + "z": 10 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/lights/1": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "DirectionalLight", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Directional Light 1" + ] + }, + "lookAt": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/3d/lights/1", + "type": "DirectionalLight" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/d415125e": { + "id": "vault://iiif-parser/v4/Selector/d415125e", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 3, + "z": 10 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_10_directional_light_rotated": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Model with Rotated DirectionalLight" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a DirectionalLight rotated 30 degrees on the x axis, then add default camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Scene with Model and Rotated DirectionalLight" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": {} + } + ] + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/874b8f32", + "type": "RotateTransform" + } + ], + "action": [], + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/lights/1": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "DirectionalLight", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Directional Light 1" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/3d/lights/1", + "type": "DirectionalLight" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/874b8f32": { + "id": "vault://iiif-parser/v4/Transform/874b8f32", + "type": "RotateTransform", + "x": 30, + "y": 0, + "z": 0 + } + } + } satisfies Presentation4Entities, + "presentation_4_11_multiple_lights": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Multiple lights with intensities and colors." + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin, and then viewer should add one red spotlight pointing at the front of the helmet, one blue spotlight point at the front-center of the model, and an ambient green light source. The viewer should add a default camera but NOT any other lighting." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "@explicit": true, + "label": {}, + "backgroundColor": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "Model with Two Spotlights and an Ambient light" + ] + }, + "backgroundColor": "#33404d" + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/59261ed9", + "type": "RotateTransform" + }, + { + "id": "vault://iiif-parser/v4/Transform/1a75771e", + "type": "TranslateTransform" + } + ], + "action": [], + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno3": { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/e2aa5a1b", + "type": "RotateTransform" + }, + { + "id": "vault://iiif-parser/v4/Transform/695c36dd", + "type": "TranslateTransform" + } + ], + "action": [], + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno4": { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://example.org/iiif/3d/lights/1": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "SpotLight", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Red Spot Light", + "Green Ambient Light", + "Blue Spot Light" + ] + }, + "color": "#ff0000", + "intensity": { + "type": "Value", + "value": 100, + "unit": "relative" + }, + "angle": 5, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/3d/lights/1", + "type": "SpotLight", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "label": { + "en": [ + "Red Spot Light" + ] + }, + "color": {}, + "intensity": { + "type": "Value", + "value": 100, + "unit": "relative" + }, + "angle": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "color": "#7aff40", + "language": [], + "label": { + "en": [ + "Green Ambient Light" + ] + }, + "intensity": { + "type": "Value", + "value": 0.5, + "unit": "relative" + }, + "id": "https://example.org/iiif/3d/lights/1", + "type": "SpotLight" + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "color": "#0f00ff", + "angle": {}, + "language": [], + "label": { + "en": [ + "Blue Spot Light" + ] + }, + "intensity": { + "type": "Value", + "value": 10, + "unit": "relative" + }, + "id": "https://example.org/iiif/3d/lights/1", + "type": "SpotLight" + } + ] + }, + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Astronaut" + ] + }, + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": {}, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/59261ed9": { + "id": "vault://iiif-parser/v4/Transform/59261ed9", + "type": "RotateTransform", + "x": 90, + "y": 0, + "z": 0 + }, + "vault://iiif-parser/v4/Transform/1a75771e": { + "id": "vault://iiif-parser/v4/Transform/1a75771e", + "type": "TranslateTransform", + "x": 0, + "y": 3.5, + "z": 3.5 + }, + "vault://iiif-parser/v4/Transform/e2aa5a1b": { + "id": "vault://iiif-parser/v4/Transform/e2aa5a1b", + "type": "RotateTransform", + "x": 90, + "y": 0, + "z": 0 + }, + "vault://iiif-parser/v4/Transform/695c36dd": { + "id": "vault://iiif-parser/v4/Transform/695c36dd", + "type": "TranslateTransform", + "x": 0, + "y": 2.5, + "z": 3.5 + } + } + } satisfies Presentation4Entities, + "presentation_4_12_mode_position": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_position.json": { + "id": "https://example.org/iiif/3d/model_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Single Positioned Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at (-1,0,1), and then viewer should add default lighting and camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_position.json", + "id": "https://example.org/iiif/3d/model_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/d6eee800", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 1 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/d6eee800": { + "id": "vault://iiif-parser/v4/Selector/d6eee800", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 1 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_13_mirrored_model": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_transform_negative_scale_position.json": { + "id": "https://example.org/iiif/3d/model_transform_negative_scale_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Model shown normally and mirrored" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at normal scale but mirrored. Then the viewer should add default lighting and camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_negative_scale_position.json", + "id": "https://example.org/iiif/3d/model_transform_negative_scale_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_negative_scale_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0e2cd421", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/5e91788c", + "type": "ScaleTransform" + } + ], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/bfe0e72d", + "type": "PointSelector", + "selectors": [], + "x": 1, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {}, + "language": [], + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/0e2cd421": { + "id": "vault://iiif-parser/v4/Selector/0e2cd421", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/bfe0e72d": { + "id": "vault://iiif-parser/v4/Selector/bfe0e72d", + "type": "PointSelector", + "selectors": [], + "x": 1, + "y": 0, + "z": 0 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/5e91788c": { + "id": "vault://iiif-parser/v4/Transform/5e91788c", + "type": "ScaleTransform", + "x": -1, + "y": 1, + "z": 1 + } + } + } satisfies Presentation4Entities, + "presentation_4_14_rotated_model": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_transform_rotate_position.json": { + "id": "https://example.org/iiif/3d/model_transform_rotate_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Rotated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model rotated by 180 degrees around the Y axis" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_rotate_position.json", + "id": "https://example.org/iiif/3d/model_transform_rotate_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_rotate_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/254547a9", + "type": "RotateTransform" + } + ], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cd62020d", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/cd62020d": { + "id": "vault://iiif-parser/v4/Selector/cd62020d", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0, + "z": 0 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/254547a9": { + "id": "vault://iiif-parser/v4/Transform/254547a9", + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + } + } satisfies Presentation4Entities, + "presentation_4_15_rotated_translated_model": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_transform_rotate_translate_position.json": { + "id": "https://example.org/iiif/3d/model_transform_rotate_translate_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Rotated Translated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model after rotating by 180 degrees around the Y axis, then translating 1 in X, resulting in him being at 1 in X" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_rotate_translate_position.json", + "id": "https://example.org/iiif/3d/model_transform_rotate_translate_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_rotate_translate_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/254547a9", + "type": "RotateTransform" + }, + { + "id": "vault://iiif-parser/v4/Transform/166451df", + "type": "TranslateTransform" + } + ], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cd62020d", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/cd62020d": { + "id": "vault://iiif-parser/v4/Selector/cd62020d", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0, + "z": 0 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/254547a9": { + "id": "vault://iiif-parser/v4/Transform/254547a9", + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + }, + "vault://iiif-parser/v4/Transform/166451df": { + "id": "vault://iiif-parser/v4/Transform/166451df", + "type": "TranslateTransform", + "x": 1, + "y": 0, + "z": 0 + } + } + } satisfies Presentation4Entities, + "presentation_4_16_rotated_translated_models": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_transform_scale_position.json": { + "id": "https://example.org/iiif/3d/model_transform_scale_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Scaled, Translated Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale after moving in the local coordinate space, and then the viewer should add default lighting and camera. Thus the model will end up at (5,4,4) due to doubling the scale of the local coordinate space." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_scale_position.json", + "id": "https://example.org/iiif/3d/model_transform_scale_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_scale_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0e2cd421", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/f7286dbc", + "type": "TranslateTransform" + }, + { + "id": "vault://iiif-parser/v4/Transform/4e52f443", + "type": "ScaleTransform" + } + ], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/bfe0e72d", + "type": "PointSelector", + "selectors": [], + "x": 1, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {}, + "language": [], + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/0e2cd421": { + "id": "vault://iiif-parser/v4/Selector/0e2cd421", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/bfe0e72d": { + "id": "vault://iiif-parser/v4/Selector/bfe0e72d", + "type": "PointSelector", + "selectors": [], + "x": 1, + "y": 0, + "z": 0 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/f7286dbc": { + "id": "vault://iiif-parser/v4/Transform/f7286dbc", + "type": "TranslateTransform", + "x": 2, + "y": 2, + "z": 2 + }, + "vault://iiif-parser/v4/Transform/4e52f443": { + "id": "vault://iiif-parser/v4/Transform/4e52f443", + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + } + } + } satisfies Presentation4Entities, + "presentation_4_17_rotated_scaled_models": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_transform_scale_translate_position.json": { + "id": "https://example.org/iiif/3d/model_transform_scale_translate_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Scaled, Translated Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale after moving in the local coordinate space, and then the viewer should add default lighting and camera. Thus the model will end up at (3,2,2) due to doubling the scale of the local coordinate space." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_scale_translate_position.json", + "id": "https://example.org/iiif/3d/model_transform_scale_translate_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_scale_translate_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0e2cd421", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/a487ca02", + "type": "ScaleTransform" + }, + { + "id": "vault://iiif-parser/v4/Transform/9b9eb4fd", + "type": "TranslateTransform" + } + ], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/bfe0e72d", + "type": "PointSelector", + "selectors": [], + "x": 1, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {}, + "language": [], + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/0e2cd421": { + "id": "vault://iiif-parser/v4/Selector/0e2cd421", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/bfe0e72d": { + "id": "vault://iiif-parser/v4/Selector/bfe0e72d", + "type": "PointSelector", + "selectors": [], + "x": 1, + "y": 0, + "z": 0 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/a487ca02": { + "id": "vault://iiif-parser/v4/Transform/a487ca02", + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + }, + "vault://iiif-parser/v4/Transform/9b9eb4fd": { + "id": "vault://iiif-parser/v4/Transform/9b9eb4fd", + "type": "TranslateTransform", + "x": 2, + "y": 2, + "z": 2 + } + } + } satisfies Presentation4Entities, + "presentation_4_18_translated_rotated_model": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_transform_translate_rotate_position.json": { + "id": "https://example.org/iiif/3d/model_transform_translate_rotate_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Translated Rotated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model after moving 1 in X, then rotating by 180 degrees around the Y axis, resulting in him being at -1 in X" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_translate_rotate_position.json", + "id": "https://example.org/iiif/3d/model_transform_translate_rotate_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_translate_rotate_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/41d8135e", + "type": "TranslateTransform" + }, + { + "id": "vault://iiif-parser/v4/Transform/91e70928", + "type": "RotateTransform" + } + ], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cd62020d", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/cd62020d": { + "id": "vault://iiif-parser/v4/Selector/cd62020d", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0, + "z": 0 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/41d8135e": { + "id": "vault://iiif-parser/v4/Transform/41d8135e", + "type": "TranslateTransform", + "x": 1, + "y": 0, + "z": 0 + }, + "vault://iiif-parser/v4/Transform/91e70928": { + "id": "vault://iiif-parser/v4/Transform/91e70928", + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + } + } satisfies Presentation4Entities, + "presentation_4_19_scaled_models": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_transform_translate_scale_position.json": { + "id": "https://example.org/iiif/3d/model_transform_translate_scale_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Scaled Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale, and then the viewer should add default lighting and camera" + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_translate_scale_position.json", + "id": "https://example.org/iiif/3d/model_transform_translate_scale_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_transform_translate_scale_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/0e2cd421", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/a487ca02", + "type": "ScaleTransform" + } + ], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/bfe0e72d", + "type": "PointSelector", + "selectors": [], + "x": 1, + "y": 0, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "@explicit": true, + "language": [], + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "@explicit": true, + "items": {}, + "selector": {}, + "transform": {}, + "action": {}, + "provides": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "format": {}, + "language": [], + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/0e2cd421": { + "id": "vault://iiif-parser/v4/Selector/0e2cd421", + "type": "PointSelector", + "selectors": [], + "x": -1, + "y": 0, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/bfe0e72d": { + "id": "vault://iiif-parser/v4/Selector/bfe0e72d", + "type": "PointSelector", + "selectors": [], + "x": 1, + "y": 0, + "z": 0 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/a487ca02": { + "id": "vault://iiif-parser/v4/Transform/a487ca02", + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + } + } + } satisfies Presentation4Entities, + "presentation_4_20_whale_cranium": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/whale_cranium_and_mandible_position.json": { + "id": "https://example.org/iiif/3d/whale_cranium_and_mandible_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Whale Cranium and Mandible Positioned" + ] + }, + "summary": { + "en": [ + "Renders two 3D models to display a whale skull. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_cranium_and_mandible_position.json", + "id": "https://example.org/iiif/3d/whale_cranium_and_mandible_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_cranium_and_mandible_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model" + } + ] + }, + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/c3856eab": { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + }, + "vault://iiif-parser/v4/Selector/cef5734b": { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_21_scene_within_canvas": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "structures": [ + { + "id": "https://example.org/iiif/ranges/1", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Scene with a Canvas" + ] + }, + "summary": { + "en": [ + "..." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://example.org/iiif/canvas/1": { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas" + } + ] + } + }, + "Scene": { + "https://example.org/iiif/scene1": { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + }, + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/ranges/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ] + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ddd6fccc", + "type": "PolygonZSelector", + "selectors": [], + "value": "POLYGONZ((-1.0843 2.8273 -2, 1.0843 2.8273 -2, 1.0843 0 -2, -1.0843 0 -2))" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": { + "https://example.org/iiif/ranges/1": { + "id": "https://example.org/iiif/ranges/1", + "type": "Range", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "sequence" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/ranges/1", + "type": "Range" + } + ] + } + }, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/ddd6fccc": { + "id": "vault://iiif-parser/v4/Selector/ddd6fccc", + "type": "PolygonZSelector", + "selectors": [], + "value": "POLYGONZ((-1.0843 2.8273 -2, 1.0843 2.8273 -2, 1.0843 0 -2, -1.0843 0 -2))" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_22_scene_within_canvas_2": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "structures": [ + { + "id": "https://example.org/iiif/ranges/1", + "type": "Range" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Scene with a Canvas" + ] + }, + "summary": { + "en": [ + "..." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": { + "https://example.org/iiif/canvas/1": { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas" + } + ] + } + }, + "Scene": { + "https://example.org/iiif/scene1": { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + }, + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/ranges/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ] + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1a912b2c", + "type": "PolygonZSelector", + "selectors": [], + "value": "POLYGONZ((-1.0843 2.8273 -2, -1.0843 0 -2, 1.0843 0 -2, 1.0843 2.8273 -2))" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + } + }, + "Range": { + "https://example.org/iiif/ranges/1": { + "id": "https://example.org/iiif/ranges/1", + "type": "Range", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [ + "sequence" + ], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/ranges/1", + "type": "Range" + } + ] + } + }, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/1a912b2c": { + "id": "vault://iiif-parser/v4/Selector/1a912b2c", + "type": "PolygonZSelector", + "selectors": [], + "value": "POLYGONZ((-1.0843 2.8273 -2, -1.0843 0 -2, 1.0843 0 -2, 1.0843 2.8273 -2))" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_23_astronaut_comment": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/astronaut_comment.json": { + "id": "https://example.org/iiif/3d/astronaut_comment.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Single Model with Comment Annotations" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and two comment annotations, one targeting a point near the astronaut's glove and the other targeting a point near the astronaut's helmet." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/astronaut_comment.json", + "id": "https://example.org/iiif/3d/astronaut_comment.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/astronaut_comment.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://example.org/iiif/scene1/page/p2/1": { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/bdbbc560", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6135f700", + "type": "PointSelector", + "selectors": [], + "x": 1.075, + "y": 1.894, + "z": 0.204 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p2/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno3": { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f1ea21eb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1eafb3c4", + "type": "PointSelector", + "selectors": [], + "x": 0.006, + "y": 3.498, + "z": 0.703 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p2/1", + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/bdbbc560": { + "id": "vault://iiif-parser/v4/ContentResource/bdbbc560", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Glove", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "vault://iiif-parser/v4/ContentResource/bdbbc560", + "type": "TextualBody" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f1ea21eb": { + "id": "vault://iiif-parser/v4/ContentResource/f1ea21eb", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Helmet", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "vault://iiif-parser/v4/ContentResource/f1ea21eb", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/6135f700": { + "id": "vault://iiif-parser/v4/Selector/6135f700", + "type": "PointSelector", + "selectors": [], + "x": 1.075, + "y": 1.894, + "z": 0.204 + }, + "vault://iiif-parser/v4/Selector/1eafb3c4": { + "id": "vault://iiif-parser/v4/Selector/1eafb3c4", + "type": "PointSelector", + "selectors": [], + "x": 0.006, + "y": 3.498, + "z": 0.703 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_24_multi_comment": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/model_origin.json": { + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Single Model with Multilingual Comment Annotations" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and two multilingual comment annotations, one targeting a point near the astronaut's glove and the other targeting a point near the astronaut's helmet." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/model_origin.json", + "@explicit": true, + "label": {}, + "backgroundColor": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ], + "label": { + "en": [ + "Single Model with Comment Annotations" + ], + "es": [ + "Modelo único con anotaciones de comentarios" + ] + }, + "backgroundColor": "#33404d" + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://example.org/iiif/scene1/page/p2/1": { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2511b988", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/f8563fb7", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6135f700", + "type": "PointSelector", + "selectors": [], + "x": 1.075, + "y": 1.894, + "z": 0.204 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + }, + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/1eafb3c4", + "type": "PointSelector", + "selectors": [], + "x": 0.006, + "y": 3.498, + "z": 0.703 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p2/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "@explicit": true, + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2511b988", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/6135f700", + "type": "PointSelector", + "selectors": [], + "x": 1.075, + "y": 1.894, + "z": 0.204 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": {} + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Astronaut" + ] + }, + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e12bfb32": { + "id": "vault://iiif-parser/v4/ContentResource/e12bfb32", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Glove", + "format": "text/plain" + }, + "vault://iiif-parser/v4/ContentResource/c8fc0135": { + "id": "vault://iiif-parser/v4/ContentResource/c8fc0135", + "type": "TextualBody", + "language": [ + "es" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Guante", + "format": "text/plain" + }, + "vault://iiif-parser/v4/ContentResource/2511b988": { + "id": "vault://iiif-parser/v4/ContentResource/2511b988", + "type": "Choice", + "language": [], + "items": [ + { + "id": "vault://iiif-parser/v4/ContentResource/e12bfb32", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/c8fc0135", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "vault://iiif-parser/v4/ContentResource/2511b988", + "type": "Choice" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/f6af44b9": { + "id": "vault://iiif-parser/v4/ContentResource/f6af44b9", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Helmet", + "format": "text/plain" + }, + "vault://iiif-parser/v4/ContentResource/208e3a25": { + "id": "vault://iiif-parser/v4/ContentResource/208e3a25", + "type": "TextualBody", + "language": [ + "es" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Casco", + "format": "text/plain" + }, + "vault://iiif-parser/v4/ContentResource/f8563fb7": { + "id": "vault://iiif-parser/v4/ContentResource/f8563fb7", + "type": "Choice", + "language": [], + "items": [ + { + "id": "vault://iiif-parser/v4/ContentResource/f6af44b9", + "type": "ContentResource" + }, + { + "id": "vault://iiif-parser/v4/ContentResource/208e3a25", + "type": "ContentResource" + } + ], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "vault://iiif-parser/v4/ContentResource/f8563fb7", + "type": "Choice" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/6135f700": { + "id": "vault://iiif-parser/v4/Selector/6135f700", + "type": "PointSelector", + "selectors": [], + "x": 1.075, + "y": 1.894, + "z": 0.204 + }, + "vault://iiif-parser/v4/Selector/1eafb3c4": { + "id": "vault://iiif-parser/v4/Selector/1eafb3c4", + "type": "PointSelector", + "selectors": [], + "x": 0.006, + "y": 3.498, + "z": 0.703 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_25_whale_comment": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/whale_comment.json": { + "id": "https://example.org/iiif/3d/whale_comment.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation" + ] + }, + "summary": { + "en": [ + "Simple text comment on point on whale cranium. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment.json", + "id": "https://example.org/iiif/3d/whale_comment.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1": { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://example.org/iiif/scene1/page/p2/1": { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno3": { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/5b62f423", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/184515fd", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p2/1", + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model" + } + ] + }, + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/5b62f423": { + "id": "vault://iiif-parser/v4/ContentResource/5b62f423", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Right pterygoid hamulus", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "vault://iiif-parser/v4/ContentResource/5b62f423", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/c3856eab": { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + }, + "vault://iiif-parser/v4/Selector/cef5734b": { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/184515fd": { + "id": "vault://iiif-parser/v4/Selector/184515fd", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": {} + } satisfies Presentation4Entities, + "presentation_4_26_whale_comment_camera": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/whale_comment_label_body_position.json": { + "id": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). The label body should still be viewable from the camera perspective." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1": { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://example.org/iiif/scene1/page/p2/1": { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno4": { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/f2e8447d", + "type": "RotateTransform" + } + ], + "action": [], + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cd4cdb9d", + "type": "PointSelector", + "selectors": [], + "x": -0.25, + "y": 0, + "z": -0.5 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno3": { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/e056cffd", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/184515fd", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p2/1", + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model" + } + ] + }, + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/cameras/1": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e056cffd": { + "id": "vault://iiif-parser/v4/ContentResource/e056cffd", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "vault://iiif-parser/v4/ContentResource/e056cffd", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/c3856eab": { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + }, + "vault://iiif-parser/v4/Selector/cef5734b": { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/cd4cdb9d": { + "id": "vault://iiif-parser/v4/Selector/cd4cdb9d", + "type": "PointSelector", + "selectors": [], + "x": -0.25, + "y": 0, + "z": -0.5 + }, + "vault://iiif-parser/v4/Selector/184515fd": { + "id": "vault://iiif-parser/v4/Selector/184515fd", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/f2e8447d": { + "id": "vault://iiif-parser/v4/Transform/f2e8447d", + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + } + } satisfies Presentation4Entities, + "presentation_4_27_whale_comment_position": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/whale_comment_label_body_position.json": { + "id": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). The label body should still be viewable from the camera perspective." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1": { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://example.org/iiif/scene1/page/p2/1": { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno4": { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/f2e8447d", + "type": "RotateTransform" + } + ], + "action": [], + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cd4cdb9d", + "type": "PointSelector", + "selectors": [], + "x": -0.25, + "y": 0, + "z": -0.5 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno3": { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/e056cffd", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/184515fd", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p2/1", + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model" + } + ] + }, + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/cameras/1": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/e056cffd": { + "id": "vault://iiif-parser/v4/ContentResource/e056cffd", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "vault://iiif-parser/v4/ContentResource/e056cffd", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/c3856eab": { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + }, + "vault://iiif-parser/v4/Selector/cef5734b": { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/cd4cdb9d": { + "id": "vault://iiif-parser/v4/Selector/cd4cdb9d", + "type": "PointSelector", + "selectors": [], + "x": -0.25, + "y": 0, + "z": -0.5 + }, + "vault://iiif-parser/v4/Selector/184515fd": { + "id": "vault://iiif-parser/v4/Selector/184515fd", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/f2e8447d": { + "id": "vault://iiif-parser/v4/Transform/f2e8447d", + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + } + } satisfies Presentation4Entities, + "presentation_4_28_whale_camera_rotate": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/whale_comment_label_body_position_rotate.json": { + "id": "https://example.org/iiif/3d/whale_comment_label_body_position_rotate.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). However, the label body has also been rotated to face away away from the camera perspective." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment_label_body_position_rotate.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position_rotate.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1": { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment_label_body_position_rotate.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://example.org/iiif/scene1/page/p2/1": { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno4": { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/f2e8447d", + "type": "RotateTransform" + } + ], + "action": [], + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cd4cdb9d", + "type": "PointSelector", + "selectors": [], + "x": -0.25, + "y": 0, + "z": -0.5 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno3": { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/96f060e4", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/184515fd", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p2/1", + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model" + } + ] + }, + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model" + } + ] + }, + "https://example.org/iiif/3d/cameras/1": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/96f060e4": { + "id": "vault://iiif-parser/v4/ContentResource/96f060e4", + "type": "TextualBody", + "language": [ + "en" + ], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ], + "transform": [ + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "vault://iiif-parser/v4/ContentResource/96f060e4", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/c3856eab": { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + }, + "vault://iiif-parser/v4/Selector/cef5734b": { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/cd4cdb9d": { + "id": "vault://iiif-parser/v4/Selector/cd4cdb9d", + "type": "PointSelector", + "selectors": [], + "x": -0.25, + "y": 0, + "z": -0.5 + }, + "vault://iiif-parser/v4/Selector/184515fd": { + "id": "vault://iiif-parser/v4/Selector/184515fd", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/f2e8447d": { + "id": "vault://iiif-parser/v4/Transform/f2e8447d", + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + } + } satisfies Presentation4Entities, + "presentation_4_29_whale_camera_shape": { + "Collection": {}, + "Manifest": { + "https://example.org/iiif/3d/whale_comment_point_polygon.json": { + "id": "https://example.org/iiif/3d/whale_comment_point_polygon.json", + "type": "Manifest", + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "structures": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "@context": "http://iiif.io/api/presentation/4/context.json", + "label": { + "en": [ + "Whale Cranium and Mandible with Point and 2D Shape Comment Annotations" + ] + }, + "summary": { + "en": [ + "Multiple commenting annotations with camera view. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A first commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). A second commenting annotation for a 2D polygon outlining the foramen magnum, the large hole through which the spinal cord passes, should also be rendered. Both commenting annotations are intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see both commenting annotations clearly." + ] + }, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment_point_polygon.json", + "id": "https://example.org/iiif/3d/whale_comment_point_polygon.json", + "type": "Manifest" + } + ] + } + }, + "Timeline": {}, + "Canvas": {}, + "Scene": { + "https://example.org/iiif/scene1": { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno5", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "@explicit": true, + "items": [], + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "annotations": [] + }, + { + "iiif-parser:partOf": "https://example.org/iiif/3d/whale_comment_point_polygon.json", + "@explicit": true, + "label": {}, + "metadata": {}, + "provider": {}, + "thumbnail": {}, + "behavior": {}, + "seeAlso": {}, + "service": {}, + "services": {}, + "homepage": {}, + "rendering": {}, + "partOf": {}, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ], + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + ], + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + } + } + }, + "AnnotationPage": { + "https://example.org/iiif/scene1/page/p1/1": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + }, + { + "id": "https://example.org/iiif/3d/anno5", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage" + } + ] + }, + "https://example.org/iiif/scene1/page/p2/1": { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1", + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage" + } + ] + } + }, + "AnnotationCollection": {}, + "Annotation": { + "https://example.org/iiif/3d/anno1": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno2": { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno3": { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/a7bc8773", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/ef91212d", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno5": { + "id": "https://example.org/iiif/3d/anno5", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "SpecificResource", + "selector": [], + "transform": [ + { + "id": "vault://iiif-parser/v4/Transform/741d021c", + "type": "RotateTransform" + } + ], + "action": [], + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "ContentResource" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/60cb553c", + "type": "PointSelector", + "selectors": [], + "x": -0.25, + "y": 0, + "z": -0.5 + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p1/1", + "id": "https://example.org/iiif/3d/anno5", + "type": "Annotation" + } + ] + }, + "https://example.org/iiif/3d/anno4": { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "vault://iiif-parser/v4/ContentResource/2374ec36", + "type": "ContentResource" + } + ], + "target": [ + { + "type": "SpecificResource", + "selector": [ + { + "id": "vault://iiif-parser/v4/Selector/8c221dbc", + "type": "WKTSelector", + "selectors": [], + "value": "POLYGON Z ((0 0.18 -0.23, -0.03 0.16 -0.23, -0.015 0.12 -0.23, 0.006 0.12 -0.23, 0.027 0.16 -0.230))" + } + ], + "transform": [], + "action": [], + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + } + } + ], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/scene1/page/p2/1", + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation" + } + ] + } + }, + "ContentResource": { + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno1", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model" + } + ] + }, + "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "format": "model/gltf-binary", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno2", + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/a7bc8773": { + "id": "vault://iiif-parser/v4/ContentResource/a7bc8773", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Right pterygoid hamulus", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno3", + "id": "vault://iiif-parser/v4/ContentResource/a7bc8773", + "type": "TextualBody" + } + ] + }, + "https://example.org/iiif/3d/cameras/1": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000, + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno5", + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera" + } + ] + }, + "vault://iiif-parser/v4/ContentResource/2374ec36": { + "id": "vault://iiif-parser/v4/ContentResource/2374ec36", + "type": "TextualBody", + "language": [], + "items": [], + "selector": [], + "transform": [], + "action": [], + "provides": [], + "metadata": [], + "provider": [], + "thumbnail": [], + "behavior": [], + "seeAlso": [], + "service": [], + "services": [], + "homepage": [], + "rendering": [], + "partOf": [], + "annotations": [], + "value": "Foramen magnum", + "iiif-parser:hasPart": [ + { + "iiif-parser:partOf": "https://example.org/iiif/3d/anno4", + "id": "vault://iiif-parser/v4/ContentResource/2374ec36", + "type": "TextualBody" + } + ] + } + }, + "Range": {}, + "Service": {}, + "Selector": { + "vault://iiif-parser/v4/Selector/c3856eab": { + "id": "vault://iiif-parser/v4/Selector/c3856eab", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.03, + "z": 0.05 + }, + "vault://iiif-parser/v4/Selector/cef5734b": { + "id": "vault://iiif-parser/v4/Selector/cef5734b", + "type": "PointSelector", + "selectors": [], + "x": 0, + "y": 0.18, + "z": 0 + }, + "vault://iiif-parser/v4/Selector/ef91212d": { + "id": "vault://iiif-parser/v4/Selector/ef91212d", + "type": "PointSelector", + "selectors": [], + "x": 0.04, + "y": 0.063, + "z": -0.066 + }, + "vault://iiif-parser/v4/Selector/60cb553c": { + "id": "vault://iiif-parser/v4/Selector/60cb553c", + "type": "PointSelector", + "selectors": [], + "x": -0.25, + "y": 0, + "z": -0.5 + }, + "vault://iiif-parser/v4/Selector/8c221dbc": { + "id": "vault://iiif-parser/v4/Selector/8c221dbc", + "type": "WKTSelector", + "selectors": [], + "value": "POLYGON Z ((0 0.18 -0.23, -0.03 0.16 -0.23, -0.015 0.12 -0.23, 0.006 0.12 -0.23, 0.027 0.16 -0.230))" + } + }, + "Agent": {}, + "Quantity": {}, + "Transform": { + "vault://iiif-parser/v4/Transform/741d021c": { + "id": "vault://iiif-parser/v4/Transform/741d021c", + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + } + } satisfies Presentation4Entities, +} as const; + +describe('presentation-4 normalized store typing', () => { + test('all normalized stores satisfy Presentation4Entities', () => { + expect(Object.keys(normalizedStoresByFixture).length).toBe(131); + }); +}); diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/british-library-manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/british-library-manifest.json new file mode 100644 index 0000000..f329a0d --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/british-library-manifest.json @@ -0,0 +1,46068 @@ +{ + "label": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "Digital Store 12603.h.15." + ] + } + }, + { + "label": { + "@none": [ + "Held by" + ] + }, + "value": { + "@none": [ + "The British Library" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]" + ] + } + }, + { + "label": { + "@none": [ + "Creator" + ] + }, + "value": { + "@none": [ + "Dickens, Charles" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Undetermined" + ] + } + }, + { + "label": { + "@none": [ + "Catalogue record" + ] + }, + "value": { + "@none": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "@none": [ + "Digitised from" + ] + }, + "value": { + "@none": [ + "The Works of Charles Dickens. Household edition. [With illustrations.]." + ] + } + }, + { + "label": { + "@none": [ + "Citation" + ] + }, + "value": { + "@none": [ + "Dickens, Charles, The Works of Charles Dickens. Household edition. [With illustrations.] <http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E>" + ] + } + }, + { + "label": { + "@none": [ + "Digitised by" + ] + }, + "value": { + "@none": [ + "The British Library" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Item supplied by the British Library" + ] + } + } + ], + "service": [ + { + "profile": "http://iiif.io/api/auth/0/login", + "description": "Some content may only be available to registered readers or staff. Please log-in to The British Library to continue.", + "header": "Please Log-In", + "label": "Login to The British Library", + "service": [ + { + "profile": "http://iiif.io/api/auth/0/token", + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1" + } + ], + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1" + }, + { + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this item", + "service": [ + { + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words in this item", + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E/autocomplete", + "type": "AutoCompleteService1" + } + ], + "id": "https://api.bl.uk/search/iiif/ark:/81055/vdc_00000004216E", + "type": "SearchService1" + }, + { + "profile": "http://universalviewer.io/share-extensions-profile", + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_00000004216E", + "type": "Service" + }, + { + "profile": "http://universalviewer.io/feedback-extensions-profile", + "id": "http://access.bl.uk/item/feedback/ark:/81055/vdc_00000004216E", + "type": "Service" + }, + { + "profile": "http://universalviewer.io/print-extensions-profile", + "id": "http://access.bl.uk/item/print/ark:/81055/vdc_00000004216E", + "type": "Service" + } + ], + "logo": [ + { + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "Image" + } + ], + "thumbnail": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg" + } + ], + "structures": [ + { + "label": { + "@none": [ + "Section" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000001", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000002", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Table of Contents" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000003", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Table of Contents" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000004", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Section" + ] + }, + "type": "Range", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E.0x000005", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "type": "Canvas" + } + ] + } + ], + "type": "Manifest", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216E/manifest.json", + "rights": "https://creativecommons.org/publicdomain/mark/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Public Domain

" + ] + } + }, + "homepage": { + "format": "text/html", + "label": { + "@none": [ + "View at the British Library" + ] + }, + "type": "Text", + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_00000004216E" + }, + "items": [ + { + "label": { + "@none": [ + "1" + ] + }, + "width": 2181, + "height": 2920, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000001" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000001" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da433b74-66b1-492d-b9d8-74211014f1ca", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000001", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 2181, + "height": 2920, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000001/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/585ba371-e4e1-43ab-88b0-8c66134e7c0f" + } + ] + }, + { + "label": { + "@none": [ + "2" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000002" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000002" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000002", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0711498-a018-4898-96e3-d3e8c8912ace", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000002", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000002", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000002/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b38853c-7017-4225-af80-f4f897b30dcb" + } + ] + }, + { + "label": { + "@none": [ + "3" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000003" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000003" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000003", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/498fee95-3536-4383-b38a-80748089749d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000003", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000003", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000003/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0af8204d-f90e-43d3-b6a9-e6b4335e177e" + } + ] + }, + { + "label": { + "@none": [ + "4" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000004" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000004" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000004", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9efc111-ca14-41ae-acf0-834963d6f47a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000004", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000004", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000004/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cec65202-79c2-46db-b781-511197dceb3d" + } + ] + }, + { + "label": { + "@none": [ + "5" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000005" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000005" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000005", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9d629865-7fe6-4138-baa2-5e5dce67647a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000005", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000005", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000005/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e6264e62-e58f-498e-bf50-9e4149818780" + } + ] + }, + { + "label": { + "@none": [ + "6" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000006" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000006" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000006", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0287dccb-4332-4a9b-8d0e-e9f405b60859", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000006", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000006", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000006/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f50cfa04-4d9f-424f-9bfc-d56dde6ed175" + } + ] + }, + { + "label": { + "@none": [ + "7" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000007" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000007" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/89df135d-0174-421d-8444-47ac3c93a583", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000007", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000007/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d9254ea9-f8cd-498a-84a9-e902eccd9a53" + } + ] + }, + { + "label": { + "@none": [ + "8" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000008" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000008" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000008", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8845d269-552d-4cef-829b-b09f56376612", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000008", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000008", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000008/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce5f6132-3681-45bb-a850-b195896c29e0" + } + ] + }, + { + "label": { + "@none": [ + "9" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000009" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000009" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000009", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1238b83-be0c-4be0-9780-1f246e1171ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000009", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000009", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000009/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/680bd37f-87c3-4094-80ab-f578cec4ec0e" + } + ] + }, + { + "label": { + "@none": [ + "10" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ed01f254-f080-40c6-8fa1-8940936d77bc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67b7fc21-c203-4417-b4ee-465e0ffe68e5" + } + ] + }, + { + "label": { + "@none": [ + "11" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e56058c-57c4-417e-a7fc-58f28ee72592", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eaf4a25b-aa87-4e0d-8f78-5d1e36cca45c" + } + ] + }, + { + "label": { + "@none": [ + "12" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b7a8ab22-d13f-4cd3-9d5a-87fcac11bacb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84c47e6b-e7ce-4bdc-9f5c-959625dde74c" + } + ] + }, + { + "label": { + "@none": [ + "13" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7bcd5316-ae97-4e38-baa2-521f2d717b6a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/380fb8c5-82fb-4661-a74d-7526de92e03c" + } + ] + }, + { + "label": { + "@none": [ + "14" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e7a7bcde-84c7-4451-bc64-065344397459", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0191df8-60f7-4fb4-9d73-29b98c9d55b7" + } + ] + }, + { + "label": { + "@none": [ + "15" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00000F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00000F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5293bdcc-2c4a-4f65-8e90-4ba1a849c616", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00000F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00000F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0adbd173-0533-4dfd-b907-2353d8cd1721" + } + ] + }, + { + "label": { + "@none": [ + "16" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000010" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000010" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000010", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a6b6397f-18ed-40b6-bbb8-4c01fbee74b4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000010", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000010", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000010/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19528ad3-90c5-4ad3-93c3-2815aa2b46ad" + } + ] + }, + { + "label": { + "@none": [ + "17" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000011" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000011" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000011", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dfb32a65-45aa-4eb9-b459-cc9a7ace71bb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000011", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000011", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000011/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ec365dcc-9b01-4ca5-8ed8-531435f26903" + } + ] + }, + { + "label": { + "@none": [ + "18" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000012" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000012" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000012", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/264efb5e-68c4-45f4-8e82-b85f8ead88ff", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000012", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000012", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000012/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dab00122-897b-485d-97f5-eed23a9730e7" + } + ] + }, + { + "label": { + "@none": [ + "19" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000013" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000013" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000013", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/03d38b7d-9389-4d0a-bd43-d1d1e0dddde7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000013", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000013", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000013/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8336d80b-c2e9-4fa3-b987-bd5e2b36a74b" + } + ] + }, + { + "label": { + "@none": [ + "20" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000014" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000014" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000014", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9d50824b-589f-4695-a350-afe454967aeb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000014", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000014", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000014/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/046bcee3-d1c9-45df-bacb-a27833145c0e" + } + ] + }, + { + "label": { + "@none": [ + "21" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000015" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000015" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000015", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d4c2da42-e9d0-41c0-b2b1-5d1caa70dbb6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000015", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000015", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000015/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72f476c1-1fa8-45d5-b58a-52fa5b718b2f" + } + ] + }, + { + "label": { + "@none": [ + "22" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000016" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000016" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000016", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/22790fee-6814-4641-9e7e-79df8772d5e9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000016", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000016", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000016/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd5c81cd-1ba6-47d1-a681-931486ca71b9" + } + ] + }, + { + "label": { + "@none": [ + "23" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000017" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000017" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000017", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2aff8742-ec5a-460d-ae1d-dc9d18dc7aa4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000017", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000017", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000017/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee5148fa-0004-4e23-b9af-5dcac37a061c" + } + ] + }, + { + "label": { + "@none": [ + "24" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000018" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000018" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000018", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/37fe7ba5-182d-4f15-86a5-eb3493152cad", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000018", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000018", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000018/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ce9feff-7ae8-4a36-bfce-c07f58e46cbd" + } + ] + }, + { + "label": { + "@none": [ + "25" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000019" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000019" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000019", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a0c21f03-d85c-4f12-93f6-8ee9114435a8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000019", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000019", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000019/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38129349-9f78-4438-802a-6554eb07d866" + } + ] + }, + { + "label": { + "@none": [ + "26" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d14ceb95-b599-4ba8-bb3b-f75e86e88cd8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10514069-dd14-485e-94d6-9b33e3e681d3" + } + ] + }, + { + "label": { + "@none": [ + "27" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/add2616b-99c4-413e-af1f-c188ddf7aab4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed7205ae-5cc0-4ecb-a7db-d04248562a2d" + } + ] + }, + { + "label": { + "@none": [ + "28" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eabd14d6-0b4b-410e-8d06-116c231ef2d7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14537400-b05a-4128-8be1-4206a1de201c" + } + ] + }, + { + "label": { + "@none": [ + "29" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8f266e1e-ea44-4cf5-b9d5-548c911977df", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e5654ab-1c66-42fd-a296-8007b907e7bd" + } + ] + }, + { + "label": { + "@none": [ + "30" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/71f26dff-d7b3-4e9c-a6b9-1001497d3141", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83401f76-4bd5-411f-b793-8d4ff1debc99" + } + ] + }, + { + "label": { + "@none": [ + "31" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00001F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00001F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f748b76c-a2d6-48c7-863e-5c3cf604956f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00001F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00001F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/66fc2d7c-d394-449a-8da8-a14fc0d47349" + } + ] + }, + { + "label": { + "@none": [ + "32" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000020" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000020" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000020", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4bf61f8f-d7f0-42b2-a23a-66b87935d594", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000020", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000020", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000020/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/256a5d56-68f0-4a6b-a65d-5ee5013c25ee" + } + ] + }, + { + "label": { + "@none": [ + "33" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000021" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000021" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000021", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fcc9e2fb-16fe-41b5-b059-2713a28c9a18", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000021", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000021", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000021/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2d1cfaf-7055-4ae8-96db-adda2c2a9b49" + } + ] + }, + { + "label": { + "@none": [ + "34" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000022" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000022" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000022", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1359cd6-b369-48a6-98ef-7d1737300b52", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000022", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000022", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000022/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c5efeb1-2302-48c5-98ab-a0796f78ce30" + } + ] + }, + { + "label": { + "@none": [ + "35" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000023" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000023" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000023", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/993e5ea0-811d-454d-b2ed-89e127fb2a21", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000023", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000023", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000023/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5190050-6053-472d-a30b-d60675827ad7" + } + ] + }, + { + "label": { + "@none": [ + "36" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000024" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000024" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000024", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1234dfc7-06ff-4240-810a-c815371ef997", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000024", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000024", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000024/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25fc5c10-7e2b-4e84-aa4c-fc0296f08554" + } + ] + }, + { + "label": { + "@none": [ + "37" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000025" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000025" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000025", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0c90749-485c-4d68-b9e9-a5261f85915f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000025", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000025", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000025/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/186e905b-8f37-4d3f-b634-2a6a3341150d" + } + ] + }, + { + "label": { + "@none": [ + "38" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000026" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000026" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000026", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/95ba3889-bb95-4a4d-bfe6-cd0b8238d280", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000026", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000026", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000026/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/069487ad-adcc-488c-984c-9fd5800c45b1" + } + ] + }, + { + "label": { + "@none": [ + "39" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000027" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000027" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000027", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/266c9dc4-1aa4-464c-b6fa-16f3de7810c7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000027", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000027", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000027/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd0d25c7-45ca-4358-90d4-8d6c50a50e9a" + } + ] + }, + { + "label": { + "@none": [ + "40" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000028" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000028" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000028", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/02785277-9a7c-462f-bbc0-8e332abc6559", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000028", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000028", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000028/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9d79789-e750-4c6c-b2eb-317d0819faa5" + } + ] + }, + { + "label": { + "@none": [ + "41" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000029" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000029" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000029", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bf3c9e9-3f7a-49cb-b357-d127f0b0974f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000029", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000029", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000029/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a00633a7-e05b-414a-86df-ece144fca93a" + } + ] + }, + { + "label": { + "@none": [ + "42" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3e92ecb9-70c7-4503-89c0-1b4fd821cc13", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3455f38b-bd7e-4ad8-9115-1f6cc5ec1b56" + } + ] + }, + { + "label": { + "@none": [ + "43" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6df704df-256a-4edb-9a94-c33e2ebcfdfb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c9592f5-a2bc-44bd-a5d4-e96758afa13b" + } + ] + }, + { + "label": { + "@none": [ + "44" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e541093-e1c2-4633-b4a3-dee5d22de132", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a13e289-1616-49ba-831e-35d1a53e7bb8" + } + ] + }, + { + "label": { + "@none": [ + "45" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0ec4876b-3c29-46bd-ba04-48b4aa5cf7c3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3a85837-10e1-4d42-9674-5c4736b5f953" + } + ] + }, + { + "label": { + "@none": [ + "46" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/546be2b6-4fef-492b-918d-e69b9d3040ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e7bad36-057c-423d-b63c-a0cfb8bff6f5" + } + ] + }, + { + "label": { + "@none": [ + "47" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00002F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00002F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1e4b5953-3bce-4cbd-8353-f53675e0364e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00002F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00002F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b08e51cd-f218-4ee5-a580-da4b920a236d" + } + ] + }, + { + "label": { + "@none": [ + "48" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000030" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000030" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000030", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/71a60200-f47c-4ab0-baa8-07587c4ebdcc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000030", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000030", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000030/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55341bc4-96fe-4fda-b205-d2fd9ee3b5bc" + } + ] + }, + { + "label": { + "@none": [ + "49" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000031" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000031" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000031", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ed6d197d-d3d1-4128-9052-4d2c654e59a4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000031", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000031", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000031/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4232afb-49f4-4b33-a8a6-e90c8544ae37" + } + ] + }, + { + "label": { + "@none": [ + "50" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000032" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000032" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000032", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2f7f27f7-0afa-4903-9941-00b481d36fb5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000032", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000032", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000032/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a9dd586-cae0-49eb-9731-8abd6ffcc606" + } + ] + }, + { + "label": { + "@none": [ + "51" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000033" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000033" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000033", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5e4aac97-beef-4261-adef-edc1866bac94", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000033", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000033", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000033/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e6499e2-ea1d-47fb-a43f-f0098ffb0957" + } + ] + }, + { + "label": { + "@none": [ + "52" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000034" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000034" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000034", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b55894f9-952e-4476-a01c-a8f1fdacae08", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000034", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000034", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000034/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17ceb238-926a-454e-98b1-63a34e28f5df" + } + ] + }, + { + "label": { + "@none": [ + "53" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000035" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000035" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000035", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fa3f9880-7f83-4cd6-ba7c-06f0883b69a5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000035", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000035", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000035/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef47bfc0-ef55-4177-a5d8-19ee88eeb2b0" + } + ] + }, + { + "label": { + "@none": [ + "54" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000036" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000036" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000036", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6092393c-f24e-4f7d-a1d9-7361dc5e58ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000036", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000036", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000036/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c2a8ae51-6954-46b9-b152-dfe34efe06d8" + } + ] + }, + { + "label": { + "@none": [ + "55" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000037" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000037" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000037", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bcd52be9-5a09-4161-a7bd-689a88feae35", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000037", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000037", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000037/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3f64f97e-46bc-40c7-a00e-25126304f444" + } + ] + }, + { + "label": { + "@none": [ + "56" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000038" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000038" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000038", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d3d3f067-10df-4f88-acc8-610f484d2ddb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000038", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000038", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000038/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6bc54031-e885-494f-9414-29bb4c444659" + } + ] + }, + { + "label": { + "@none": [ + "57" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000039" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000039" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000039", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/662649d3-1f45-45fd-8533-8f9ea5b40f3c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000039", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000039", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000039/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd312495-3bd0-4226-b446-38f6670ac025" + } + ] + }, + { + "label": { + "@none": [ + "58" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/980237d6-95bd-4214-b541-2dd28eed18b0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f308ca67-1558-4849-911c-5df11aecdc28" + } + ] + }, + { + "label": { + "@none": [ + "59" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7ba198b7-4dbd-4338-b3ff-3962c7418a05", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/045ddfa9-a089-4164-813e-e49a01ef98db" + } + ] + }, + { + "label": { + "@none": [ + "60" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/877ae5b4-4063-4bc9-9e54-06beb97541ec", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/670b60a9-67b9-49bd-ac36-2e3bc05768ea" + } + ] + }, + { + "label": { + "@none": [ + "61" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/05c06c05-378f-48a0-86cb-1827d692e7e4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/789f4225-4e18-4dee-95a5-a9da85ccb906" + } + ] + }, + { + "label": { + "@none": [ + "62" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/259e1ff9-bc47-4057-91e4-414e89d0e382", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/913bc93e-0b61-4e29-bad8-b36ec95548b7" + } + ] + }, + { + "label": { + "@none": [ + "63" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00003F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00003F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2c73828f-3125-4339-a396-4e0da1f907ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00003F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00003F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/221ddbd3-c5a4-4053-aa22-ec6d950c356f" + } + ] + }, + { + "label": { + "@none": [ + "64" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000040" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000040" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000040", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/46be6873-e09b-452a-906c-89f6a8676376", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000040", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000040", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000040/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08db5c3e-5ff4-471e-baff-26bc7552ca8a" + } + ] + }, + { + "label": { + "@none": [ + "65" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000041" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000041" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000041", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/624484be-bf69-4fd6-b88d-402b86f63c8d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000041", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000041", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000041/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/daac813f-116b-4e54-ab65-72cfbf5b6618" + } + ] + }, + { + "label": { + "@none": [ + "66" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000042" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000042" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000042", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/823d9e75-ebd2-4660-96ad-e75a82ec0026", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000042", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000042", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000042/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/de616e66-d822-49e4-b511-da6934db1271" + } + ] + }, + { + "label": { + "@none": [ + "67" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000043" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000043" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000043", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/339f11db-f774-4fa8-8d44-3bbc14959b49", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000043", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000043", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000043/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/047fb5a8-68ca-43b1-90ea-08b242289ab7" + } + ] + }, + { + "label": { + "@none": [ + "68" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000044" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000044" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000044", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a83cf294-6d32-41d3-b2ff-607aeb60dc9b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000044", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000044", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000044/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6a1fd2c-bed3-4e1e-94d7-9da7eda16026" + } + ] + }, + { + "label": { + "@none": [ + "69" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000045" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000045" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000045", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1793141-6a7b-4e2e-8f2c-b5d03109c2bb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000045", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000045", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000045/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/121f68e6-594b-4c1d-8ef1-0fa3fc08f23b" + } + ] + }, + { + "label": { + "@none": [ + "70" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000046" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000046" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000046", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce84edb0-45af-4572-a288-cf7682d080d5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000046", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000046", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000046/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/019cf56f-8066-49d5-8211-b7328f4a9354" + } + ] + }, + { + "label": { + "@none": [ + "71" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000047" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000047" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000047", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b4fda78-cbea-4d5c-bb93-e7cd16cb32c4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000047", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000047", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000047/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee10db73-bbc7-42f4-aeed-8eb6f68d0cb7" + } + ] + }, + { + "label": { + "@none": [ + "72" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000048" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000048" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000048", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0bdfbb81-fc0b-47c9-bf79-34133de77182", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000048", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000048", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000048/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1b1cea0-c3a8-4781-9411-c8dbcb85e167" + } + ] + }, + { + "label": { + "@none": [ + "73" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000049" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000049" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000049", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da02d5cb-2a08-48e3-aa3f-14a8a47a2a13", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000049", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000049", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000049/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a7ae578-edaf-4729-b07e-a8d7d75db060" + } + ] + }, + { + "label": { + "@none": [ + "74" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0efbfd9b-775f-4990-a924-1a8d9fcd255e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10a2b8fa-b659-4e93-9c55-db8251e4b748" + } + ] + }, + { + "label": { + "@none": [ + "75" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eac3827b-3bd5-4455-a2a3-6fcc346ce19c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be8d00ba-26a3-4a38-86b6-29f7486b7954" + } + ] + }, + { + "label": { + "@none": [ + "76" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b013f26-4e39-422d-b7e6-0d496708fdc6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f4decf6-3c5a-47f9-9da7-fddf96b5c084" + } + ] + }, + { + "label": { + "@none": [ + "77" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a7f07cec-2584-4522-b2f5-01acd2b50230", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9486061f-67d5-40e2-b4bc-5f21b407fee2" + } + ] + }, + { + "label": { + "@none": [ + "78" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/14920365-c173-4d17-81fd-c836fc8a308e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c766e9a-a480-4972-9578-8edd18215091" + } + ] + }, + { + "label": { + "@none": [ + "79" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00004F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00004F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/539be5b5-43cb-4da8-8ef7-f56a55c841fd", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00004F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00004F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e999327-060e-45c1-9e09-49f9277f6260" + } + ] + }, + { + "label": { + "@none": [ + "80" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000050" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000050" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000050", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/21ea66aa-9894-41fe-9d0c-8dfb31647e13", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000050", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000050", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000050/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0694289e-27ab-4d3c-a909-5442514f8f4a" + } + ] + }, + { + "label": { + "@none": [ + "81" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000051" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000051" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000051", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3707d477-6e10-4acb-92c8-595c44a90539", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000051", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000051", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000051/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58a40a5e-e495-40a0-8915-9813421c9ede" + } + ] + }, + { + "label": { + "@none": [ + "82" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000052" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000052" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000052", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/98798aa7-ed09-4d29-a170-e790b2890e88", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000052", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000052", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000052/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73ee84a4-8ffe-4739-b88a-2595ba4f1d65" + } + ] + }, + { + "label": { + "@none": [ + "83" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000053" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000053" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000053", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a638ac65-d040-40a9-8c5b-799c3debdbda", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000053", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000053", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000053/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a5c16ce-b2fa-44ea-a173-c8ce43ce646a" + } + ] + }, + { + "label": { + "@none": [ + "84" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000054" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000054" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000054", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/de430558-6d1f-4b69-9aae-87173be304ed", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000054", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000054", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000054/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7755a1ef-726f-4d50-a2b1-292cdc772ac5" + } + ] + }, + { + "label": { + "@none": [ + "85" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000055" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000055" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000055", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d7d3e28e-b730-42ca-b073-cb4842e6c7ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000055", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000055", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000055/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d5ca504-8a0d-439d-9346-9f7891d8a8ef" + } + ] + }, + { + "label": { + "@none": [ + "86" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000056" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000056" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000056", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4cf84a02-e677-4025-af54-0c4a95d688a1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000056", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000056", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000056/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/276cdb17-a3ec-4d6e-9753-86d1235aa244" + } + ] + }, + { + "label": { + "@none": [ + "87" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000057" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000057" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000057", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d70f43a9-6f23-469a-a2ff-4819cb9ae042", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000057", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000057", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000057/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99ef32e1-bb0e-44fd-a175-11f661a2a176" + } + ] + }, + { + "label": { + "@none": [ + "88" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000058" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000058" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000058", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/60b60444-23de-4f41-85e5-3ac14cb1f1ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000058", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000058", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000058/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90bff9e1-f326-48d9-98ac-7b9e3ee28b61" + } + ] + }, + { + "label": { + "@none": [ + "89" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000059" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000059" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000059", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/37b3020a-2bfb-4e67-9a34-069ddece0032", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000059", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000059", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000059/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06e0b9f8-7b34-443e-979d-aeee481dd202" + } + ] + }, + { + "label": { + "@none": [ + "90" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9fe879a1-4bef-41af-ba9d-902f3f0f4f78", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bcbde1ef-7520-4fbb-a0f9-199fe0e4bd89" + } + ] + }, + { + "label": { + "@none": [ + "91" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/08d15daf-b500-44b1-9aad-bc9b96731e73", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e7fbb03-b9d8-4196-bbfc-23cafb8ed93b" + } + ] + }, + { + "label": { + "@none": [ + "92" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/214e33db-c8f3-4679-b26c-f64df2455070", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f922f300-dd15-4ff7-9abd-fdd082e1870f" + } + ] + }, + { + "label": { + "@none": [ + "93" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/490858c3-dff3-4083-b1a6-03972e20d157", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf875106-bd96-4895-b946-8bfd83f353dc" + } + ] + }, + { + "label": { + "@none": [ + "94" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ede230d7-cc66-48ae-bfcf-302c32f7d1d6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ed20f72-1665-461e-8158-46e4d802c140" + } + ] + }, + { + "label": { + "@none": [ + "95" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00005F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00005F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9cd09cc-b711-450e-be4c-1e9e573d1192", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00005F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00005F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97e24780-491a-4592-ab16-9f005de249f5" + } + ] + }, + { + "label": { + "@none": [ + "96" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000060" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000060" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000060", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cab98c19-06f5-49a0-be8b-34f539138079", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000060", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000060", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000060/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5577707a-ec5e-499d-826e-4cfaf8252cbc" + } + ] + }, + { + "label": { + "@none": [ + "97" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000061" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000061" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000061", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ef6d0c6e-a98b-4670-ae8f-434a505ff746", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000061", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000061", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000061/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/819a5433-44bc-45fd-a959-031b5f47decd" + } + ] + }, + { + "label": { + "@none": [ + "98" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000062" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000062" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000062", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/56381e6c-1781-498e-8e26-4dab758103e2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000062", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000062", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000062/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6abb7299-ad32-403b-b306-fa80a53d7b85" + } + ] + }, + { + "label": { + "@none": [ + "99" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000063" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000063" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000063", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3baf4e8a-2571-4986-98b0-9f29846e73ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000063", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000063", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000063/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65dbd81b-f69d-4e64-a0ba-6c4e6e4296a2" + } + ] + }, + { + "label": { + "@none": [ + "100" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000064" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000064" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000064", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e6228c53-960f-4f36-9b6b-5990acbcf1a6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000064", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000064", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000064/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8cf63b3a-deef-41a8-89de-5246504238a4" + } + ] + }, + { + "label": { + "@none": [ + "101" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000065" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000065" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000065", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/882beeb3-7c3a-4f47-8bc5-bfe3de911a4b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000065", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000065", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000065/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/194c483f-b78a-46e1-a85f-7b34bbb23b5f" + } + ] + }, + { + "label": { + "@none": [ + "102" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000066" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000066" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000066", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/16cd8c6d-0753-4be4-8e30-c91264a19d54", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000066", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000066", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000066/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/620287ef-13fa-412f-bf54-5005da52eb5a" + } + ] + }, + { + "label": { + "@none": [ + "103" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000067" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000067" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000067", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7b8f593b-9294-49ed-86f7-322301f19293", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000067", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000067", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000067/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62bc30bf-ee83-468a-9bdc-186148c57756" + } + ] + }, + { + "label": { + "@none": [ + "104" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000068" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000068" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000068", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/47ed2381-0051-4b3e-972f-5de61a2836fb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000068", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000068", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000068/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba4b82cd-e78c-4cf3-80e6-bafee24d3529" + } + ] + }, + { + "label": { + "@none": [ + "105" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000069" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000069" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000069", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/adf5228b-208e-4bc5-aa22-88b965dfd216", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000069", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000069", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000069/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dde6c217-e3b6-4db2-8f01-2d22f76c322f" + } + ] + }, + { + "label": { + "@none": [ + "106" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/057e563e-debc-4be9-b533-f0e409605a91", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ec077410-688f-4a01-9ada-2528fba19474" + } + ] + }, + { + "label": { + "@none": [ + "107" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bd003225-c6f7-4ec1-91a2-c4ee2b9c7e3d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd79a7a3-0cb9-4018-b441-a6e219874983" + } + ] + }, + { + "label": { + "@none": [ + "108" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e85f88cb-6d38-4da2-a149-000bcc4cf443", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/feb6eb87-1dbe-4bb8-887f-5e2f835d53f0" + } + ] + }, + { + "label": { + "@none": [ + "109" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/421b8c2d-1d87-423c-8e0d-9a795f999022", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3469b4f8-2bd2-42bf-a03e-b70661a98a11" + } + ] + }, + { + "label": { + "@none": [ + "110" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b61ff23-d633-40f9-8e6d-f4dceba5ce50", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0702b86b-8229-4939-b2f7-abc427a8831b" + } + ] + }, + { + "label": { + "@none": [ + "111" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00006F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00006F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2750bb72-180b-4568-bf9f-4d0bfb341c1f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00006F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00006F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55c374f1-a398-4fa3-bb81-8ff9d95f1c73" + } + ] + }, + { + "label": { + "@none": [ + "112" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000070" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000070" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000070", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7e2cdc89-6e21-4c0a-a98b-8b3c337e0638", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000070", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000070", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000070/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39967969-5297-407c-86c6-f256616490fe" + } + ] + }, + { + "label": { + "@none": [ + "113" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000071" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000071" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000071", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d0fb421f-47cf-4441-a620-8613c2ed09d1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000071", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000071", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000071/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85741449-bc3a-459c-bedd-05da4473f905" + } + ] + }, + { + "label": { + "@none": [ + "114" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000072" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000072" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000072", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9ad42a7-ad73-44e3-ba08-df23200a240e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000072", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000072", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000072/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61beb0e7-e49b-483d-b86f-666c42b07756" + } + ] + }, + { + "label": { + "@none": [ + "115" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000073" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000073" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000073", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7d461786-fe7e-47c3-a5f4-c870e8582afb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000073", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000073", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000073/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e0710fc-5580-4dda-bf61-93a46539ee9b" + } + ] + }, + { + "label": { + "@none": [ + "116" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000074" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000074" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000074", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/593343b2-0a8f-4dad-ae41-c43d166a172d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000074", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000074", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000074/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4fe434f1-4d9d-4b88-a8f8-b063b505d7f0" + } + ] + }, + { + "label": { + "@none": [ + "117" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000075" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000075" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000075", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1c786de7-bc06-409a-855a-4ccc87afbd56", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000075", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000075", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000075/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a3c07e6-4dbc-4c5b-8b82-9708bd8671ac" + } + ] + }, + { + "label": { + "@none": [ + "118" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000076" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000076" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000076", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b5f00d75-45e8-4bc3-a4e9-51e610017ded", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000076", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000076", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000076/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0830a794-eabe-4e2f-9369-7beeecf9086f" + } + ] + }, + { + "label": { + "@none": [ + "119" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000077" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000077" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000077", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c1eb53ce-8cb3-4796-ab76-316caadab3ae", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000077", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000077", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000077/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36909ecb-eab4-4069-8e49-a49a230b65dd" + } + ] + }, + { + "label": { + "@none": [ + "120" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000078" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000078" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000078", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e4f89fef-f58b-4de1-ba18-55613ef6353a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000078", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000078", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000078/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/247a3fa5-adf8-4770-a2e6-0d3d2301e5e0" + } + ] + }, + { + "label": { + "@none": [ + "121" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000079" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000079" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000079", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/01f5a009-9ca6-4ba8-bfe7-cdfdc9caa5a4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000079", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000079", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000079/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/965167d2-f913-480d-ba05-0cd6d967367a" + } + ] + }, + { + "label": { + "@none": [ + "122" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2eea4589-70e3-4577-a73d-996847615d3f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/511a9f61-1118-4272-ab85-13f78780b1a0" + } + ] + }, + { + "label": { + "@none": [ + "123" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6eea439d-a1c7-4a90-af1e-2e8339045151", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e49eb2af-4b85-4c44-8229-d8e4c2fe0d59" + } + ] + }, + { + "label": { + "@none": [ + "124" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/469e440e-b6c2-4db5-a686-031d5f600387", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d187575-12ec-4d7d-ab0b-f249a8156f55" + } + ] + }, + { + "label": { + "@none": [ + "125" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ead2546f-6508-45e4-95f0-e90d6df13c2f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1be3b9c-c00b-48e0-bba0-e141a35f868b" + } + ] + }, + { + "label": { + "@none": [ + "126" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/77f29f92-9835-40aa-b46b-76a7d87bd7f8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/16724668-bf85-4c44-bc2e-9e27974469b6" + } + ] + }, + { + "label": { + "@none": [ + "127" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00007F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00007F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/44256d2b-78d2-4cb5-ba25-c86a0325c277", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00007F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00007F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a43df2df-2c89-4f49-81dc-e2d996cc28bc" + } + ] + }, + { + "label": { + "@none": [ + "128" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000080" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000080" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000080", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4d338bda-ff4b-4c72-96d7-12e4d6047c4e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000080", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000080", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000080/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/828b7c94-ca19-4bf5-a71a-a916cb9b762f" + } + ] + }, + { + "label": { + "@none": [ + "129" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000081" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000081" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000081", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1cc0d01e-f840-4343-9112-592837e496d8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000081", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000081", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000081/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a71e5f0-a28d-4d31-809c-9bec885e7e83" + } + ] + }, + { + "label": { + "@none": [ + "130" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000082" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000082" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000082", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/304ec8bf-c09d-4531-adc6-5231eff5ab71", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000082", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000082", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000082/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2107f898-f962-40ed-be62-683db98281fd" + } + ] + }, + { + "label": { + "@none": [ + "131" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000083" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000083" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000083", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8435c2f7-77a0-45fe-acf1-1f0e40c412d1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000083", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000083", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000083/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88e9161c-4c35-46cf-b3b8-87e30857c02e" + } + ] + }, + { + "label": { + "@none": [ + "132" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000084" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000084" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000084", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/41e65df7-49ff-4afc-bd82-a878cfdb7fd7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000084", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000084", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000084/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8a9f090-3396-4024-a955-27eb0bd511d8" + } + ] + }, + { + "label": { + "@none": [ + "133" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000085" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000085" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000085", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1c4f3cc5-bab4-4963-a442-2d665260ee12", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000085", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000085", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000085/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/78e46fa7-a512-419a-9113-aaa4ad4ea1aa" + } + ] + }, + { + "label": { + "@none": [ + "134" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000086" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000086" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000086", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6c42f13d-6859-418e-92f8-ab05fd436e43", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000086", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000086", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000086/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/76c51c95-1073-430c-9e19-218d724abda4" + } + ] + }, + { + "label": { + "@none": [ + "135" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000087" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000087" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000087", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/79b2bae3-ebb2-4e8f-997e-8364f98faa23", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000087", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000087", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000087/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/030c8721-7937-4675-846f-af2ee665c22b" + } + ] + }, + { + "label": { + "@none": [ + "136" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000088" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000088" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000088", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ffff345c-976a-4107-a01b-3c84a7a63427", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000088", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000088", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000088/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b27e1991-e24e-47ff-87a5-8b2642a11412" + } + ] + }, + { + "label": { + "@none": [ + "137" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000089" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000089" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000089", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cc322838-011b-468c-9b58-34fa8a768198", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000089", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000089", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000089/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62344fb7-c414-4f07-bfd2-44679c5e2115" + } + ] + }, + { + "label": { + "@none": [ + "138" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/11699a02-d043-4cd5-ba7d-f6a18d61ccd9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be3fccff-fcad-4249-ac45-53c385e78611" + } + ] + }, + { + "label": { + "@none": [ + "139" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1471e8f4-fc67-4de4-b877-505922cf6b40", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f861180-6240-473f-ba53-b5d1bb3d7ea9" + } + ] + }, + { + "label": { + "@none": [ + "140" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/871eacec-2a5c-4421-ba1c-d743e002fcfa", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee10b9e8-d1b7-4888-8893-7b4069965ebd" + } + ] + }, + { + "label": { + "@none": [ + "141" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd611f2c-d517-42fd-9192-7bb6e3f29d53", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f737a18-b3ef-4ec0-97b6-940affede978" + } + ] + }, + { + "label": { + "@none": [ + "142" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0fe368ea-e25c-4d95-844e-115b2fbb4181", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bbf7746-1c53-423c-af34-58a9f708d3d2" + } + ] + }, + { + "label": { + "@none": [ + "143" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00008F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00008F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5dd0d4ba-5b27-4e36-bcc5-94760288e363", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00008F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00008F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/89d6df26-e15d-4e5f-9293-d0be3a8afe75" + } + ] + }, + { + "label": { + "@none": [ + "144" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000090" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000090" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000090", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/419b2897-f481-44d5-8d7b-2d77f98b20d8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000090", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000090", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000090/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5cd5d20e-8826-4e2a-8d78-9794ed6de5e8" + } + ] + }, + { + "label": { + "@none": [ + "145" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000091" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000091" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000091", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4baf15f3-21de-4457-9457-a9a164181beb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000091", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000091", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000091/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6aa8f115-c4c5-4d88-8556-7b795aafb7f4" + } + ] + }, + { + "label": { + "@none": [ + "146" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000092" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000092" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000092", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1827973-a8aa-49d6-bfa4-7868d6cec813", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000092", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000092", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000092/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39914388-47d9-44e0-be84-9d435b933cb6" + } + ] + }, + { + "label": { + "@none": [ + "147" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000093" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000093" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000093", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5e32751f-f023-43ec-880d-e2e18fecac82", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000093", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000093", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000093/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34804318-3706-439e-97a1-c344f46a8778" + } + ] + }, + { + "label": { + "@none": [ + "148" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000094" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000094" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000094", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/82fd1d7c-ad67-46bb-9d4a-a6a398a471ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000094", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000094", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000094/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb5861ae-fe14-43c6-9135-6c87106048de" + } + ] + }, + { + "label": { + "@none": [ + "149" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000095" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000095" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000095", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b67bdb1-f73d-4b62-8794-4768d0b10854", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000095", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000095", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000095/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/745448a3-5e75-4ce3-9acd-cebcbe8f2a98" + } + ] + }, + { + "label": { + "@none": [ + "150" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000096" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000096" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000096", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a2798c1c-b79f-4382-9d9f-c9b717f22b7a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000096", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000096", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000096/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24151a5e-1eca-4ddd-a8d1-2d3648893c92" + } + ] + }, + { + "label": { + "@none": [ + "151" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000097" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000097" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000097", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/96928638-6549-427e-890f-f85cd05ccac4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000097", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000097", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000097/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/868e997d-db76-46b8-b439-217795dc4b44" + } + ] + }, + { + "label": { + "@none": [ + "152" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000098" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000098" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000098", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0c3d3b5e-500f-4207-8c97-4c13aab360aa", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000098", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000098", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000098/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cfd23263-77a5-4639-adf5-33d40ba221da" + } + ] + }, + { + "label": { + "@none": [ + "153" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000099" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000099" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000099", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f7637b3f-1aa8-4ad8-9569-b3ef52246514", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000099", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000099", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000099/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e5541e8-49bd-41ce-b28a-bab91c2c5337" + } + ] + }, + { + "label": { + "@none": [ + "154" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67c0544a-11e6-4e47-a57f-93c176de71cc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/983fc3d4-3c39-4f1e-8578-7070019c3186" + } + ] + }, + { + "label": { + "@none": [ + "155" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f5dd64cc-a6dc-45c2-9536-70dff29595e5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75b19f3b-1f9a-414d-a69f-05f22121040d" + } + ] + }, + { + "label": { + "@none": [ + "156" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a65e3962-e79b-4237-81c8-f1f79aa2d16c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c58c2593-e79c-4fab-8d35-7bb16a128e47" + } + ] + }, + { + "label": { + "@none": [ + "157" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c717991c-df38-4488-ac7a-f3b06185ce2b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/340bcf64-3066-4f7f-852d-6edbad7abdf2" + } + ] + }, + { + "label": { + "@none": [ + "158" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bd5b449d-c4a7-410b-b3fc-89d1b3bf4d45", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d435f59-2024-4e92-8c80-cbcdb276de82" + } + ] + }, + { + "label": { + "@none": [ + "159" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00009F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00009F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b6c64067-f616-4004-8d22-6123ae7bdd51", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00009F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00009F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2575cd56-c904-4323-be47-3900e5c91b9d" + } + ] + }, + { + "label": { + "@none": [ + "160" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/739476d5-87dd-4f55-9159-ed059f3cfd2a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5007550e-b488-4932-9729-bab0135d48b5" + } + ] + }, + { + "label": { + "@none": [ + "161" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d733b74c-1fc1-4b31-ae62-f47ec7854eb5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/20747f98-01f3-4a4a-9ff3-41a28220657a" + } + ] + }, + { + "label": { + "@none": [ + "162" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2b8185de-ecb7-4537-9e32-d0035fbecab1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a18b2800-bbeb-405a-b2b0-9dff2e4731d8" + } + ] + }, + { + "label": { + "@none": [ + "163" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/65a6e9e9-5360-49fc-a70d-d609fea7e9f2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07463cb6-d21e-4c37-a24d-8962242bce08" + } + ] + }, + { + "label": { + "@none": [ + "164" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a4a051cf-bc4f-42df-bec2-b0dbb6587c0e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8dddfb40-7702-4208-9fd5-50761ba7a31e" + } + ] + }, + { + "label": { + "@none": [ + "165" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3996fb3d-856b-423d-8a58-653fbb267013", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c3b675f-189b-4ce1-a75e-59af66c0a3a6" + } + ] + }, + { + "label": { + "@none": [ + "166" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0fe90c99-2e7d-4095-85e6-129fa3b849a0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5a6e58b-ddc2-4b9f-82ab-a178cc1a3c00" + } + ] + }, + { + "label": { + "@none": [ + "167" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/323b9069-dd1b-4cdf-9cd2-d0ef7fa8ba8b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/485fe444-e095-4583-b3ef-30981fc22a25" + } + ] + }, + { + "label": { + "@none": [ + "168" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6c207182-d245-4d9c-9be6-94795aa1f63b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/665715c8-e603-48ba-aa16-ce3592ad5d02" + } + ] + }, + { + "label": { + "@none": [ + "169" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000A9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000A9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9716c7f-eb34-419d-873e-698a9a7e20d8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000A9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000A9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/659fd51a-ded7-42f1-af99-ab6355d29ea1" + } + ] + }, + { + "label": { + "@none": [ + "170" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/530634fc-140f-4171-9c8d-075e58d60882", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/949a172e-1f92-4853-913c-383cebc9a131" + } + ] + }, + { + "label": { + "@none": [ + "171" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c74631f9-a3bc-417a-83fb-ef5d25aa9f65", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12b630cb-f4b3-423c-b8b2-2ae617b8e267" + } + ] + }, + { + "label": { + "@none": [ + "172" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b28f2f0c-cdb9-4f5b-aa49-a9395311b31c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7707a5cd-bc4f-42cd-a89c-dca77eb6267d" + } + ] + }, + { + "label": { + "@none": [ + "173" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1ca32d9-1426-4cc0-b7b1-ca12e14f3354", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ba4fa2f-c680-4a36-8028-041e5c345e38" + } + ] + }, + { + "label": { + "@none": [ + "174" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ddfee69f-5942-49d8-89dd-c979e01e54d6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c1a0a27-ad41-4c4b-bf95-a972e67859e5" + } + ] + }, + { + "label": { + "@none": [ + "175" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000AF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000AF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/775659e6-92c2-4744-94bd-d010e2766e00", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000AF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000AF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e415e417-9de4-4780-87cd-f8de91f5f7ed" + } + ] + }, + { + "label": { + "@none": [ + "176" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0b98f46-961a-4de1-a824-0ee323ac1cf2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f3274159-6e2f-4499-aec3-9a148d5670c1" + } + ] + }, + { + "label": { + "@none": [ + "177" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/32ddc76a-4c0f-4d1f-8445-f45383e52a5d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e6f91af-aae5-4617-974a-23a2d98ac7e4" + } + ] + }, + { + "label": { + "@none": [ + "178" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d6e4b3cc-daae-4be6-a490-cb13e5f6ceff", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5d72cf0-2b12-4bb8-bda4-531e6388108f" + } + ] + }, + { + "label": { + "@none": [ + "179" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ccb2aa4a-7e5b-44eb-abd2-8984c34169f5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68c4efe9-6203-4899-8532-df2b21319596" + } + ] + }, + { + "label": { + "@none": [ + "180" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1250751c-1303-4438-b201-2ad187e2e73e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81ff8210-52aa-4415-8aa0-ebdf27f32cd4" + } + ] + }, + { + "label": { + "@none": [ + "181" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9524fd48-6a6b-4012-bf96-d602c0e8032e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6a16863-a2fc-421e-b588-7837944c93a8" + } + ] + }, + { + "label": { + "@none": [ + "182" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/317a99ee-19fa-4813-8631-8e922534d343", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e66143b8-0f4a-4212-b014-6b907b5cec38" + } + ] + }, + { + "label": { + "@none": [ + "183" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c5f88cc2-82c7-4924-8fd9-f10aafb41ea5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25e10d93-7de1-445b-b49f-12441fc4ea2c" + } + ] + }, + { + "label": { + "@none": [ + "184" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/beced9c0-bce2-494b-9b03-e816507b261c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/052cbdda-d325-4791-9478-8177b42dd97e" + } + ] + }, + { + "label": { + "@none": [ + "185" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000B9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000B9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/62ee191c-f1a6-4416-8ba1-e184fe553aaa", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000B9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000B9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/133591bd-e6f7-4f7d-94e2-e1b0244ec820" + } + ] + }, + { + "label": { + "@none": [ + "186" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9a188555-3ea0-49eb-b674-8f2c0032fd3a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb9d52e3-058d-4a90-b88c-baa75b03e70a" + } + ] + }, + { + "label": { + "@none": [ + "187" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8e7eda36-b658-49bd-8158-09ee93bcc0db", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f87516d-d9ad-4ed2-97b6-21be6ebb282b" + } + ] + }, + { + "label": { + "@none": [ + "188" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4dbc9d84-cd9b-4045-b135-3cd46faa8a3d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e22dc99a-c703-45a5-9e7a-34828c66e892" + } + ] + }, + { + "label": { + "@none": [ + "189" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce0fcc6a-1892-4014-b790-53784a76aae8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/185be747-1429-46fa-ba90-814af5538e45" + } + ] + }, + { + "label": { + "@none": [ + "190" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/25fb9d4e-4423-4937-b36f-cb71a18ba49b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8876d417-f5cd-40bf-8def-432ae4622963" + } + ] + }, + { + "label": { + "@none": [ + "191" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000BF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000BF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a0e1c9dc-0dec-4dcf-b35f-8ddabedb960c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000BF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000BF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f9b0624-b0c6-4c87-94a2-a9b993f16af5" + } + ] + }, + { + "label": { + "@none": [ + "192" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c3570d2d-40b4-4b18-be1d-6db37d7d0458", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9830c694-9a84-4000-96c2-eac05ba6dc9f" + } + ] + }, + { + "label": { + "@none": [ + "193" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bd6f3b9-3106-40be-be4c-09655a712d53", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a198dbb3-8ea5-42fb-af5e-69877fe62e9e" + } + ] + }, + { + "label": { + "@none": [ + "194" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c8721edf-305f-4a4c-afa8-08e78d32a605", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29fc8214-3cab-477d-9203-58659fe1e235" + } + ] + }, + { + "label": { + "@none": [ + "195" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bbb410f-124b-46d0-ac89-52fdf534bf7d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb2bf041-8ab9-49a1-916a-4494cfc012ca" + } + ] + }, + { + "label": { + "@none": [ + "196" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/afa2cb63-da59-40f9-a1a8-1708dc146ef9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4aff31b2-339b-4861-b846-a4c988d3f3b6" + } + ] + }, + { + "label": { + "@none": [ + "197" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7bc332c4-a743-487d-9412-abf9c5f65b4a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fef814ba-605a-4824-a029-464ddc361b80" + } + ] + }, + { + "label": { + "@none": [ + "198" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2c984893-3e38-4687-9de1-93dc00fb8cdc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a5cf0e8-babc-4b22-a64f-45779e8cba45" + } + ] + }, + { + "label": { + "@none": [ + "199" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce42aadc-f8c5-487c-9e97-2fc631c5fd7d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fcf79c2f-6537-405f-adbf-402d492af9e5" + } + ] + }, + { + "label": { + "@none": [ + "200" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5f3e325b-059a-41d0-80cf-c9079c848a99", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab7a534c-5c73-4d80-acf6-a08cace4d31e" + } + ] + }, + { + "label": { + "@none": [ + "201" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000C9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000C9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/17cfa06e-f9af-4138-8f72-2198ad6c93c3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000C9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000C9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7ac84ea5-adc1-4d1b-80e0-3ec04560ffd0" + } + ] + }, + { + "label": { + "@none": [ + "202" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/52a56c1d-2375-4497-89ba-aee5f9366a2d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6902556a-0564-433e-ac3d-3a0e0ad04568" + } + ] + }, + { + "label": { + "@none": [ + "203" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/72633e24-fe26-4d13-b592-c5dd830c944f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33d40f6f-01ae-4bb7-bd83-68b4fa0537a5" + } + ] + }, + { + "label": { + "@none": [ + "204" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/99eeec88-52d1-40b0-8f42-7da354d05763", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c1e86c5-277f-4234-8577-e28372be84d3" + } + ] + }, + { + "label": { + "@none": [ + "205" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1f4c425-73c8-4fe3-835a-4dbb8d21489e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d66953e-7bea-46cf-a912-d0765e8df083" + } + ] + }, + { + "label": { + "@none": [ + "206" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/66be62b4-a7fd-465f-a5ca-81d13448c99b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/311acfbf-0228-4101-b552-3bc31640a2ec" + } + ] + }, + { + "label": { + "@none": [ + "207" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000CF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000CF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4f722b15-5634-4429-be70-f68bced01c49", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000CF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000CF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3baf238a-b821-40a9-af59-aab5309bf975" + } + ] + }, + { + "label": { + "@none": [ + "208" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d22ca457-5af2-4ce4-8f01-6ecc0a712285", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f9f3d692-5ea4-4122-9f01-ad490e8944fc" + } + ] + }, + { + "label": { + "@none": [ + "209" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5ce934f-03d1-47a2-918a-8ed7969f5aef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/390a24f5-dbc4-4800-9dd4-50e475b39489" + } + ] + }, + { + "label": { + "@none": [ + "210" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd852c09-f110-40d2-8df9-fe844a1a983b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9abb9da-917c-410f-880a-ca60aabe2474" + } + ] + }, + { + "label": { + "@none": [ + "211" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/472c2fbe-353a-4fc9-9713-925efde1daeb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b834b3eb-f10c-4451-b521-3e86d5c2c1f8" + } + ] + }, + { + "label": { + "@none": [ + "212" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3b520a7c-0a2d-42ff-b4fe-db8ec98f5151", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39cb6e0f-f9f9-4596-9e6d-71fc1375f701" + } + ] + }, + { + "label": { + "@none": [ + "213" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9c2aa3d-5562-4ca5-9fc9-0b2382cf8f7a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f8747659-7fd1-40d7-9982-34a281805290" + } + ] + }, + { + "label": { + "@none": [ + "214" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e8ed777f-0e10-4fee-860f-b280b42413a1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eeec00e1-de4c-429a-ba7c-cc56e1e33baa" + } + ] + }, + { + "label": { + "@none": [ + "215" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b6231582-5959-44f8-affe-684bc0441e30", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0339abba-7d22-4c37-866d-f3c3e941cdf9" + } + ] + }, + { + "label": { + "@none": [ + "216" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e6367070-1ea8-4e40-917c-f2bbc293b16f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d053dd3f-b6ce-4b0f-ad6b-cf4728f80ba6" + } + ] + }, + { + "label": { + "@none": [ + "217" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000D9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000D9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ddcf339f-93ee-436e-a82f-dec26270a73a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000D9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000D9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48445e17-bfef-4602-bbb5-43f0b484fb5f" + } + ] + }, + { + "label": { + "@none": [ + "218" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c3fae9cd-6299-4218-a4a4-e37ad561c962", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14835451-da13-4931-9fc6-ed84fb739a42" + } + ] + }, + { + "label": { + "@none": [ + "219" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/be2b5e1b-0dde-441d-bfb2-28f51f648bab", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/89f0f1b9-d269-43b3-9577-241dbe92f20f" + } + ] + }, + { + "label": { + "@none": [ + "220" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f0a9bf3a-abd5-4500-bfd8-e1dbc4abe1c9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a709007c-0833-4133-a1c7-e2a1fc9c15f2" + } + ] + }, + { + "label": { + "@none": [ + "221" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/043bd5af-e794-44aa-a685-fe69a4f89962", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22c7511c-b445-4cac-9fe7-26ff9abbfd1b" + } + ] + }, + { + "label": { + "@none": [ + "222" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e416b2f3-311a-4855-8463-5c389f426f02", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85eb453e-6e43-4e5e-b3ec-8fcbe39e3a40" + } + ] + }, + { + "label": { + "@none": [ + "223" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000DF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000DF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1f14e759-4f1d-4219-8c72-68124b14023f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000DF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000DF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f5f2323-0b55-4445-83a7-23a9a02c8b65" + } + ] + }, + { + "label": { + "@none": [ + "224" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67167ca4-830e-4e02-b4f0-c6203043e3db", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8a2a3300-1bea-43b7-a2f6-c6f7d2bf7126" + } + ] + }, + { + "label": { + "@none": [ + "225" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/68371f89-7b00-435c-8a1f-98e5996b7019", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/592b9ac3-c25d-48c0-bc4d-e3e7be002753" + } + ] + }, + { + "label": { + "@none": [ + "226" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/85c57da4-a283-4e3d-92dc-c757b2c83392", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0bada551-d49d-4166-820a-a4b64218096e" + } + ] + }, + { + "label": { + "@none": [ + "227" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a946f0ff-4755-4a1b-ba24-e251925d7800", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9849f28a-9805-485f-8025-16ec2ffc33ff" + } + ] + }, + { + "label": { + "@none": [ + "228" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1ade7066-2339-44fc-9197-f11ae57f50bb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8a04cffd-9c76-4996-a67e-57df98b86535" + } + ] + }, + { + "label": { + "@none": [ + "229" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2f714530-8f13-4f2a-8f49-f9e951d59292", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b1ed616-b8a4-4e49-967e-17947d10b54b" + } + ] + }, + { + "label": { + "@none": [ + "230" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b6f3e2c-27cf-4bf7-bc22-36fff59a44f9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/949d30ee-e221-48d3-9a2a-73a7f59a3700" + } + ] + }, + { + "label": { + "@none": [ + "231" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ebc9e521-4e32-4737-8204-1271576ef7b9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/096d136d-23d4-456b-808b-052b62fdf727" + } + ] + }, + { + "label": { + "@none": [ + "232" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/976ff09d-b6d1-48b3-bc21-1fbf7ab55d62", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75cd41ce-f33c-4dc5-ad2a-e269b29e42ff" + } + ] + }, + { + "label": { + "@none": [ + "233" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000E9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000E9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/15d5b126-36db-472d-b0cc-d810fcbb5d0d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000E9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000E9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0910dc6c-0160-4a45-b852-823d559a9861" + } + ] + }, + { + "label": { + "@none": [ + "234" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fe21980d-1aa6-4424-89df-64058dd7e8f5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e03c9c4-a9db-475a-829f-0b5912af77f3" + } + ] + }, + { + "label": { + "@none": [ + "235" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/119bfc1e-e446-44d3-99ae-a7b505bf3700", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fc07e3d-0b58-4ba5-97bd-36caa4f6bd4e" + } + ] + }, + { + "label": { + "@none": [ + "236" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e4a6c1ad-199f-41fa-8a13-97c72c8be474", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aec2987f-d511-48da-a801-062f51b12698" + } + ] + }, + { + "label": { + "@none": [ + "237" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000ED" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000ED" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000ED", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3644b754-cfac-4a77-ae7f-c26fdeecd976", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000ED", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000ED", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000ED/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/89599a8a-5140-423f-84a4-10d99b5a362f" + } + ] + }, + { + "label": { + "@none": [ + "238" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/312a91f8-33c2-4eab-9562-c1a7a81fc781", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04a9b55d-d657-402a-afae-6ecfe7287d2e" + } + ] + }, + { + "label": { + "@none": [ + "239" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000EF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000EF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/05c5fb72-f90b-41fe-92e3-4464b023400e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000EF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000EF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce9c4ef5-5d81-46ef-9af0-1ae3df911e0d" + } + ] + }, + { + "label": { + "@none": [ + "240" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9e791fd2-ce86-4437-a175-84b2e64d87ae", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e50e254-660b-42ff-aa7d-8c770c35271a" + } + ] + }, + { + "label": { + "@none": [ + "241" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f12eea82-fb6f-4ede-a2cd-4a5d241fc119", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25ad7d06-0056-42cd-a31e-c93a85672ad3" + } + ] + }, + { + "label": { + "@none": [ + "242" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5cc64daf-8fee-4c61-bae3-a5f8d9ada088", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e542650-e913-432f-883f-4ec6b70f64b6" + } + ] + }, + { + "label": { + "@none": [ + "243" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b79c42c-fa8a-443f-9ee2-d87ee479aa81", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/13acb599-f5da-4718-b028-550c09a80b13" + } + ] + }, + { + "label": { + "@none": [ + "244" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/26ae69f5-86d7-4c6a-8ef3-b79f7c60c05a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3754fcce-bd09-45f9-be4b-ea806e25b488" + } + ] + }, + { + "label": { + "@none": [ + "245" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/222ed399-7266-471f-9b87-d76996e63dbf", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58680b02-5b7e-4cc5-9a99-9c78764391e1" + } + ] + }, + { + "label": { + "@none": [ + "246" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e318177-5c0e-4fa2-b696-155433e0aa4c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba06a96b-0ad6-4ca9-bbb3-ae88af63cb2d" + } + ] + }, + { + "label": { + "@none": [ + "247" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fb5a2d8b-c8de-4838-89ff-733f25a11c4f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acae71af-9626-440f-86da-bbff85510477" + } + ] + }, + { + "label": { + "@none": [ + "248" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e33c20e0-dd27-4df7-b2b0-9d77b99cdf1e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31f98336-299e-4843-8f2f-3376adbd43bd" + } + ] + }, + { + "label": { + "@none": [ + "249" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000F9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000F9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f283bdc4-d04b-4365-b0b3-dded888ef99c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000F9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000F9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a000851-c8cb-4768-9b4b-aa068aed63cf" + } + ] + }, + { + "label": { + "@none": [ + "250" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/30472e67-91df-4260-a51c-3e3eddf51b8a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c58f8f4a-f92b-4d11-ba5b-44a323711769" + } + ] + }, + { + "label": { + "@none": [ + "251" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1f04140-163d-4c61-be12-afdb402d0f88", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8376d438-5a8f-4ae0-8c3e-cad8f7e62ecd" + } + ] + }, + { + "label": { + "@none": [ + "252" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2a8ff677-3359-4c87-82ad-e0caa6ceac86", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c3cd5d17-f4a7-48a7-bbd0-5dabd6ec2b48" + } + ] + }, + { + "label": { + "@none": [ + "253" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9eb0112-193a-46c7-a56f-27ea8e7672b9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37b0ee5f-31ec-4543-bbb4-262131ffd411" + } + ] + }, + { + "label": { + "@none": [ + "254" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0d75860-c0e2-4861-ad5e-4f0532aa2904", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5e00839a-b06b-4339-a9b3-b4d36108da2b" + } + ] + }, + { + "label": { + "@none": [ + "255" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0000FF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0000FF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b81ffb0-21a2-472d-98a0-592b6b468670", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0000FF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0000FF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c402f662-fe1b-4176-a906-a1bab7ec23c2" + } + ] + }, + { + "label": { + "@none": [ + "256" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000100" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000100" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000100", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/382873ff-ef2f-48fd-af35-f4517bf32334", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000100", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000100", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000100/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d7ef1ee-e507-497c-a101-538473e539d6" + } + ] + }, + { + "label": { + "@none": [ + "257" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000101" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000101" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000101", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1559615b-2f12-4d33-882d-1dad5e822f88", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000101", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000101", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000101/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22b0fcf8-dd6e-4a2a-837e-b35fa86ed5b6" + } + ] + }, + { + "label": { + "@none": [ + "258" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000102" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000102" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000102", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/797c327b-0bb4-4a4b-bfb3-ad8d24b7a679", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000102", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000102", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000102/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c2fde81-0abd-4561-9943-18e0ffd08e0b" + } + ] + }, + { + "label": { + "@none": [ + "259" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000103" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000103" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000103", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7eda74e5-db79-4414-afa3-a2aabc21d19b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000103", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000103", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000103/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05ac894d-ffe4-4b55-b6a2-b49bc96e532d" + } + ] + }, + { + "label": { + "@none": [ + "260" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000104" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000104" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000104", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f7741c18-4250-49fc-a25d-48f4f5a583b1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000104", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000104", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000104/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/700e697f-a336-476f-a30f-7a0598bb72df" + } + ] + }, + { + "label": { + "@none": [ + "261" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000105" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000105" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000105", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/44cb85c4-8fe1-49ed-80e9-af22f626b074", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000105", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000105", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000105/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef1fef28-556a-4d81-99f4-b0684bde971d" + } + ] + }, + { + "label": { + "@none": [ + "262" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000106" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000106" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000106", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/749fd787-c5d8-49d5-b4fb-ef348da04e1d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000106", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000106", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000106/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87b46372-54f9-4e4c-92f9-27de96a8aae9" + } + ] + }, + { + "label": { + "@none": [ + "263" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000107" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000107" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000107", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/39483bbc-5a4e-4485-8072-d353fea319d7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000107", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000107", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000107/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7b99d82-43a8-4686-90f7-745e135bda2f" + } + ] + }, + { + "label": { + "@none": [ + "264" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000108" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000108" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000108", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/44ba417d-f1d5-4b18-87f1-883439c6190b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000108", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000108", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000108/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c217e11f-ae35-4d27-8e09-e289f8de9bc1" + } + ] + }, + { + "label": { + "@none": [ + "265" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000109" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000109" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000109", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7a13923a-279a-4ff9-9197-c82766bd10ba", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000109", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000109", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000109/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/695ecdb4-6237-4a15-bb36-ac6056f5be99" + } + ] + }, + { + "label": { + "@none": [ + "266" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4749010c-2c22-49ae-94bb-e1e473312100", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a812e84-20de-48a9-9599-e531957d3908" + } + ] + }, + { + "label": { + "@none": [ + "267" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b76ba410-b4ae-4986-9d3e-fd469121522f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67e2f80b-a181-4603-8075-3dcd77f9a8fd" + } + ] + }, + { + "label": { + "@none": [ + "268" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/70e2f322-08d6-476a-ab4e-7740b73f6b8f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d4470ddc-4367-4b55-8535-c5548d1553f4" + } + ] + }, + { + "label": { + "@none": [ + "269" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/db6f0d39-235c-4fc1-9dbe-a053fc37b0bf", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/542674de-8388-499e-877e-2e2a83a404f8" + } + ] + }, + { + "label": { + "@none": [ + "270" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0c408e1f-3641-44bc-8902-47b7934ac15b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/26ff4f35-8a2a-4e96-98b6-c753715c7fbf" + } + ] + }, + { + "label": { + "@none": [ + "271" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00010F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00010F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4179776b-7f95-4cfb-85d3-11217fe10dc2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00010F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00010F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06483757-b6af-477a-a9b1-6e629395041f" + } + ] + }, + { + "label": { + "@none": [ + "272" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000110" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000110" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000110", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/11b61e93-81ae-4435-bc74-13ffcedfce63", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000110", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000110", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000110/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54605da1-f762-4fef-9b1b-29a277b05b23" + } + ] + }, + { + "label": { + "@none": [ + "273" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000111" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000111" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000111", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5300391b-1fc1-482e-bc68-21f180a1e76a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000111", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000111", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000111/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bea7a66-c25a-48bf-93dd-a1fcc7054e98" + } + ] + }, + { + "label": { + "@none": [ + "274" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000112" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000112" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000112", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7e4667b1-2817-4cb6-9bd5-541293437763", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000112", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000112", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000112/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/799ce156-5062-4dbe-90b2-ea6a4fad5ebb" + } + ] + }, + { + "label": { + "@none": [ + "275" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000113" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000113" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000113", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c168fca2-8efe-4eab-b1a7-0b1aae593da1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000113", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000113", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000113/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fb13ac0-b486-4a51-90a7-e1030a19a8ae" + } + ] + }, + { + "label": { + "@none": [ + "276" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000114" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000114" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000114", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0b11e7df-d18b-4c48-85d7-3b97037b0392", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000114", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000114", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000114/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6f6683a-4e67-48f0-b758-c5c4bc8ce2ae" + } + ] + }, + { + "label": { + "@none": [ + "277" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000115" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000115" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000115", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d0c893e6-7c9b-487e-8500-8c76ad776d5f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000115", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000115", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000115/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a73a1de5-7135-4a2b-817c-bca5ce73e0d1" + } + ] + }, + { + "label": { + "@none": [ + "278" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000116" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000116" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000116", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1c8bd68-339e-44c9-ba0e-dff7f6fde193", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000116", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000116", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000116/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba8fb6d1-dc2d-4e93-92de-6e5cd2222406" + } + ] + }, + { + "label": { + "@none": [ + "279" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000117" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000117" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000117", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c5ba28bd-405b-45e1-be7a-eeb8de78a6b3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000117", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000117", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000117/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b74931d-4366-4d48-bb9f-afe9ddf7abe3" + } + ] + }, + { + "label": { + "@none": [ + "280" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000118" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000118" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000118", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c55cc85b-7d3e-440f-b74a-f72551500b63", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000118", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000118", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000118/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8c35c07d-796b-4d10-8bc3-663e301512d0" + } + ] + }, + { + "label": { + "@none": [ + "281" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000119" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000119" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000119", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0ce0272e-5bb9-4e7c-8daf-1098bf123d68", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000119", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000119", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000119/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59977b8c-1491-4f29-ba3d-ffd4e76f3934" + } + ] + }, + { + "label": { + "@none": [ + "282" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/58f5a88b-2296-42ad-8f98-bb2fbd50f991", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/26ec2a9b-060d-4497-85d4-9b48003a8478" + } + ] + }, + { + "label": { + "@none": [ + "283" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d804d52e-d583-42af-a6dd-804ed4d30758", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98422a5c-7a88-46f9-9008-09e3e6042ad8" + } + ] + }, + { + "label": { + "@none": [ + "284" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/439c29cd-9344-41b0-b1cb-06dc6c8fe767", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa57a06d-0a92-45e1-8971-02aca3a1094a" + } + ] + }, + { + "label": { + "@none": [ + "285" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0d8bfea9-e6bb-4158-b568-4105e45b85c1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2b18f8e8-50db-4f03-bb5c-e606481151ec" + } + ] + }, + { + "label": { + "@none": [ + "286" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fe28200e-0c63-4f4f-a712-b2d828b3bdcd", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5493cff5-63fa-4f18-95d5-ae6bbdce5092" + } + ] + }, + { + "label": { + "@none": [ + "287" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00011F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00011F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/62a9b232-eca3-4cbc-82fc-f051aa7b0503", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00011F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00011F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/126e0d38-501c-4dba-b049-40d62aa99ead" + } + ] + }, + { + "label": { + "@none": [ + "288" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000120" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000120" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000120", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/697324d9-2ffc-4a42-bc90-dc3b02460917", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000120", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000120", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000120/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82090b5f-594d-498a-9267-04a756d87366" + } + ] + }, + { + "label": { + "@none": [ + "289" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000121" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000121" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000121", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4a7cec81-0f59-4445-bc40-35baceb486d6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000121", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000121", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000121/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/392a8fc7-fff4-40c0-9af5-acb94d40dd3d" + } + ] + }, + { + "label": { + "@none": [ + "290" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000122" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000122" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000122", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ddab42cd-6bfe-4d69-91ea-abb32149665b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000122", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000122", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000122/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4af80ce-fdc8-4702-8d27-af4e24341dad" + } + ] + }, + { + "label": { + "@none": [ + "291" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000123" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000123" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000123", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0cdf267-ee41-4ea9-9ea1-aff7d805b0c0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000123", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000123", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000123/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f99c0b6-6aa7-4bc3-a7db-ed92ad343490" + } + ] + }, + { + "label": { + "@none": [ + "292" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000124" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000124" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000124", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a330bd0-4208-4b6b-b7db-b630f740d0bf", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000124", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000124", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000124/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3b2669b3-5f15-41b5-b989-0dd2e30e05ca" + } + ] + }, + { + "label": { + "@none": [ + "293" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000125" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000125" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000125", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4ecab2fb-37b0-4dcc-8eff-e4729d29ef3c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000125", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000125", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000125/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36fdf1a9-7530-4698-8403-e769b534cdfc" + } + ] + }, + { + "label": { + "@none": [ + "294" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000126" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000126" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000126", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d8ab1e19-ffbb-4c34-8bde-e435fcd871d5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000126", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000126", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000126/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8fa459b-fa25-43e1-a879-49c34926c120" + } + ] + }, + { + "label": { + "@none": [ + "295" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000127" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000127" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000127", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bad3b086-16f4-4a68-97f4-a90fd4627336", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000127", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000127", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000127/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e0caa92-a490-4b78-a5b6-b983cd852042" + } + ] + }, + { + "label": { + "@none": [ + "296" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000128" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000128" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000128", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da057a69-a823-4b78-a6ee-4a5ff8530806", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000128", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000128", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000128/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/13c5db4e-ead0-48a3-8205-0f41b9f0b448" + } + ] + }, + { + "label": { + "@none": [ + "297" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000129" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000129" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000129", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/35f2e8f1-3bea-4c33-8792-b658e88077ea", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000129", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000129", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000129/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1cb13e7e-7c26-4a11-a832-5e44dec97fe7" + } + ] + }, + { + "label": { + "@none": [ + "298" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d223651e-fa0b-45b9-a778-e91eb9329ead", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a570d509-4d9f-4c8a-8b34-7ad0fbceb760" + } + ] + }, + { + "label": { + "@none": [ + "299" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/09221e75-d1a4-4eb8-9470-2b83b6cb3180", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c3e0ed3b-93b2-4c9f-8d37-1bcee0686527" + } + ] + }, + { + "label": { + "@none": [ + "300" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2db8cc89-451b-44af-afd3-cb334157396d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5916748-9cb3-421f-9f8b-fa43a51b5b85" + } + ] + }, + { + "label": { + "@none": [ + "301" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ee9ec8ec-5bea-421e-b3d5-fbf9a95b3d23", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b2a9ace-32d8-4802-91c1-964129dca6c9" + } + ] + }, + { + "label": { + "@none": [ + "302" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/264d81d7-3559-4f3f-98b5-0ba29485a922", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54ec25e9-c167-4706-b117-190fa4142678" + } + ] + }, + { + "label": { + "@none": [ + "303" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00012F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00012F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b68e8fbf-c704-4443-82b1-89fa0fbce71c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00012F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00012F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08b610de-c6b9-4498-be2c-56055d6b141e" + } + ] + }, + { + "label": { + "@none": [ + "304" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000130" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000130" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000130", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5979f640-b5e7-4d4a-bc4a-ccabc26a2708", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000130", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000130", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000130/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a2e60b1-2b31-49f5-85cf-973b128a087b" + } + ] + }, + { + "label": { + "@none": [ + "305" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000131" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000131" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000131", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd022468-f75b-449e-b47a-305104a84519", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000131", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000131", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000131/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad29c4e6-b456-44bc-82dd-4333ff9dd1b5" + } + ] + }, + { + "label": { + "@none": [ + "306" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000132" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000132" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000132", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b0fe0e38-9145-4272-a1d4-de37a336447f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000132", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000132", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000132/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d05632d8-e8c0-4f82-b3da-cb2111267467" + } + ] + }, + { + "label": { + "@none": [ + "307" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000133" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000133" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000133", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6914f22b-00ee-4018-91f4-a71cc1e5a124", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000133", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000133", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000133/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3f4e2585-b42b-4e39-aadb-60d13198e12c" + } + ] + }, + { + "label": { + "@none": [ + "308" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000134" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000134" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000134", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b27a28e8-1eb1-4ac5-a097-bab63a518ed7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000134", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000134", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000134/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48979772-7d21-48ab-8dc3-36e754dfe5d5" + } + ] + }, + { + "label": { + "@none": [ + "309" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000135" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000135" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000135", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ebf00bcb-94c3-436d-8dc4-782f517243dc", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000135", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000135", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000135/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b431ffc6-823b-4d5a-a8bc-801bc187c7ab" + } + ] + }, + { + "label": { + "@none": [ + "310" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000136" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000136" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000136", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/60161961-65c2-4372-b92c-4fc58089e9a2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000136", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000136", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000136/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/844a5d8b-2fc9-4a4a-92d2-b36150c96e1e" + } + ] + }, + { + "label": { + "@none": [ + "311" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000137" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000137" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000137", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8d4dd534-a48b-4d0a-8d79-4a2eb7908405", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000137", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000137", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000137/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb219ea0-c687-4f75-a46a-3b00cb7be25c" + } + ] + }, + { + "label": { + "@none": [ + "312" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000138" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000138" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000138", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1d6bfc7d-1d2b-4c59-9d6b-2287c5ed482f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000138", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000138", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000138/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f472687-40bc-4af3-b791-8d65050cd9d8" + } + ] + }, + { + "label": { + "@none": [ + "313" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000139" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000139" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000139", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/92117a02-9129-400b-a8bd-d45733b8702d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000139", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000139", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000139/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ca302d4-4e6a-4ae8-b699-fd3e90651149" + } + ] + }, + { + "label": { + "@none": [ + "314" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e7980626-33a4-48ed-9acf-1b1359ddb59b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/950771df-f777-4cd1-b5d5-58c659c14fd5" + } + ] + }, + { + "label": { + "@none": [ + "315" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/800660bd-1311-4252-b709-c0ef5533e0c5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b282bdae-5347-4afc-b681-8048db23ad37" + } + ] + }, + { + "label": { + "@none": [ + "316" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/97eb0d51-11e7-4dbc-8f87-52f9864499ad", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62a9b0db-8051-4581-953d-f79008acfda8" + } + ] + }, + { + "label": { + "@none": [ + "317" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0eb44822-586d-4519-a7c9-4bbd4a4174ad", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c375e69-fbb2-48b1-8d30-96070059a981" + } + ] + }, + { + "label": { + "@none": [ + "318" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c057c689-6271-4ddd-8c7c-efb9252f6970", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df3b1e79-1886-4f08-a862-a9d5013c41de" + } + ] + }, + { + "label": { + "@none": [ + "319" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00013F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00013F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/74f7ea84-b622-4b6c-821b-79a635fe22fd", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00013F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00013F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b285a58e-36b5-4e71-98a5-d8fad718f004" + } + ] + }, + { + "label": { + "@none": [ + "320" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000140" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000140" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000140", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/70085ec3-85c0-4ec0-a1fd-eeefb5591404", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000140", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000140", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000140/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/880c0b90-d5c9-4acc-a92c-9e67e5713a72" + } + ] + }, + { + "label": { + "@none": [ + "321" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000141" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000141" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000141", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/19ae2d26-fe3e-43fc-9a68-9f7be16e1fe8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000141", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000141", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000141/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82e0d4be-fea7-41cf-9c50-f10d894dd6b0" + } + ] + }, + { + "label": { + "@none": [ + "322" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000142" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000142" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000142", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f47fc074-fc29-442b-9a12-8821e62c8ab8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000142", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000142", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000142/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2974990d-5880-4854-9138-23a554e3a22c" + } + ] + }, + { + "label": { + "@none": [ + "323" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000143" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000143" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000143", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8765039f-4cac-4347-a5e9-13a358e878b1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000143", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000143", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000143/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e665b5d-dba0-4461-8b34-3e95222fca3f" + } + ] + }, + { + "label": { + "@none": [ + "324" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000144" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000144" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000144", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/82f825fd-57aa-4c61-bb7e-6e4da0332c0a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000144", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000144", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000144/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be94af66-cce0-42d9-b046-bb1c551f72c4" + } + ] + }, + { + "label": { + "@none": [ + "325" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000145" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000145" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000145", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0f9aea6-8b5f-4719-a5a9-c6b0739470db", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000145", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000145", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000145/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cbc328c-53d3-4069-9385-1659436e13f7" + } + ] + }, + { + "label": { + "@none": [ + "326" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000146" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000146" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000146", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aaa6fba8-21d4-450c-8879-117300162913", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000146", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000146", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000146/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d924d240-8e8d-43b5-b356-da56de5e89d0" + } + ] + }, + { + "label": { + "@none": [ + "327" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000147" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000147" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000147", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/777efd4b-4abc-47fa-adc3-3012a2a83eee", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000147", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000147", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000147/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6804dfb5-2d15-47a4-aff9-18a555fc5b73" + } + ] + }, + { + "label": { + "@none": [ + "328" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000148" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000148" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000148", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/971e5463-0ac0-4306-a3b3-545b446e4c76", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000148", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000148", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000148/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d09ea61-b9b0-42f5-84ff-49cdf5347e84" + } + ] + }, + { + "label": { + "@none": [ + "329" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000149" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000149" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000149", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8be3ff0f-aca7-47c3-abb7-68523fc618d7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000149", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000149", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000149/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7e8f690-e37a-4de2-88e3-bece8f4b51aa" + } + ] + }, + { + "label": { + "@none": [ + "330" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ec348f9a-81c4-45cd-b19d-601dbcffdb5f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6ba3b6b5-6dfb-4088-8559-60a7ce0f1cc6" + } + ] + }, + { + "label": { + "@none": [ + "331" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3a9f8d69-ef98-43b7-ad1f-29628657e6f3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2825d174-fad8-4ab2-a37f-769e56b85b53" + } + ] + }, + { + "label": { + "@none": [ + "332" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cd7561fd-f12a-4def-9745-61159fae330b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0db718d3-9ebe-40b9-a542-2c2d2d3a0c27" + } + ] + }, + { + "label": { + "@none": [ + "333" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fb6400f1-cb3c-42fd-b4de-d976835020b5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22a5473a-46e7-4632-9ace-0e83199619d2" + } + ] + }, + { + "label": { + "@none": [ + "334" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b73bac6b-ae04-4c45-814b-5d85d05b97b5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7793f546-66cb-47c9-8799-1091e097a19c" + } + ] + }, + { + "label": { + "@none": [ + "335" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00014F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00014F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1fe984c3-ff31-4c9c-b7df-812b35962727", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00014F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00014F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a205e1ae-9b1d-4f4f-89c4-242a1d9ab5e3" + } + ] + }, + { + "label": { + "@none": [ + "336" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000150" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000150" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000150", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d771e157-d7cf-4264-bdf2-d5579f91b232", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000150", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000150", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000150/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d112632-ba95-42e6-85b5-b7f78d4ff481" + } + ] + }, + { + "label": { + "@none": [ + "337" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000151" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000151" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000151", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d1bd2b5b-a93c-4276-8172-788f3e05be10", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000151", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000151", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000151/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed1d88d0-9ccf-4f29-b56c-0cd7fce626c9" + } + ] + }, + { + "label": { + "@none": [ + "338" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000152" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000152" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000152", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2a3d529d-9c4f-4c9f-bd53-970376a70218", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000152", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000152", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000152/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/daeb3bbd-3f6d-484f-9592-adfd20d8fad9" + } + ] + }, + { + "label": { + "@none": [ + "339" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000153" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000153" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000153", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e22703ad-b76d-42f4-bf68-8c791995985e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000153", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000153", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000153/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2df75453-a0f7-449f-af40-a637e8ae6dd4" + } + ] + }, + { + "label": { + "@none": [ + "340" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000154" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000154" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000154", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/baef49bf-a42c-4bc2-b2c0-feebd368bf5b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000154", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000154", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000154/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64d94a72-93ce-41c6-9a85-74e31a94236f" + } + ] + }, + { + "label": { + "@none": [ + "341" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000155" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000155" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000155", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9a3d09c-750e-48b9-8bb7-2aeb7d0308b1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000155", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000155", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000155/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c2e5cd54-0b06-4a01-a204-51a7a39467c5" + } + ] + }, + { + "label": { + "@none": [ + "342" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000156" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000156" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000156", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/77527760-76dd-4860-805d-12810a5de819", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000156", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000156", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000156/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f8f847a7-5211-47ba-83c9-1f801075e52d" + } + ] + }, + { + "label": { + "@none": [ + "343" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000157" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000157" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000157", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/62cb3c36-cdc0-482e-8a77-bfa92bb349ee", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000157", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000157", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000157/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/adc2a689-bb48-439b-bfe4-fa922e595808" + } + ] + }, + { + "label": { + "@none": [ + "344" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000158" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000158" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000158", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/54d71d66-ae3d-4c4a-aa0e-e13030ed2689", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000158", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000158", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000158/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed87a834-2947-4f32-b293-30cc9b4eff96" + } + ] + }, + { + "label": { + "@none": [ + "345" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000159" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000159" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000159", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1c9c234-3c98-4974-9a06-2dfd27688a02", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000159", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000159", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000159/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d768b5aa-018f-4d14-80de-90180334ca57" + } + ] + }, + { + "label": { + "@none": [ + "346" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3fbc83a3-e2d4-4976-a3c4-4c9aa32104c8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0862cec5-f249-4345-9b30-9bd3872c167d" + } + ] + }, + { + "label": { + "@none": [ + "347" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6b18a9c3-aa39-4a94-af8d-2b204db17ff6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08c0bcd6-0fec-4786-8922-9e8aa95f5786" + } + ] + }, + { + "label": { + "@none": [ + "348" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a2c88f42-c385-4fe6-b7ed-9ba0b2c276a2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ce957ea-48a2-4c2e-a7c3-a69d5e86639c" + } + ] + }, + { + "label": { + "@none": [ + "349" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2e6b7fd0-ad24-4a4a-b39b-6ec34955d57f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc24e536-b86c-44b3-b71e-0f4af0a248c7" + } + ] + }, + { + "label": { + "@none": [ + "350" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4ad35380-49d2-4a99-96e1-a20f82da30ea", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68b702a2-e585-4abe-8a6d-78a19d079e51" + } + ] + }, + { + "label": { + "@none": [ + "351" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00015F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00015F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a259c752-cd8a-4dd4-9e42-0e086324ce52", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00015F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00015F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f2a4b2c-5c72-49b0-83b2-2561de05731c" + } + ] + }, + { + "label": { + "@none": [ + "352" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000160" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000160" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000160", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/be3350f1-5269-49c5-ac9e-1b3f18d12e8a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000160", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000160", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000160/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44b2a752-c2a4-408b-bd39-478f35395e1c" + } + ] + }, + { + "label": { + "@none": [ + "353" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000161" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000161" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000161", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2cab653c-dae4-45bc-8a39-2fa6c106b795", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000161", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000161", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000161/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4af73626-ee26-4338-a23d-809f5a8a82d4" + } + ] + }, + { + "label": { + "@none": [ + "354" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000162" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000162" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000162", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ac6b2bbe-7bdf-4a47-9f9c-38c2b22ad69a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000162", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000162", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000162/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b66942c-8fb1-4a1c-b51b-e0091fccc394" + } + ] + }, + { + "label": { + "@none": [ + "355" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000163" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000163" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000163", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4ba7dc85-5282-45c9-ac68-793739e9e95f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000163", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000163", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000163/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2532154-7a7f-4210-a487-6a49f0fbf9ad" + } + ] + }, + { + "label": { + "@none": [ + "356" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000164" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000164" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000164", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fb0bb9fa-737b-4016-aee7-446359d705f1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000164", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000164", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000164/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa1ecad5-f297-4d7a-b20e-94be395336ba" + } + ] + }, + { + "label": { + "@none": [ + "357" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000165" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000165" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000165", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5fe8acf-5334-43d6-9119-4673c3c42170", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000165", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000165", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000165/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd16f80d-1fde-4aab-9e9f-f7199593a08f" + } + ] + }, + { + "label": { + "@none": [ + "358" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000166" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000166" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000166", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7c03bace-af2a-4529-a5f5-364fd97170a7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000166", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000166", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000166/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4701bdef-9135-4ec5-8096-80e5ec4c4c4f" + } + ] + }, + { + "label": { + "@none": [ + "359" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000167" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000167" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000167", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5961035d-23df-4d12-b709-165d92b62a0e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000167", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000167", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000167/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/247f40d7-6882-4410-8d62-7b9703e74aad" + } + ] + }, + { + "label": { + "@none": [ + "360" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000168" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000168" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000168", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e27ca8cb-11f2-461f-aabe-135309134295", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000168", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000168", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000168/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b13f3554-19e3-45da-bb52-5722dacb8ce2" + } + ] + }, + { + "label": { + "@none": [ + "361" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000169" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000169" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000169", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7d8080b7-2bb1-4aed-9b66-6cf76053fb81", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000169", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000169", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000169/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40e0bbc1-1dca-47c9-8c80-4038ed12fcbe" + } + ] + }, + { + "label": { + "@none": [ + "362" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4162055e-2f22-489b-ad64-ba7e0d2cf8b2", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54427c4d-94bb-41f9-830a-e2e1034ac9dd" + } + ] + }, + { + "label": { + "@none": [ + "363" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/05a90e53-ce32-4dba-a297-6b7a7dff623d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/30b08048-f3a9-4488-8dc8-5e31464ea1a2" + } + ] + }, + { + "label": { + "@none": [ + "364" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9f2f4f20-c2b6-49a9-951c-242cdcc56b1b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/16326b37-9417-4b7f-9669-cd7c2054e40a" + } + ] + }, + { + "label": { + "@none": [ + "365" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8ac9894d-0ca4-44fe-a54e-62ed35b1c226", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0213248-8e1e-4220-9158-4acf3f6e5233" + } + ] + }, + { + "label": { + "@none": [ + "366" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6355c14a-a186-4431-938c-cea61f58c232", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03592d0c-2ad9-40e3-b889-dbbdeb598ad8" + } + ] + }, + { + "label": { + "@none": [ + "367" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00016F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00016F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9c0dad5c-92c0-46dc-8ebc-e9722b851dc3", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00016F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00016F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e70f2e45-3640-4e74-9623-5de135312473" + } + ] + }, + { + "label": { + "@none": [ + "368" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000170" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000170" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000170", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad6b3e6e-6407-41db-81ca-8f4633c5464d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000170", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000170", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000170/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df55351e-1215-43b9-9c3e-f74b8703544f" + } + ] + }, + { + "label": { + "@none": [ + "369" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000171" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000171" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000171", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9331167e-4751-4b2b-bc10-10f05fc9f87d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000171", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000171", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000171/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8bcc79cd-ef23-4b17-9e35-34f53159ac53" + } + ] + }, + { + "label": { + "@none": [ + "370" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000172" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000172" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000172", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9b2809c3-adda-4dc8-845a-a4597c882652", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000172", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000172", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000172/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c368b1d9-e395-47d4-9e17-6d7db1e06422" + } + ] + }, + { + "label": { + "@none": [ + "371" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000173" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000173" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000173", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/926510ad-3f00-4cb8-940b-cc7ed6ea890e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000173", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000173", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000173/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bcc28678-15a6-45ee-821b-45cb0276de83" + } + ] + }, + { + "label": { + "@none": [ + "372" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000174" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000174" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000174", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9501eb7-61c9-4b50-8563-f2f24e63037c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000174", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000174", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000174/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e7795c3-78d1-41bc-a90b-466ae3c188ee" + } + ] + }, + { + "label": { + "@none": [ + "373" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000175" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000175" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000175", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/726b3366-7baa-4a6f-bda5-14a4afba1208", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000175", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000175", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000175/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d011425-5de9-4f94-934d-231aa3de67bf" + } + ] + }, + { + "label": { + "@none": [ + "374" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000176" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000176" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000176", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9c328da9-b88c-4b46-a55c-b587cdbefa9a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000176", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000176", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000176/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f0b8911-7767-492d-b65e-9130e4a9e48c" + } + ] + }, + { + "label": { + "@none": [ + "375" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000177" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000177" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000177", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a28528ff-6c79-4a12-8020-65cf041b2eec", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000177", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000177", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000177/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f17d9d03-9a03-45a5-bf53-c5f0d7b7443c" + } + ] + }, + { + "label": { + "@none": [ + "376" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000178" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000178" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000178", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/032f1f4b-5b17-4524-9b70-dfdd90873669", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000178", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000178", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000178/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2d09ac6-fa93-4278-8434-56d38f632a60" + } + ] + }, + { + "label": { + "@none": [ + "377" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000179" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000179" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000179", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d1e1120e-4627-4192-98e6-beeb0ea98017", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000179", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000179", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000179/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06585d12-7aab-4ae8-abb4-b3eb48ce4a9a" + } + ] + }, + { + "label": { + "@none": [ + "378" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/432b71ae-52dc-475b-8585-f6ba1f38387a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40e3f2e8-63e6-49d2-a7c2-8ae01e1828d1" + } + ] + }, + { + "label": { + "@none": [ + "379" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9d0ddcd4-8527-43be-a923-4c16a763b9f0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4813184a-867f-4d55-98a1-4674e2182fa6" + } + ] + }, + { + "label": { + "@none": [ + "380" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59ab7e60-6354-4113-9e6a-d5c150e248ea", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5873b9d-2228-4743-925f-bba1019d55f1" + } + ] + }, + { + "label": { + "@none": [ + "381" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5e5f9a8a-3221-4afe-b3fc-706c46e66d31", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f983024-42fb-42bf-8dcc-3a60eae22cea" + } + ] + }, + { + "label": { + "@none": [ + "382" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/721ae155-e57f-40e5-9176-f8f619a1a4ef", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bad6ae45-54ff-4b00-a3b6-d8c4a1a5585e" + } + ] + }, + { + "label": { + "@none": [ + "383" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00017F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00017F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aa5d8c33-ae93-4697-925a-dd893ed02bd6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00017F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00017F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ba0bc6f-d44e-43ba-a2e5-4b566294bdc0" + } + ] + }, + { + "label": { + "@none": [ + "384" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000180" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000180" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000180", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8af16cc4-ec0f-41b4-9f22-d3501d143dd9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000180", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000180", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000180/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/56186ea0-dcda-44d6-9511-a8c730a2f5e3" + } + ] + }, + { + "label": { + "@none": [ + "385" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000181" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000181" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000181", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7fa596db-fa8a-48fa-bb33-57aef680b0e5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000181", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000181", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000181/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e26151f-2220-428f-bb1c-c0d277700789" + } + ] + }, + { + "label": { + "@none": [ + "386" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000182" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000182" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000182", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/531b902c-27e1-4972-958b-d88204a796ca", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000182", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000182", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000182/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2acefb46-c15e-46c4-826e-d40affc74bc6" + } + ] + }, + { + "label": { + "@none": [ + "387" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000183" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000183" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000183", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c52a9b6f-592b-43cb-af2e-554676f7356a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000183", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000183", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000183/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/45d4624b-c5af-40ca-baeb-d83dc508791b" + } + ] + }, + { + "label": { + "@none": [ + "388" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000184" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000184" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000184", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f442e062-c3c3-4904-b09b-a7a2dca61e9e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000184", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000184", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000184/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59d21b6e-6b1a-4151-9022-b77db6c4040d" + } + ] + }, + { + "label": { + "@none": [ + "389" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000185" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000185" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000185", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a6c5ecc5-0db2-4fe5-8243-287e077aa5ff", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000185", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000185", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000185/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3508254-ca59-4885-8ed4-cd796f18a97d" + } + ] + }, + { + "label": { + "@none": [ + "390" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000186" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000186" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000186", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f6c68ff2-e1e6-4d5c-aafb-ddf804a68607", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000186", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000186", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000186/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee7094af-809c-45d9-b86a-c3b7a5b9b642" + } + ] + }, + { + "label": { + "@none": [ + "391" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000187" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000187" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000187", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b68508b-5f06-47b5-8697-dc953f0e7cd4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000187", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000187", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000187/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb88846b-5a7a-4e80-95d5-17c39c20b5d7" + } + ] + }, + { + "label": { + "@none": [ + "392" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000188" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000188" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000188", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b32acccf-c931-4912-9668-0cbb36cef690", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000188", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000188", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000188/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7f94a099-99e1-41fa-8616-0e203b5a2ba3" + } + ] + }, + { + "label": { + "@none": [ + "393" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000189" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000189" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000189", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b2f4ccda-c8c8-4e7b-a50e-cdc0b229a38d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000189", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000189", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000189/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01872975-8538-42fb-bb01-7da8a6843cab" + } + ] + }, + { + "label": { + "@none": [ + "394" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ed424077-7bc4-4f27-8088-fb1e1084668b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82a9b20e-4d53-451e-9bf5-9d62a4c8ed4d" + } + ] + }, + { + "label": { + "@none": [ + "395" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a0c20f7c-87ae-42fc-95e1-705f607e2dc1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c419f520-d5be-4942-be8b-a168e3d97694" + } + ] + }, + { + "label": { + "@none": [ + "396" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1fcc85ff-f867-4782-9ea6-4a321c35eaa4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a20d23e2-a33a-4f12-8866-ae1aca005ead" + } + ] + }, + { + "label": { + "@none": [ + "397" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/49f7137f-75c2-48ad-bd53-08a40cd9462e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd2277d1-cf75-4db3-a21b-5ba0a25fde1d" + } + ] + }, + { + "label": { + "@none": [ + "398" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff01a981-c77c-410f-9b5f-c5137c784f6f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/27553b4e-9ca8-441e-8836-4a7903834420" + } + ] + }, + { + "label": { + "@none": [ + "399" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00018F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00018F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ab25c2f4-536b-4700-9f08-cee6e5cf286d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00018F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00018F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8ec17c43-c298-478e-9603-aefc06f4cb32" + } + ] + }, + { + "label": { + "@none": [ + "400" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000190" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000190" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000190", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4e89458b-fe01-40ae-9492-16483f86321c", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000190", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000190", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000190/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85c9e402-9c4d-4a25-9f47-36eed3e4c8ac" + } + ] + }, + { + "label": { + "@none": [ + "401" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000191" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000191" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000191", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/49bdcc81-5c5e-444f-ae87-464fa56ddd04", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000191", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000191", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000191/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/996a6871-d74f-4728-b43f-6558adfc1d0c" + } + ] + }, + { + "label": { + "@none": [ + "402" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000192" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000192" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000192", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e2027d97-b566-46ec-9799-c27bcd0acf95", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000192", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000192", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000192/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8cc69853-5838-4451-aed7-bf9f58af8255" + } + ] + }, + { + "label": { + "@none": [ + "403" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000193" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000193" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000193", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4dd79d24-ca13-44fe-abdc-c3909e2f51f0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000193", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000193", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000193/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1833a6a-cae9-49a4-948b-4e8834f67de6" + } + ] + }, + { + "label": { + "@none": [ + "404" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000194" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000194" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000194", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a0c0c79-d8e4-4c5a-b318-9e53aba0bdfb", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000194", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000194", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000194/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b996c8e0-7a2c-4b52-854a-409426c050c8" + } + ] + }, + { + "label": { + "@none": [ + "405" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000195" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000195" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000195", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/68949290-2174-4268-b3fc-d7749a28f0f5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000195", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000195", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000195/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9366e776-13f4-4cb6-b989-fb2851c15af6" + } + ] + }, + { + "label": { + "@none": [ + "406" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000196" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000196" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000196", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/18634112-1636-4ddc-8738-a12c6bd85941", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000196", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000196", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000196/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7bc88d11-578b-40e8-918e-850a6318227a" + } + ] + }, + { + "label": { + "@none": [ + "407" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000197" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000197" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000197", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/36f94f73-6c5e-45e7-bf98-32063eb37029", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000197", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000197", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000197/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/984d1763-a515-4a6d-a68f-060de661b3bf" + } + ] + }, + { + "label": { + "@none": [ + "408" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000198" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000198" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000198", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/050e931d-5cfb-4b0a-912d-4a4b37dfa92a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000198", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000198", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000198/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8608854f-db4f-486c-aab5-8b7064cc9357" + } + ] + }, + { + "label": { + "@none": [ + "409" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x000199" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x000199" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000199", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df9bc985-c990-448b-99e9-d21f3bffcbe1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x000199", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000199", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x000199/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/252d1e1d-534c-4aad-83dd-3b920b1a6903" + } + ] + }, + { + "label": { + "@none": [ + "410" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019A" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019A" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019A", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b10910aa-a808-431d-869c-e4ca92b6a943", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019A", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019A", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019A/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/151ec0cd-4c78-4b8c-8f7c-7e892088b06f" + } + ] + }, + { + "label": { + "@none": [ + "411" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019B" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019B" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019B", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/38274572-eb4c-4567-af03-3d4ffb86c94d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019B", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019B", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019B/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/980c8f7f-3d17-4cf0-b0eb-041df48cbc7d" + } + ] + }, + { + "label": { + "@none": [ + "412" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019C" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019C" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019C", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6ed51413-fcc4-4266-ae06-fd49999e8dea", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019C", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019C", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019C/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0d9edc4-7cca-4c99-a399-c2c272b18da7" + } + ] + }, + { + "label": { + "@none": [ + "413" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019D" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019D" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019D", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/97681afb-af69-4669-ac10-6810a26e8245", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019D", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019D", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019D/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0c901228-afc4-4c3e-9ee1-2b8228e0653a" + } + ] + }, + { + "label": { + "@none": [ + "414" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019E" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019E" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019E", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/587f3466-08b8-48ea-a0b3-b3c0edb8e689", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019E", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019E", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019E/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75bc700c-4181-416e-88a4-21ab9bd8030c" + } + ] + }, + { + "label": { + "@none": [ + "415" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x00019F" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x00019F" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019F", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1965bf98-5d2e-49c0-a237-9e39eb472cb4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x00019F", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019F", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x00019F/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47c35385-0261-4454-b805-26f3a873a59d" + } + ] + }, + { + "label": { + "@none": [ + "416" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/10b74b92-9bb3-4b8f-af3d-1956b125dc66", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04a6ef30-8f2f-42fb-8806-0d76e93d2751" + } + ] + }, + { + "label": { + "@none": [ + "417" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5510bbfa-75c4-447a-8993-65d30b78abc0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e852516b-f17c-4a96-b67a-9502a1e8dee5" + } + ] + }, + { + "label": { + "@none": [ + "418" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/48b6104d-4980-4493-ba44-c74db14ca40f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/775735c6-ea6b-485a-a9f4-e8c86ee9fd40" + } + ] + }, + { + "label": { + "@none": [ + "419" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad811505-3015-4135-a725-cdef80f1f13d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3de12aba-d6b7-42ee-90f4-c6e3e26e0e9f" + } + ] + }, + { + "label": { + "@none": [ + "420" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b6fe8983-f66c-410f-a858-406389eee33a", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3f9fbc04-ef01-490d-8760-9a90ec71eea1" + } + ] + }, + { + "label": { + "@none": [ + "421" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/84018140-e272-4115-ac43-f69331e6c6fd", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09688f4f-82d5-4dcf-9dbb-fc85f6078efa" + } + ] + }, + { + "label": { + "@none": [ + "422" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f4e99e87-24f4-42da-b7bb-ddd8757f5a38", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f1d8c43-4cff-4f8d-97c2-f3a528973d06" + } + ] + }, + { + "label": { + "@none": [ + "423" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f62b0928-56fa-40da-8f68-ab8159bf5895", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8535e69c-a1c1-4752-a435-0067fc088108" + } + ] + }, + { + "label": { + "@none": [ + "424" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/beadb4b0-1110-4058-9a19-f538cfb74522", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3aab5958-91d6-47d7-98d9-c6d9e778f075" + } + ] + }, + { + "label": { + "@none": [ + "425" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001A9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001A9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af52467b-cff0-4996-ab54-7d26bbd84bb5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001A9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001A9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf3873b0-517e-4069-b3b0-b1291976c5ba" + } + ] + }, + { + "label": { + "@none": [ + "426" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0b5c573-c298-4651-b62a-03c0df8e7249", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c3f5a44-87f3-40ef-9e43-9037c52e2017" + } + ] + }, + { + "label": { + "@none": [ + "427" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/51bbc9df-a875-409b-885d-5ddeb8d14da1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0da58a5-c972-49b5-a4a2-9a462f2cf47e" + } + ] + }, + { + "label": { + "@none": [ + "428" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e656752f-7907-4588-8f76-caf474915e12", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed8fcd98-61e5-4608-906c-a54d09cb1061" + } + ] + }, + { + "label": { + "@none": [ + "429" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/89389684-6389-4a19-90bb-59e7d1327807", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d4439333-6cff-46fd-85dc-0a3df0ad9961" + } + ] + }, + { + "label": { + "@none": [ + "430" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/430e272e-906a-40b4-8f69-e89ed1413f58", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f017954c-1a7f-4c68-81ef-cbc4e1dae1d9" + } + ] + }, + { + "label": { + "@none": [ + "431" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001AF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001AF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/935ef81a-9999-4162-a087-dfa43a1b4575", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001AF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001AF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9da441a-7cbd-41bd-ae8f-274f19648651" + } + ] + }, + { + "label": { + "@none": [ + "432" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0ae0f93-6894-4f09-8af5-1c03103906ad", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43e0b603-7b0d-4065-a32e-a5ee77491b46" + } + ] + }, + { + "label": { + "@none": [ + "433" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8859fe27-dec3-42fd-819e-b776460a118b", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/721d58c0-2cbd-4ea1-adc3-d92cbeff2c6d" + } + ] + }, + { + "label": { + "@none": [ + "434" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2e351c89-342c-43be-a557-1bce6732a1b5", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee764ec0-3213-41a0-aa9b-9bace3b1c896" + } + ] + }, + { + "label": { + "@none": [ + "435" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9ccbe48d-b7a8-4754-9888-b415131b5c83", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca5a39af-5e02-44a4-9d38-814de0e7d6f2" + } + ] + }, + { + "label": { + "@none": [ + "436" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/025d1ea0-4daf-461c-b2eb-8ddad71c5bb9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff1d192d-c2d9-4b2e-a523-4091645da7b5" + } + ] + }, + { + "label": { + "@none": [ + "437" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/209c8aa9-40e1-42f4-a35d-852562cc4f85", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e79a1d1-d54c-4923-a007-771780a972a0" + } + ] + }, + { + "label": { + "@none": [ + "438" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e4ce793d-4c23-48f7-a0f8-163a2560f0f6", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b014c2b7-7fd2-41eb-91e8-f59cf1c412c9" + } + ] + }, + { + "label": { + "@none": [ + "439" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b83bd909-7cec-43e6-9aaa-4592d7804867", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7a19bb9a-544a-48e2-8e30-329549b34143" + } + ] + }, + { + "label": { + "@none": [ + "440" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/30bd7966-4b23-4b47-a072-4e1197c57ae1", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9accbdb5-b4f6-4b1b-af32-481f218d871c" + } + ] + }, + { + "label": { + "@none": [ + "441" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001B9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001B9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/80679c71-5294-49e9-b41f-fdf1ee190739", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001B9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001B9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e5260aa-36d3-4d18-9a10-16cc4bf96eb9" + } + ] + }, + { + "label": { + "@none": [ + "442" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/db7bef90-a6d5-450a-a2f6-2e260a708dae", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c2323a7-cfdd-499b-9626-fd0a6d55f052" + } + ] + }, + { + "label": { + "@none": [ + "443" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/78361465-feed-40e9-9c76-d93a20e10e8f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a05a869a-ed93-4a03-961f-c58d4bd74b0c" + } + ] + }, + { + "label": { + "@none": [ + "444" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/feb87559-b555-4697-b287-d7d09ecb5a12", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53d32832-d9d2-4cf0-91ca-9a6c1a873c1a" + } + ] + }, + { + "label": { + "@none": [ + "445" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ef945ff1-ef3c-4644-a10b-5aab03a61e58", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc2176ed-6fe0-405e-ae4d-a0a41214a473" + } + ] + }, + { + "label": { + "@none": [ + "446" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/55ea64d7-644e-4576-b825-6b8e1727b0b0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47b921ec-678a-4f9e-aabd-249234ff8300" + } + ] + }, + { + "label": { + "@none": [ + "447" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001BF" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001BF" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BF", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3e400087-1b55-400c-b430-75a50ca1db3e", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001BF", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BF", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001BF/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/492a3b79-b876-475d-aac2-262a4168e1f8" + } + ] + }, + { + "label": { + "@none": [ + "448" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C0" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C0" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b129c38-f09f-470e-8e5f-8da4ce6e9d85", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C0/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2258bfd3-fb12-472c-ba32-38ad954c2044" + } + ] + }, + { + "label": { + "@none": [ + "449" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C1" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C1" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/81453b17-9cdd-4954-a4b5-563d8c1629a7", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C1/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7bbe2477-a16e-4af9-b583-89057909bedc" + } + ] + }, + { + "label": { + "@none": [ + "450" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C2" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C2" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1e84775a-c78b-412e-bf98-b5b82effabbf", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C2/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/76edd9f8-2644-4998-8d4e-1ba4b5456f60" + } + ] + }, + { + "label": { + "@none": [ + "451" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C3" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C3" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c1e8c042-129e-448a-8ded-bc4eb5c94aa9", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C3/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb312ee3-c777-4eca-a42b-fe5b94b48f81" + } + ] + }, + { + "label": { + "@none": [ + "452" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C4" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C4" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/65bbec76-7c84-4220-9ddb-2ed9723b52d4", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C4/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2642602a-d20f-40d9-b682-a0b7d8e9d867" + } + ] + }, + { + "label": { + "@none": [ + "453" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C5" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C5" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c0f0154-a39b-439e-9ebb-1b9839d7545f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C5/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad2ed891-fe91-4684-a21d-8a055de1f2be" + } + ] + }, + { + "label": { + "@none": [ + "454" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C6" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C6" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4d32d384-a964-4326-8b24-00d5c54b8e5f", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C6/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2277e851-068d-48e6-bd96-16139b785f8a" + } + ] + }, + { + "label": { + "@none": [ + "455" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C7" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C7" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f244c910-faf3-45d2-9d87-1e0c4ce9a46d", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C7/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ae0da1f-b095-4760-bc99-33485f1fae30" + } + ] + }, + { + "label": { + "@none": [ + "456" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C8" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C8" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5565ca2-27df-486f-a7f6-ab6e306eb3ca", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C8/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/77b1aa65-7073-4d20-beff-8269eb6c0b67" + } + ] + }, + { + "label": { + "@none": [ + "457" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001C9" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001C9" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/666f9a54-0c7f-4216-8a26-cecade8775c8", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001C9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001C9/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/381b8d39-9263-4018-9584-2d8823f8a2f5" + } + ] + }, + { + "label": { + "@none": [ + "458" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CA" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CA" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CA", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3f7acadc-d698-4bce-84b1-27756181dba0", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CA", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CA", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CA/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36a52046-d48c-4ca8-aee8-6a803a7d0cb6" + } + ] + }, + { + "label": { + "@none": [ + "459" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CB" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CB" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CB", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d5e1384b-b9c0-472e-b088-6ba097548084", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CB", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CB", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CB/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/202cc3e5-e8ac-4d70-8fff-51621211517a" + } + ] + }, + { + "label": { + "@none": [ + "460" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CC" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CC" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CC", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/74545b20-7d88-40c3-bedb-ad7c9275e852", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CC", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CC", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CC/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae30e695-c9f7-44ab-9539-ad679bee95fc" + } + ] + }, + { + "label": { + "@none": [ + "461" + ] + }, + "width": 1972, + "height": 2688, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CD" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CD" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CD", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/44fda355-5384-43a6-9a04-115bb37b5a95", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CD", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 1972, + "height": 2688, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CD", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CD/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/015ca193-b20d-4906-98b1-28e0e08300da" + } + ] + }, + { + "label": { + "@none": [ + "462" + ] + }, + "width": 2184, + "height": 2916, + "seeAlso": [ + { + "format": "application/xml", + "label": { + "@none": [ + "ALTO XML" + ] + }, + "profile": "https://www.loc.gov/standards/alto/", + "type": "Dataset", + "id": "https://api.bl.uk/text/alto/ark:/81055/vdc_00000004216B.0x0001CE" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "Plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://api.bl.uk/text/plain/ark:/81055/vdc_00000004216B.0x0001CE" + } + ], + "type": "Canvas", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/364feea9-c79f-4861-978c-87f34467ea07", + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_00000004216D.0x0001CE", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpg", + "service": [ + { + "protocol": "http://iiif.io/api/image", + "width": 2184, + "height": 2916, + "tiles": [ + { + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ], + "width": 256 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level2.json", + { + "qualities": [ + "gray", + "color", + "bitonal" + ], + "supports": [ + "profileLinkHeader", + "rotationArbitrary", + "regionSquare", + "mirroring" + ] + } + ], + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CE", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://api.bl.uk/image/iiif/ark:/81055/vdc_00000004216A.0x0001CE/full/max/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3cb23e7-ba78-4dbb-8f9b-4ad590ba4222" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/data.getty.edu__museum__api__iiif__298147__manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/data.getty.edu__museum__api__iiif__298147__manifest.json new file mode 100644 index 0000000..80529dd --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/data.getty.edu__museum__api__iiif__298147__manifest.json @@ -0,0 +1,235 @@ +{ + "label": { + "@none": [ + "La Surprise (1718–1719), Jean-Antoine Watteau (French, 1684 - 1721)" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Artist / Maker" + ] + }, + "value": { + "@none": [ + "Jean-Antoine Watteau (French, 1684 - 1721)" + ] + } + }, + { + "label": { + "@none": [ + "Culture & Date" + ] + }, + "value": { + "@none": [ + "French, 1718–1719" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Oil on panel" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "36.4 × 28.2 cm (14 5/16 × 11 1/8 in.)" + ] + } + }, + { + "label": { + "@none": [ + "Object Number" + ] + }, + "value": { + "@none": [ + "2017.72" + ] + } + }, + { + "label": { + "@none": [ + "Object Type" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + }, + { + "label": { + "@none": [ + "Place Created" + ] + }, + "value": { + "@none": [ + "France" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "The J. Paul Getty Museum" + ] + } + }, + { + "label": { + "@none": [ + "Rights Statement" + ] + }, + "value": { + "@none": [ + "
Images provided here are believed to be in the public domain and are made available under the terms of the Getty's Open Content Program. Texts provided here are © J. Paul Getty Trust, licensed under CC BY 4.0. Terms of use for the Getty logo can be found here.
" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://www.getty.edu/legal/copyright.html#oc" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "In a verdant park at sunset, a young woman abandons herself to her tousle-haired companion’s ardent embrace. Coiled up in a pose of centrifugal energy, the impulsive lovers are oblivious to the third figure: Mezzetin, sitting on the same rocky outcrop. Drawn from the theatrical tradition of the commedia dell’arte, this character represents a poignant foil to the couple’s unbridled passion. Introverted and with a melancholy air, he tunes his guitar, knowing that his serenading will mean nothing to the lovers and serve only to heighten his own sense of lonely longing as he gazes upon them. His costume, a rose-coloured jacket and knee-britches slashed with yellow and adorned with blue ribbons as well as a lace ruff and cuffs, is reminiscent of the paintings of Anthony van Dyck. The small dog at lower right, a quotation from Rubens, watches the couple with considerably more appreciation than Mezzetin can muster." + ] + } + } + ], + "thumbnail": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "Image" + } + ], + "viewingDirection": "left-to-right", + "logo": [ + { + "id": "http://www.getty.edu/museum/media/graphics/web/logos/getty-logo.png", + "type": "Image" + } + ], + "type": "Manifest", + "id": "https://data.getty.edu/museum/api/iiif/298147/manifest.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Digital image courtesy of the Getty's Open Content Program." + ] + } + }, + "homepage": { + "id": "https://www.getty.edu/art/collection/objects/298147/jean-antoine-watteau-la-surprise-french-1718-1719/", + "type": "Text" + }, + "partOf": [ + { + "id": "http://www.getty.edu/art/collection/", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "Main Image" + ] + }, + "width": 4937, + "height": 6406, + "thumbnail": [ + { + "id": "https://data.getty.edu/museum/api/iiif/633385/full/231,300/0/default.jpg", + "type": "Image" + } + ], + "type": "Canvas", + "id": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://data.getty.edu/museum/api/iiif/298147/annotation/main-image", + "target": [ + { + "id": "https://data.getty.edu/museum/api/iiif/298147/canvas/main", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "id": "https://data.getty.edu/museum/api/iiif/633385", + "type": "ImageService2" + } + ], + "width": 789, + "height": 1024, + "type": "Image", + "id": "https://data.getty.edu/museum/api/iiif/633385/full/789,1024/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7817ebfa-5c4b-4dc6-8af9-8dd6043ed31a" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/data.ucd.ie__api__img__manifests__ucdlib:33064.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/data.ucd.ie__api__img__manifests__ucdlib:33064.json new file mode 100644 index 0000000..e273988 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/data.ucd.ie__api__img__manifests__ucdlib:33064.json @@ -0,0 +1,303 @@ +{ + "seeAlso": [ + { + "format": "text/xml", + "profile": "http://www.loc.gov/mods/v3", + "label": { + "@none": [ + "MODS metadata describing this object" + ] + }, + "type": "Dataset", + "id": "https://digital.ucd.ie/view/ucdlib:33064.xml" + }, + { + "format": "text/rdf+n3", + "label": { + "@none": [ + "RDF n3 serialisation of metadata describing this object" + ] + }, + "type": "Dataset", + "id": "https://digital.ucd.ie/view/ucdlib:33064.n3" + }, + { + "format": "application/x.europeana-edm+xml", + "label": { + "@none": [ + "EDM (Europeana Data Model) RDF metadata" + ] + }, + "profile": "http://www.europeana.eu/schemas/edm/", + "type": "Dataset", + "id": "https://data.ucd.ie/api/edm/v1/ucdlib:33064" + }, + { + "format": "application/rdf+xml", + "label": { + "@none": [ + "RDF-XML metadata describing this object" + ] + }, + "type": "Dataset", + "id": "https://digital.ucd.ie/view/ucdlib:33064.rdf" + } + ], + "logo": [ + { + "id": "https://digital.ucd.ie/images/logos/ucd_logo_sm.png", + "type": "Image" + } + ], + "label": { + "@none": [ + "Housing Plans for Greater Dublin" + ] + }, + "thumbnail": [ + { + "id": "https://digital.ucd.ie/get/ucdlib:33064/thumbnail", + "type": "Image" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Housing Plans for Greater Dublin" + ] + } + }, + { + "label": { + "@none": [ + "Type of resource" + ] + }, + "value": { + "@none": [ + "dctypes:StillImage" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "@none": [ + "Urbana, Ill." + ] + } + }, + { + "label": { + "@none": [ + "created" + ] + }, + "value": { + "@none": [ + "1914" + ] + } + }, + { + "label": { + "@none": [ + "Exhibitions" + ] + }, + "value": { + "@none": [ + "A label included with the drawings indicates that Cushing Smith later exhibited the drawings in the Thirtieth Annual Chicago Architectural Exhibition, Art Institute of Chicago, 5-29 April, 1917." + ] + } + }, + { + "label": { + "@none": [ + "Ownership/custodial history" + ] + }, + "value": { + "@none": [ + "The drawings were donated to the Wilmette Historical Museum, Wilmette, Illinois by Cushing Smith's granddaughter, Mary Duke Smith, and daughter-in-law, Joan Smith. With the Smiths permission, Wilmette Historical Museum donated the drawings to the Irish Architectural Archive in 2011." + ] + } + }, + { + "label": { + "@none": [ + "permalink" + ] + }, + "value": { + "@none": [ + "doi:10.7925/drs1.ucdlib_33064" + ] + } + }, + { + "label": { + "@none": [ + "topic-LCSH" + ] + }, + "value": { + "@none": [ + "City planning", + "Architecture, Domestic" + ] + } + }, + { + "label": { + "@none": [ + "genre" + ] + }, + "value": { + "@none": [ + "Competition drawings" + ] + } + }, + { + "label": { + "@none": [ + "genre" + ] + }, + "value": { + "@none": [ + "Architectural drawings" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Drawing submitted by F.A. Cushing Smith to the town plan for Dublin international competition organised by the Civics Institute of Ireland in 1914. Cushing Smith was the sole US entrant and also one of only two single-person entrants. His address at the time of the competition was the University Club, Urbana, Illinois. To ensure anonymity during the adjudication process his entry was give the designation 'B'. Aside from the winners, the adjudicators were unanimous in giving Honourable Mention to four entries including Cushing Smith's. This drawing includes plans and elevations for various types of housing and a block plan of suburban house arrangements." + ] + } + } + ], + "type": "Manifest", + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Irish Architectural Archive" + ] + } + }, + "partOf": [ + { + "label": { + "@none": [ + "Dublin Town Planning Competition 1914" + ] + }, + "type": "Collection", + "id": "https://data.ucd.ie/api/img/collection/ucdlib:33058" + } + ], + "items": [ + { + "label": { + "@none": [ + "recto" + ] + }, + "width": 14451, + "height": 14214, + "service": [ + { + "profile": "http://iiif.io/api/annex/services/physdim", + "physicalScale": 0.00333333333333333, + "physicalUnits": "in", + "type": "Service" + } + ], + "type": "Canvas", + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://data.ucd.ie/api/img/ucdlib:33064/annotation/ucdlib:33543", + "target": [ + { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.ucd.ie/loris/ucdlib:33543", + "type": "ImageService2" + } + ], + "format": "image/jpeg", + "height": 14214, + "width": 14451, + "type": "dcTypes:Image", + "id": "https://iiif.ucd.ie/loris/ucdlib:33543/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/46df4103-9fa4-4f30-b85d-f01fc6bbaa9c" + } + ] + } + ], + "structures": [ + { + "id": "https://data.ucd.ie/api/img/manifests/ucdlib:33064/sequence/normal", + "type": "Range", + "behavior": [ + "sequence", + "individuals" + ], + "items": [ + { + "id": "https://data.ucd.ie/api/img/ucdlib:33064/canvas/ucdlib:33543", + "type": "Canvas" + } + ], + "label": { + "@none": [ + "Current Page Order" + ] + } + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/demos.biblissima-condorcet.fr__iiif__metadata__BVMM__chateauroux__manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/demos.biblissima-condorcet.fr__iiif__metadata__BVMM__chateauroux__manifest.json new file mode 100644 index 0000000..f98b32c --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/demos.biblissima-condorcet.fr__iiif__metadata__BVMM__chateauroux__manifest.json @@ -0,0 +1,1875 @@ +{ + "label": { + "@none": [ + "Reconstructed manifest (partial): Grandes Chroniques de France (Châteauroux, BM, ms 5)" + ] + }, + "thumbnail": [ + { + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/150,/0/default.jpg", + "type": "Image" + } + ], + "logo": [ + { + "id": "http://static.biblissima.fr/images/logo-biblissima-350w.jpg", + "type": "Image" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "Reconstructed manuscrit (partial reconstruction)" + ] + } + }, + { + "label": { + "@none": [ + "Holding institution (manuscript)" + ] + }, + "value": { + "@none": [ + "Bibliothèque municipale de Châteauroux" + ] + } + }, + { + "label": { + "@none": [ + "Holding institution (cuttings)" + ] + }, + "value": { + "@none": [ + "Bibliothèque nationale de France, Département des Estampes et de la photographie" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmarks" + ] + }, + "value": { + "@none": [ + "Châteauroux, Bibliothèque municipale, ms. 5", + "Paris, BnF, Département des Estampes et de la photographie, RESERVE 4-AD-133" + ] + } + }, + { + "label": { + "@none": [ + "Images Providers" + ] + }, + "value": { + "@none": [ + "Gallica - Bibliothèque nationale de France", + "BVMM (IRHT-CNRS) - Bibliothèque municipale de Châteauroux" + ] + } + }, + { + "label": { + "@none": [ + "Manifest Provider" + ] + }, + "value": { + "@none": [ + "Equipex Biblissima" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This manifest is a partial reconstruction of the Grandes Chroniques de France manuscript (Châteauroux, BM, ms 5 ; full page images coming from the BVMM). The miniatures are associated as detail images on their respective canvas (images coming from Gallica). It only shows the mutilated pages of the original manuscript, not the full object." + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Catalogue record (CCFr)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Digitized miscellany containing the miniatures (Gallica)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Digitized miniatures, retail (Gallica)" + ] + } + }, + { + "label": { + "@none": [ + "Related" + ] + }, + "value": { + "@none": [ + "Catalogue record of the miscellany (BnF)" + ] + } + } + ], + "type": "Manifest", + "id": "http://demos.biblissima-condorcet.fr/iiif/metadata/BVMM/chateauroux/manifest.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Images : Gallica - Bibliothèque nationale de France / BVMM (IRHT-CNRS) - Bibliothèque municipale de Châteauroux ; Manifest IIIF : Régis Robineau (Biblissima)" + ] + } + }, + "homepage": { + "label": { + "@none": [ + "Digitized manuscript (BVMM, IRHT-CNRS)" + ] + }, + "id": "http://bvmm.irht.cnrs.fr/consult/consult.php?reproductionId=4490", + "type": "Text" + }, + "items": [ + { + "label": { + "@none": [ + "f. 033v - 034" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e9618d7e-ed21-47ed-ad33-4206ed79762e", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0038/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59103bf1-d5b2-48f3-bcdb-757a43bd6d2b", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981394#xywh=3949,994,1091,1232", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2138, + "height": 2414, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a26867f6-99dd-468f-86b6-0bd364ff0771" + } + ] + }, + { + "label": { + "@none": [ + "f. 034v - 035" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981395", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cc127582-de23-45bc-b591-93f5fb2b2254", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981395", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0039", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0039/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f5c3fe24-f7c5-4866-bd81-57a66b55375f", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981395#xywh=2618,927,1080,1224", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2159, + "height": 2447, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511139b/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a86cbafd-9ad4-4c07-8764-6c3aac565be2" + } + ] + }, + { + "label": { + "@none": [ + "f. 045v - 046" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981406", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8d5171ce-08cd-42fb-9af3-f8bd38b5e35b", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981406", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0050", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0050/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd91238f-b309-4967-a864-7db8c5f855d2", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981406#xywh=3953,927,1078,1045", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2161, + "height": 2094, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111432/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111432/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b47e9ca-e4ac-4c7c-b882-d2417a17b269" + } + ] + }, + { + "label": { + "@none": [ + "f. 046v - 047" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981407", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/001744a1-9d1c-471c-8b8d-3a300636dd8e", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981407", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0051", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0051/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b3991a64-7eec-432a-9094-5f424f2b7f92", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981407#xywh=2632,881,1091,1024", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2175, + "height": 2041, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111432/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111432/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/45205e4a-da48-427d-92ea-cf38f78fa656" + } + ] + }, + { + "label": { + "@none": [ + "f. 053v - 054" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981414", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/89fd5f39-d6ef-4e8c-aa46-9c3f78492a21", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981414", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0058", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0058/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da8acf69-1bcb-4e26-8212-2eadef54278c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981414#xywh=3928,956,1093,1381", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2183, + "height": 2758, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511147v/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511147v/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07a639d1-9e82-4f09-a742-d06defcdcb16" + } + ] + }, + { + "label": { + "@none": [ + "f. 054v - 055" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981415", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b3deb20-7b67-4c70-aab1-4e54e67ee9f3", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981415", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0059", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0059/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/91d1b01e-6217-4487-b21b-d96171e58ec8", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981415#xywh=2683,925,1046,1333", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2186, + "height": 2785, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511147v/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511147v/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba5c5e9a-f42b-447b-8d11-e81177b61d3d" + } + ] + }, + { + "label": { + "@none": [ + "f. 067v - 068" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981428", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9aca10df-0da4-42ec-93f1-4c20c011e655", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981428", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0072", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0072/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a7f04eaf-2c34-45ec-a8f9-7ed818ee212c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981428#xywh=4053,964,1096,1051", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2161, + "height": 2073, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111504/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111504/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ada02011-6ae7-4249-ac40-c9cf0a07b67d" + } + ] + }, + { + "label": { + "@none": [ + "f. 068v - 069" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981429", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0edb1fac-2ad1-4a28-b0f6-5d9e3c94a8a5", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981429", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0073", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0073/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e299cb5b-9066-4e39-9fe4-16103a4c8e0c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981429#xywh=2695,938,1087,1025", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2230, + "height": 2102, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111504/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111504/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f07e8141-2f7f-4799-bdf9-0a05eee54b5c" + } + ] + }, + { + "label": { + "@none": [ + "f. 080v - 081" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981441", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/948c049c-d6e9-4acc-b3cb-a73bff01f02b", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981441", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0085", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0085/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/552c7765-7a64-40a4-972b-0781a78710c0", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981441#xywh=4007,970,1094,1064", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2227, + "height": 2165, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511154x/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511154x/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05560e25-5c79-4c0f-ba84-6acb55886779" + } + ] + }, + { + "label": { + "@none": [ + "f. 081v - 082" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981442", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/61baeb0c-1584-46cb-8f14-e5ba856e3515", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981442", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0086", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0086/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a736cc82-c11a-44e0-928d-4d1aed795e22", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981442#xywh=2758,974,1044,1046", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2157, + "height": 2162, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511154x/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511154x/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9593efbe-6bb2-4dd9-a3d4-2e72465ceab6" + } + ] + }, + { + "label": { + "@none": [ + "f. 084v - 085" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981445", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7afcb16a-662a-4207-b646-863827662948", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981445", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0089", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0089/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/26af6c1a-63fd-4985-a276-b0785a166bb4", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981445#xywh=4005,963,1089,1085", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2150, + "height": 2143, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511158q/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511158q/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f76cc0c7-e490-41bd-afb9-f1014d1dfdb6" + } + ] + }, + { + "label": { + "@none": [ + "f. 085v - 086" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981446", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4324ffe6-f99d-4522-b844-9bef382b54a4", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981446", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0090", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0090/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dc1c62bb-3560-4bd5-983c-d0b7bf5d70ea", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981446#xywh=2726,970,1097,1080", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2171, + "height": 2137, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511158q/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511158q/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a282c5ea-6a76-4de4-bebb-c2c3ca2d0b8b" + } + ] + }, + { + "label": { + "@none": [ + "f. 088v - 089" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981449", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce4b7733-3add-4a58-8dcb-8158efbfc66e", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981449", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0093", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0093/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c7739be7-c274-4a1f-a30d-536ff9eb1852", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981449#xywh=4077,1028,1055,1015", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2177, + "height": 2095, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111610/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111610/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9a24721-4af8-4ce7-b598-11105c024c57" + } + ] + }, + { + "label": { + "@none": [ + "f. 089v - 090" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981450", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/32902573-0c4d-4470-9bdd-8c67552d6e84", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981450", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0094", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0094/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/91ee62c7-3845-4524-b357-1a58158eb3fe", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981450#xywh=2904,956,1030,1008", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2129, + "height": 2083, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111610/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111610/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be39b461-8086-406d-812d-1891bf231704" + } + ] + }, + { + "label": { + "@none": [ + "f. 181v - 182" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981542", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a29fb20e-5db3-4468-bddb-f766c631e53c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981542", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0186", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0186/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/36678d9c-c7fb-45b8-8035-82c53a8b3ad2", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981542#xywh=4064,1409,976,1026", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2015, + "height": 2119, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511164b/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511164b/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc2646de-0cde-4f36-98ff-b38a3205db4b" + } + ] + }, + { + "label": { + "@none": [ + "f. 182v - 183" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981543", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6d43244a-d1e9-4dc6-8173-13eb592e2721", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981543", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0187", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0187/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/48c645ac-68a9-4fc3-ad73-765ecd24b61c", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981543#xywh=2843,1384,990,1039", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 1991, + "height": 2089, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511164b/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511164b/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55bc8536-ba09-4d40-a88e-1b8dadb86038" + } + ] + }, + { + "label": { + "@none": [ + "f. 188v - 189" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981549", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2bca9afa-096e-470c-b242-9f0e2f76d343", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981549", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0193", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0193/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a2dc5623-8f64-4e03-a9d6-5eaab919506d", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981549#xywh=4067,2816,961,1027", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 1972, + "height": 2107, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511167p/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511167p/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7dfa4153-ba41-49e9-b65e-2a808e43f3de" + } + ] + }, + { + "label": { + "@none": [ + "f. 189v - 190" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981550", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9430862-1d59-4a0d-9f1c-f1fb910c20fb", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981550", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0194", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0194/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/34de1b61-e72d-4b0d-bf5f-f355e5e84515", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981550#xywh=2864,2853,1000,1074", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 1932, + "height": 2075, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511167p/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511167p/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a85109b-2bb8-4204-8e16-841d1b1208ba" + } + ] + }, + { + "label": { + "@none": [ + "f. 359v - 360" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981720", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff9a29f2-48a3-42b8-bfa0-92c695a01f1f", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981720", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0364", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0364/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/86605cd4-07db-4fb4-884b-3c5b5e262f03", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981720#xywh=5025,2529,1058,1045", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2115, + "height": 2090, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511170z/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511170z/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/efe7d60e-e468-4c53-8478-79962437aa9b" + } + ] + }, + { + "label": { + "@none": [ + "f. 360v - 361" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981721", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ec7bc4c0-df72-4811-a0b9-69a62940d5a0", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981721", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0365", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0365/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/49e11810-2bbf-4beb-8327-75dab46c9fc8", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981721#xywh=1093,2503,1085,1060", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2103, + "height": 2054, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511170z/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b10511170z/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1126591a-6479-4331-b8fe-ded4fc13b405" + } + ] + }, + { + "label": { + "@none": [ + "f. 415v - 416" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981776", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf96470a-3ca8-4fd6-8092-694eb65aec4d", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981776", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0420", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0420/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a4b0c83b-3e81-4081-84c8-de164fd05b70", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981776#xywh=4865,2140,1053,1168", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2053, + "height": 2277, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111739/f2", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111739/f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e558f974-0d98-4a98-95b1-3b6879e5bd84" + } + ] + }, + { + "label": { + "@none": [ + "f. 416v - 417" + ] + }, + "height": 5412, + "width": 7216, + "type": "Canvas", + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981777", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/580d867a-cd6f-4b48-b4ae-ea902dd7acda", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981777", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0421", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.irht.cnrs.fr/iiif/Châteauroux/B360446201_MS0005/jp2/B360446201_MS0005_0421/full/full/0/default.jpg" + } + ] + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4a445562-d56d-46e8-8293-b63fd31b69d9", + "target": [ + { + "id": "http://bvmm.irht.cnrs.fr/iiif/2309/canvas/981777#xywh=1019,2146,1077,1185", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 2047, + "height": 2253, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111739/f1", + "type": "ImageService1" + } + ], + "type": "Image", + "id": "https://gallica.bnf.fr/iiif/ark:/12148/btv1b105111739/f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c00659d7-9c03-456d-b444-382cf5b93188" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__manifest.json new file mode 100644 index 0000000..8b4c541 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__manifest.json @@ -0,0 +1,151 @@ +{ + "label": { + "@none": [ + "大正新脩大藏經図像部第12b02巻" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Author" + ] + }, + "value": { + "@none": [ + "高楠順次郎" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "ja": [ + "大蔵出版" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "大正新脩大藏經 図像部" + ] + } + }, + { + "label": { + "@none": [ + "manifest URI" + ] + }, + "value": { + "@none": [ + "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "大正新脩大藏經図像部" + ] + } + } + ], + "viewingDirection": "right-to-left", + "logo": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/satlogo80.png", + "type": "Image" + } + ], + "type": "Manifest", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/manifest.json", + "rights": "http://creativecommons.org/licenses/by-sa/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "大蔵出版(Daizo shuppan) and SAT大蔵経テキストデータベース研究会(SAT Daizōkyō Text Database Committee) " + ] + } + }, + "behavior": [ + "paged" + ], + "items": [ + { + "label": { + "@none": [ + "" + ] + }, + "width": 22779, + "height": 30000, + "type": "Canvas", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/list/p0001-0025.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/ano0001-0025", + "target": [ + { + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiif/zuzoubu/12b02/p0001-0025", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 22779, + "height": 30000, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://dzkimgs.l.u-tokyo.ac.jp/iiifimgs/zuzoubu/12b02/0001-0025.tif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c1e463e-7ce0-46e2-b91d-e21786168d7c" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/ghent-university-manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/ghent-university-manifest.json new file mode 100644 index 0000000..aad0a43 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/ghent-university-manifest.json @@ -0,0 +1,327 @@ +{ + "metadata": [ + { + "label": { + "@none": [ + "Record" + ] + }, + "value": { + "@none": [ + "https://lib.ugent.be/catalog/rug01%3A001484515/items/800000096237" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "[papyrus] Document uit het archief van de dichter Dioskoros van Aphrodite (?)." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "34 regels ; 29 x 72,5 cm." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Papyrus" + ] + } + }, + { + "label": { + "@none": [ + "Publisher" + ] + }, + "value": { + "@none": [ + "537-538?" + ] + } + }, + { + "label": { + "@none": [ + "Provenance" + ] + }, + "value": { + "@none": [ + "BHSL.PAP.000044 Herkomst: Aphroditô" + ] + } + }, + { + "label": { + "@none": [ + "Contents" + ] + }, + "value": { + "@none": [ + "Het document bevat een overeenkomst tussen een corporatie en haar leiders. De leden van de corporatie van jagers (en waarschijnlijk ook van vissers) gaan de verbintenis aan t.o.v. Flavius Hermauos en Flavius Dios, hen als hun chefs te erkennen voor de duu" + ] + } + }, + { + "label": { + "@none": [ + "Object ID" + ] + }, + "value": { + "@none": [ + "archive.ugent.be:4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Het document bevat een overeenkomst tussen een corporatie en haar leiders. De leden van de corporatie van jagers (en waarschijnlijk ook van vissers) gaan de verbintenis aan t.o.v. Flavius Hermauos en Flavius Dios, hen als hun chefs te erkennen voor de duu" + ] + } + } + ], + "seeAlso": [ + { + "dcterms:format": "application/marcxml+xml", + "type": "Dataset", + "id": "https://lib.ugent.be/catalog/rug01%3A001484515.marcxml" + } + ], + "logo": [ + { + "id": "http://adore.ugent.be/IIIF/img/logo_i.svg", + "type": "Image" + } + ], + "label": { + "@none": [ + "Document uit het archief van de dichter Dioskoros van Aphrodite (?)[manuscript]" + ] + }, + "thumbnail": [ + { + "type": "Image", + "id": "https://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg" + } + ], + "type": "Manifest", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91", + "rights": "http://rightsstatements.org/vocab/UND/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by Ghent University Library" + ] + } + }, + "homepage": { + "format": "text/html", + "type": "Text", + "id": "https://lib.ugent.be/viewer/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91" + }, + "items": [ + { + "thumbnail": [ + { + "type": "Image", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/0,0,6215,15076/226,/0/default.jpg" + } + ], + "label": { + "@none": [ + "1" + ] + }, + "height": 15076, + "width": 6215, + "rendering": [ + { + "format": "image/jp2", + "label": { + "@none": [ + "Download as jpeg2000 (78.77 MB)" + ] + }, + "type": "Image", + "id": "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1&svc_id=original" + } + ], + "type": "Canvas", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "rights": "http://rightsstatements.org/vocab/UND/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by Ghent University Library" + ] + } + }, + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1/image-annotations/0", + "target": [ + { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.1", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1", + "type": "ImageService2" + } + ], + "height": 15076, + "label": { + "@none": [ + "BHSL-PAP-000044_2010_0001_AC.jp2" + ] + }, + "width": 6215, + "format": "image/jpeg", + "type": "Image", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e68bf9f3-4544-4e31-a4cf-ef0810019f76" + } + ] + }, + { + "label": { + "@none": [ + "2" + ] + }, + "height": 15036, + "thumbnail": [ + { + "type": "Image", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.3/0,0,6235,15036/226,/0/default.jpg" + } + ], + "rendering": [ + { + "format": "image/jp2", + "label": { + "@none": [ + "Download as jpeg2000 (78.29 MB)" + ] + }, + "type": "Image", + "id": "http://adore.ugent.be/OpenURL/resolve?rft_id=archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.3&svc_id=original" + } + ], + "width": 6235, + "type": "Canvas", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.3", + "rights": "http://rightsstatements.org/vocab/UND/1.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by Ghent University Library" + ] + } + }, + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.3/image-annotations/0", + "target": [ + { + "id": "http://adore.ugent.be/IIIF/manifests/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91/canvases/DS.3", + "type": "Canvas" + } + ], + "body": [ + { + "label": { + "@none": [ + "BHSL-PAP-000044_2010_0002_AC.jp2" + ] + }, + "height": 15036, + "width": 6235, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://adore.ugent.be/IIIF/images/archive.ugent.be%3A4B39C8CA-6FF9-11E1-8C42-C8A93B7C8C91%3ADS.3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edb590d9-43f7-4e52-b2e8-17112e87843b" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.bodleian.ox.ac.uk__iiif__manifest__60834383-7146-41ab-bfe1-48ee97bc04be.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.bodleian.ox.ac.uk__iiif__manifest__60834383-7146-41ab-bfe1-48ee97bc04be.json new file mode 100644 index 0000000..356f92c --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.bodleian.ox.ac.uk__iiif__manifest__60834383-7146-41ab-bfe1-48ee97bc04be.json @@ -0,0 +1,27351 @@ +{ + "label": { + "@none": [ + "MS. Bodl. 264" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Digital.Bodleian" + ] + }, + "value": { + "@none": [ + "View at: Digital.Bodleian" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "MS. Bodl. 264" + ] + } + }, + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "Multi-page record" + ] + } + }, + { + "label": { + "@none": [ + "Type" + ] + }, + "value": { + "@none": [ + "GEN" + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1400" + ] + } + }, + { + "label": { + "@none": [ + "Catalogueid" + ] + }, + "value": { + "@none": [ + "SC: 2464" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Romance of Alexander, Alexander and Dindimus, Li Livres du Graunt Caam" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "ox:uuid: urn:uuid:60834383-7146-41ab-bfe1-48ee97bc04be" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "goobi:PPNanalog: SC: 2464" + ] + } + }, + { + "label": { + "@none": [ + "Identifier" + ] + }, + "value": { + "@none": [ + "ox:shelfmark: MS. Bodl. 264" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "Western Manuscripts" + ] + } + }, + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "Bruges?" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "(fols. 3r-208r) The Romance of Alexander in French verse, with miniatures illustrating legends of Alexander the Great and with marginal scenes of everyday life, by the Flemish illuminator Jehan de Grise and his workshop, 1338-44; with two sections added in England c. 1400, (fols. 209r-215v, with fol. 1r) Alexander and Dindimus (Alexander Fragment B) in Middle English verse, with coarser miniatures, and (fols. 218r- 71v, with fol. 2v) Marco Polo, Li Livres du Graunt Caam, in French prose, with miniatures by Johannes and his school." + ] + } + }, + { + "label": { + "@none": [ + "Id" + ] + }, + "value": { + "@none": [ + "60834383-7146-41ab-bfe1-48ee97bc04be" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "(fols. 3r-208r) The Romance of Alexander in French verse, with miniatures illustrating legends of Alexander the Great and with marginal scenes of everyday life, by the Flemish illuminator Jehan de Grise and his workshop, 1338-44; with two sections added in England c. 1400, (fols. 209r-215v, with fol. 1r) Alexander and Dindimus (Alexander Fragment B) in Middle English verse, with coarser miniatures, and (fols. 218r- 71v, with fol. 2v) Marco Polo, Li Livres du Graunt Caam, in French prose, with miniatures by Johannes and his school." + ] + } + } + ], + "logo": [ + { + "id": "https://www.bodleian.ox.ac.uk/__data/assets/image/0005/117176/logo.jpg", + "type": "Image" + } + ], + "type": "Manifest", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/manifest/60834383-7146-41ab-bfe1-48ee97bc04be.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "

From:
Rights: Photo: © Bodleian Libraries, University of Oxford
Terms of Access: http://digital.bodleian.ox.ac.uk/terms.html

" + ] + } + }, + "behavior": [ + "paged" + ], + "homepage": { + "id": "https://digital.bodleian.ox.ac.uk/inquire/p/60834383-7146-41ab-bfe1-48ee97bc04be", + "type": "Text" + }, + "items": [ + { + "label": { + "@none": [ + "Inside upper cover" + ] + }, + "height": 7520, + "width": 5712, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/22acd221-e5d8-438f-a179-f105fb99b8ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90701d49-5e0c-4fb5-9c7d-45af96565468.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5712, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90701d49-5e0c-4fb5-9c7d-45af96565468/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a6dac2e5-0f86-4217-a1fe-0c738b838588" + } + ] + }, + { + "label": { + "@none": [ + "Ir" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e878cc78-acd3-43ca-ba6e-90a392f15891.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a1df3882-7428-47bc-b1f4-0f8305d13a15", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e878cc78-acd3-43ca-ba6e-90a392f15891.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e878cc78-acd3-43ca-ba6e-90a392f15891", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e878cc78-acd3-43ca-ba6e-90a392f15891/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b1039c3-3235-4bf2-87a5-498d3409ada5" + } + ] + }, + { + "label": { + "@none": [ + "Iv" + ] + }, + "height": 7520, + "width": 5712, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f1ed064-a972-4215-b884-d8d658acefc5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6b0cdf52-510a-4149-9be2-02656668d75e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f1ed064-a972-4215-b884-d8d658acefc5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5712, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0f1ed064-a972-4215-b884-d8d658acefc5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0f1ed064-a972-4215-b884-d8d658acefc5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e2c20f3a-5597-4eb7-8be9-26e417d78624" + } + ] + }, + { + "label": { + "@none": [ + "IIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d4a96f28-8dc3-4318-bc14-71bdfbb8939a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6fe52b9a-5bb7-4b5b-bbcd-ad0489fcad2a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d9b33e4-3991-4540-956a-904798495917" + } + ] + }, + { + "label": { + "@none": [ + "IIIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/483ff8ec-347d-4070-8442-dbc15bc7b4de.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a59994f0-f031-4971-b69b-b91f1bed363d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/483ff8ec-347d-4070-8442-dbc15bc7b4de.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/483ff8ec-347d-4070-8442-dbc15bc7b4de", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/483ff8ec-347d-4070-8442-dbc15bc7b4de/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19d94f43-4fee-4d75-b5da-f631b6bac195" + } + ] + }, + { + "label": { + "@none": [ + "IVr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d67f1f5-de3f-4f66-8a7d-5063687dd47f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0b13d9f-c25d-4c09-9e6a-378a72dc3e56", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d67f1f5-de3f-4f66-8a7d-5063687dd47f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7d67f1f5-de3f-4f66-8a7d-5063687dd47f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7d67f1f5-de3f-4f66-8a7d-5063687dd47f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24b332fb-99c0-42d7-a7bc-8ed12a2f0686" + } + ] + }, + { + "label": { + "@none": [ + "Vr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/902c2463-102b-4724-a027-5225e6357a79.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5a2510f2-fa73-4c86-b6b9-a687291ece22", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/902c2463-102b-4724-a027-5225e6357a79.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/902c2463-102b-4724-a027-5225e6357a79", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/902c2463-102b-4724-a027-5225e6357a79/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c3d3faa-bf87-4fa7-9c2c-171a41a5ddcb" + } + ] + }, + { + "label": { + "@none": [ + "VIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a6cc2017-2315-433f-8eca-51fef5185dbc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2be6cc8c-b314-4f97-ac98-d13aa2c54359", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a6cc2017-2315-433f-8eca-51fef5185dbc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a6cc2017-2315-433f-8eca-51fef5185dbc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a6cc2017-2315-433f-8eca-51fef5185dbc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ecfc086-b79d-4aae-83c0-915c22819386" + } + ] + }, + { + "label": { + "@none": [ + "VIv" + ] + }, + "height": 7520, + "width": 5544, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f698b098-4701-4aed-946f-659ba4852e4c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0deb2cef-8e90-4170-b771-598747013a9c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f698b098-4701-4aed-946f-659ba4852e4c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5544, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f698b098-4701-4aed-946f-659ba4852e4c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f698b098-4701-4aed-946f-659ba4852e4c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7493bbee-3af8-48f0-85b5-e805e16e8a19" + } + ] + }, + { + "label": { + "@none": [ + "VIIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f60c45-2254-4b07-9e73-fa045e70deb6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b3bf9f41-30d6-411a-b699-cb951c8330ae", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f60c45-2254-4b07-9e73-fa045e70deb6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f60c45-2254-4b07-9e73-fa045e70deb6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f60c45-2254-4b07-9e73-fa045e70deb6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c6ecb26-0773-4ba3-b5b9-865162673faa" + } + ] + }, + { + "label": { + "@none": [ + "VIIv" + ] + }, + "height": 7520, + "width": 5544, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3af0daec-1908-44bc-be53-67654b7c3bf6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1570202c-4af5-4a83-97f0-9d9dd6e398db", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3af0daec-1908-44bc-be53-67654b7c3bf6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5544, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3af0daec-1908-44bc-be53-67654b7c3bf6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3af0daec-1908-44bc-be53-67654b7c3bf6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51701998-4fcb-4709-9c00-6f2cd393db7a" + } + ] + }, + { + "label": { + "@none": [ + "VIIIr" + ] + }, + "height": 7496, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b699ce7-482d-47fc-a354-21ee3a4e3a4b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d6579e30-ea12-4ccb-bb33-89ca67a1de83", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b699ce7-482d-47fc-a354-21ee3a4e3a4b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b699ce7-482d-47fc-a354-21ee3a4e3a4b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b699ce7-482d-47fc-a354-21ee3a4e3a4b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00631e0e-fce6-41f4-90de-77c92dfff455" + } + ] + }, + { + "label": { + "@none": [ + "IXr" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/edd8f68a-9267-475c-800e-2c384d90fc96.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff976ec6-5b2d-45f5-b7e1-4b23b67cb6d8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/edd8f68a-9267-475c-800e-2c384d90fc96.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/edd8f68a-9267-475c-800e-2c384d90fc96", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/edd8f68a-9267-475c-800e-2c384d90fc96/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93721d16-e148-4d4c-9fa4-c5686b7c6b82" + } + ] + }, + { + "label": { + "@none": [ + "IXv" + ] + }, + "height": 7436, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d687b8ef-03e1-41a0-81d0-b024987d6922.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bac33f3a-95a2-4e25-99fd-aed5fb11846d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d687b8ef-03e1-41a0-81d0-b024987d6922.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7436, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d687b8ef-03e1-41a0-81d0-b024987d6922", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d687b8ef-03e1-41a0-81d0-b024987d6922/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff98279c-97d7-4e5d-b7b6-ce0c90c1154c" + } + ] + }, + { + "label": { + "@none": [ + "Xr" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/52655462-be47-44ee-a762-f0bfa3e7b35f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3e5c1d06-9a19-4fb5-9a62-aa6bed83d441/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09de6018-501b-46fa-a94c-e39a2a5f894c" + } + ] + }, + { + "label": { + "@none": [ + "Xv" + ] + }, + "height": 7436, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b97eb53-7354-46ea-a84c-3565c9221b2c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/35ec035b-46bd-4b87-a968-9a0d07eaf849", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b97eb53-7354-46ea-a84c-3565c9221b2c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7436, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b97eb53-7354-46ea-a84c-3565c9221b2c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b97eb53-7354-46ea-a84c-3565c9221b2c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b4929af-c3e9-4592-9e63-310a4da539fb" + } + ] + }, + { + "label": { + "@none": [ + "1r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c2889c4-cc23-4e74-b45d-2c4368540fe5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/257f84c2-3e20-4f2a-a39f-4b4202fafbe4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c2889c4-cc23-4e74-b45d-2c4368540fe5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7c2889c4-cc23-4e74-b45d-2c4368540fe5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7c2889c4-cc23-4e74-b45d-2c4368540fe5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09d8500d-ba68-452d-830b-48685f73a96a" + } + ] + }, + { + "label": { + "@none": [ + "1v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/34dc4c0d-8df7-4070-982b-6feac01f6d41.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d60bd6d0-0d75-453c-ab81-992b34e25536", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/34dc4c0d-8df7-4070-982b-6feac01f6d41.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/34dc4c0d-8df7-4070-982b-6feac01f6d41", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/34dc4c0d-8df7-4070-982b-6feac01f6d41/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f29a88b-f765-4eaa-b834-03b42f3c3ce2" + } + ] + }, + { + "label": { + "@none": [ + "2r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14fdefa7-21ca-4a3f-a734-b462da5ed45c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/db1deb53-088a-44a1-a47e-5b0de5cd14d8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14fdefa7-21ca-4a3f-a734-b462da5ed45c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/14fdefa7-21ca-4a3f-a734-b462da5ed45c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/14fdefa7-21ca-4a3f-a734-b462da5ed45c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52e31d0a-6cb5-4eee-af59-3ed137211974" + } + ] + }, + { + "label": { + "@none": [ + "2v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/790f4240-9750-4818-8a62-4a88e83e7ab2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b02a1c5-7b9d-487b-97b1-f5aa3c659b83", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/790f4240-9750-4818-8a62-4a88e83e7ab2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/790f4240-9750-4818-8a62-4a88e83e7ab2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/790f4240-9750-4818-8a62-4a88e83e7ab2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e241e69-2ff4-4953-a4b3-e34c1defeeac" + } + ] + }, + { + "label": { + "@none": [ + "3r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e546c5b-afdf-44ed-b574-1f061940cb60.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aee865a4-3a12-46c0-9cc4-5d82acc5dbb6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e546c5b-afdf-44ed-b574-1f061940cb60.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1e546c5b-afdf-44ed-b574-1f061940cb60", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1e546c5b-afdf-44ed-b574-1f061940cb60/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b295c6c4-3868-4603-8608-3e044fda00a9" + } + ] + }, + { + "label": { + "@none": [ + "3v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d3066c0-5cab-4eb0-98f4-1fef57b9f632.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/347b3ece-dd05-4107-9d3b-479ee90d821a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d3066c0-5cab-4eb0-98f4-1fef57b9f632.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d3066c0-5cab-4eb0-98f4-1fef57b9f632", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d3066c0-5cab-4eb0-98f4-1fef57b9f632/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17784949-8014-49ad-892d-54c2c0504cd9" + } + ] + }, + { + "label": { + "@none": [ + "4r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1d35f596-ed13-4d02-afaa-7beec1d539bf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1806ccb-cc66-41de-adc4-3779b037676d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1d35f596-ed13-4d02-afaa-7beec1d539bf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1d35f596-ed13-4d02-afaa-7beec1d539bf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1d35f596-ed13-4d02-afaa-7beec1d539bf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c6ac47d-7e1d-442a-b534-ec6310594ecf" + } + ] + }, + { + "label": { + "@none": [ + "4v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9c51808a-7dd4-44c0-8b0a-ba7a006ed20e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a945b13f-5fe0-4a0b-ad3a-0c3ba324fb69/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c24c2232-8a61-4311-817e-caed0a728ff0" + } + ] + }, + { + "label": { + "@none": [ + "5r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c8413d3-c0bc-4f02-99d9-78dc5b903b99.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c2a13ec6-ab63-42ec-a84d-c14684fc1df3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c8413d3-c0bc-4f02-99d9-78dc5b903b99.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5c8413d3-c0bc-4f02-99d9-78dc5b903b99", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5c8413d3-c0bc-4f02-99d9-78dc5b903b99/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb2daf91-417c-4530-a676-d145c3c94126" + } + ] + }, + { + "label": { + "@none": [ + "5v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1ba1e06-75d6-4b20-bada-cba1ba659ce4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2ab56b23-8db5-42fb-b46d-b1fa192ac374", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1ba1e06-75d6-4b20-bada-cba1ba659ce4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1ba1e06-75d6-4b20-bada-cba1ba659ce4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1ba1e06-75d6-4b20-bada-cba1ba659ce4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/647b3c7c-a91b-4caf-9c77-94f3917c3500" + } + ] + }, + { + "label": { + "@none": [ + "6r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/186de141-8d8b-4637-9779-065a303c4b12.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/879e9be0-a5b3-4f17-a567-9a00edfcd835", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/186de141-8d8b-4637-9779-065a303c4b12.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/186de141-8d8b-4637-9779-065a303c4b12", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/186de141-8d8b-4637-9779-065a303c4b12/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/514c3683-e13d-46fb-9ba1-32accde32663" + } + ] + }, + { + "label": { + "@none": [ + "6v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/05606664-4645-4abf-ba16-74225b1d8e23.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/24f140c5-098c-403a-b2ca-c3833ab32c2c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/05606664-4645-4abf-ba16-74225b1d8e23.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/05606664-4645-4abf-ba16-74225b1d8e23", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/05606664-4645-4abf-ba16-74225b1d8e23/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/343e24c3-6ca7-4c49-8e0e-6d2010b3d815" + } + ] + }, + { + "label": { + "@none": [ + "7r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/86a14eac-dc28-466b-b2f8-51b85b6da34b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c815475b-d94c-414f-9989-257bf027d007", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/86a14eac-dc28-466b-b2f8-51b85b6da34b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/86a14eac-dc28-466b-b2f8-51b85b6da34b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/86a14eac-dc28-466b-b2f8-51b85b6da34b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eefc8c9b-a31e-4a20-83cf-d25f5cf70882" + } + ] + }, + { + "label": { + "@none": [ + "7v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f450caed-3c81-4d89-8592-3873a94aa24e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/63808ca6-921f-40e4-8305-9a318c9a45c0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f450caed-3c81-4d89-8592-3873a94aa24e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f450caed-3c81-4d89-8592-3873a94aa24e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f450caed-3c81-4d89-8592-3873a94aa24e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95281332-8dd2-4491-8798-ed304bb16b32" + } + ] + }, + { + "label": { + "@none": [ + "8r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fa46cb8-25ee-474b-8c9e-ef3744c941ad.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/23519412-1fe1-4a05-b897-d332e2ff3213", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fa46cb8-25ee-474b-8c9e-ef3744c941ad.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7fa46cb8-25ee-474b-8c9e-ef3744c941ad", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7fa46cb8-25ee-474b-8c9e-ef3744c941ad/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/57ec9a83-8059-4148-8004-b152f449479c" + } + ] + }, + { + "label": { + "@none": [ + "8v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/44ec358c-6f78-427d-90b4-797eff650fc2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/badcb0c3-73be-42ca-a1d7-e9ddaff6df27", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/44ec358c-6f78-427d-90b4-797eff650fc2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/44ec358c-6f78-427d-90b4-797eff650fc2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/44ec358c-6f78-427d-90b4-797eff650fc2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1cb06aa6-6bfb-4079-8476-bdf85fd565db" + } + ] + }, + { + "label": { + "@none": [ + "9r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b262168d-25aa-40b4-b97a-3b2b12ee8559.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/02ddbcb8-a2bd-4327-aa54-447fb16191d2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b262168d-25aa-40b4-b97a-3b2b12ee8559.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b262168d-25aa-40b4-b97a-3b2b12ee8559", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b262168d-25aa-40b4-b97a-3b2b12ee8559/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7c6c6578-4ba2-48e6-9e71-ceedf180c5ac" + } + ] + }, + { + "label": { + "@none": [ + "9v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07b53a5f-8284-4f01-bc10-b07b209de587.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2cebf159-1eac-4697-a24e-5a1be36a2f50", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07b53a5f-8284-4f01-bc10-b07b209de587.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07b53a5f-8284-4f01-bc10-b07b209de587", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07b53a5f-8284-4f01-bc10-b07b209de587/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/57f792f5-890b-4c39-b29c-7eef964ca679" + } + ] + }, + { + "label": { + "@none": [ + "10r" + ] + }, + "height": 7496, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdfee01-b1bb-4058-a7ba-b7d5094531b6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8ff93320-bcf6-4b0c-a7e0-20a9b15ea631", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdfee01-b1bb-4058-a7ba-b7d5094531b6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/acdfee01-b1bb-4058-a7ba-b7d5094531b6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/acdfee01-b1bb-4058-a7ba-b7d5094531b6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9c9ba7e-da06-4a1a-a4f4-13deaa1237be" + } + ] + }, + { + "label": { + "@none": [ + "10v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/82332e64-2b88-44a0-b0db-575f5a69e792.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e47492c-4080-4f0b-86d4-fc8d23585ee3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/82332e64-2b88-44a0-b0db-575f5a69e792.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/82332e64-2b88-44a0-b0db-575f5a69e792", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/82332e64-2b88-44a0-b0db-575f5a69e792/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/904d088f-b7d2-401f-9e7d-a02b8bcc2c50" + } + ] + }, + { + "label": { + "@none": [ + "11r" + ] + }, + "height": 7508, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3fd58f09-a557-474a-8bbe-e4285fa07924.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a655ff2f-419a-40b7-a392-0784aff9c9c3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3fd58f09-a557-474a-8bbe-e4285fa07924.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3fd58f09-a557-474a-8bbe-e4285fa07924", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3fd58f09-a557-474a-8bbe-e4285fa07924/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d51b1fbd-87cb-4882-bd01-0a4dc43de518" + } + ] + }, + { + "label": { + "@none": [ + "11v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4119f000-d428-4ce1-931a-6b9cd536e7ad.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eeffbdde-5024-4b2b-a9d8-0f6687ecb75f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4119f000-d428-4ce1-931a-6b9cd536e7ad.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4119f000-d428-4ce1-931a-6b9cd536e7ad", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4119f000-d428-4ce1-931a-6b9cd536e7ad/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/41894e05-9e9c-474b-90f1-e5b375083c1f" + } + ] + }, + { + "label": { + "@none": [ + "12r" + ] + }, + "height": 7508, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9015af7-3102-48cc-9762-4b89a43be3b4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6c2c08c4-e283-45ea-9550-f92d88186585", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9015af7-3102-48cc-9762-4b89a43be3b4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9015af7-3102-48cc-9762-4b89a43be3b4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9015af7-3102-48cc-9762-4b89a43be3b4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bceb4e6-26f1-40e2-b85e-832ac0d366c7" + } + ] + }, + { + "label": { + "@none": [ + "12v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c93830b-4b65-4409-834f-8fa981199391.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4183b593-6fa6-4f16-a456-898d26a7ecf3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c93830b-4b65-4409-834f-8fa981199391.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4c93830b-4b65-4409-834f-8fa981199391", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4c93830b-4b65-4409-834f-8fa981199391/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c5fdc4f-88cc-4d56-a9cd-df3b6d45a04c" + } + ] + }, + { + "label": { + "@none": [ + "13r" + ] + }, + "height": 7508, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae1e526a-1f25-4769-ba47-85ae64ba5398.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/23468170-992d-4200-973d-2a5b7727b5be", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae1e526a-1f25-4769-ba47-85ae64ba5398.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ae1e526a-1f25-4769-ba47-85ae64ba5398", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ae1e526a-1f25-4769-ba47-85ae64ba5398/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a6c0d300-605a-49a7-80fa-22d9cbbad6d1" + } + ] + }, + { + "label": { + "@none": [ + "13v" + ] + }, + "height": 7508, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b417dae-563e-4979-b7b3-01dbc04c3eb1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ef8b0db1-e911-422b-a3e2-02b0a60f8389", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b417dae-563e-4979-b7b3-01dbc04c3eb1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b417dae-563e-4979-b7b3-01dbc04c3eb1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b417dae-563e-4979-b7b3-01dbc04c3eb1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ecb6768f-9d2a-4d05-bd95-c0ca6ce29436" + } + ] + }, + { + "label": { + "@none": [ + "14r" + ] + }, + "height": 7508, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9eca0d37-4be9-4a84-83be-3632d44da497.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/43b9d386-3efb-4a54-80b7-e33ddbc4e114", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9eca0d37-4be9-4a84-83be-3632d44da497.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9eca0d37-4be9-4a84-83be-3632d44da497", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9eca0d37-4be9-4a84-83be-3632d44da497/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/210151d0-c433-4b9c-8a16-e3d79469b0ab" + } + ] + }, + { + "label": { + "@none": [ + "14v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/31db4047-5e15-4deb-b223-7ba50e4b4768.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c725cb75-3f92-482b-824d-a039b1f125fc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/31db4047-5e15-4deb-b223-7ba50e4b4768.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/31db4047-5e15-4deb-b223-7ba50e4b4768", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/31db4047-5e15-4deb-b223-7ba50e4b4768/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0a152ee3-dad3-4a14-bb67-341c429d8310" + } + ] + }, + { + "label": { + "@none": [ + "15r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff18a11f-8279-40d0-b0f6-5ac927450a5f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/47ac3581-1c75-42b9-8790-f7a6b4755d92", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff18a11f-8279-40d0-b0f6-5ac927450a5f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff18a11f-8279-40d0-b0f6-5ac927450a5f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff18a11f-8279-40d0-b0f6-5ac927450a5f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7bf40b8-4770-4280-9d9b-cfae1ee6176f" + } + ] + }, + { + "label": { + "@none": [ + "15v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13981981-06ab-4a06-b1a1-03f116611651.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/95828ece-23a5-4197-9c51-0db4df1824cc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13981981-06ab-4a06-b1a1-03f116611651.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/13981981-06ab-4a06-b1a1-03f116611651", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/13981981-06ab-4a06-b1a1-03f116611651/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a8cd8c3-6979-4232-8d58-b392de049fb2" + } + ] + }, + { + "label": { + "@none": [ + "16r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f3c83ac-96e0-490f-bb03-230cf9bda636.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4eeb16f6-dcd8-41fc-b261-56cb0b83fbf9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f3c83ac-96e0-490f-bb03-230cf9bda636.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f3c83ac-96e0-490f-bb03-230cf9bda636", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f3c83ac-96e0-490f-bb03-230cf9bda636/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/af29c12a-6daf-4a6e-b97e-336d3fbaa7db" + } + ] + }, + { + "label": { + "@none": [ + "16v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20664711-ce82-4902-8377-c6921c636ed4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e8de6d69-ba40-4206-a642-dd01d00e0ec6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20664711-ce82-4902-8377-c6921c636ed4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/20664711-ce82-4902-8377-c6921c636ed4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/20664711-ce82-4902-8377-c6921c636ed4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ea34362-592e-4eed-b3ab-bcab3e716ed3" + } + ] + }, + { + "label": { + "@none": [ + "17r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b96119d-e918-4422-be90-361c69c073ef.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/235f2f9a-8b0b-4752-a711-b7a320e00163", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b96119d-e918-4422-be90-361c69c073ef.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b96119d-e918-4422-be90-361c69c073ef", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b96119d-e918-4422-be90-361c69c073ef/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92b8c9e3-8f30-4e57-a42c-b470a16bc2fb" + } + ] + }, + { + "label": { + "@none": [ + "17v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b27846a-997a-415a-a247-96d540382297.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b95d87f2-0a99-4c96-9c18-32c5065b79ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b27846a-997a-415a-a247-96d540382297.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b27846a-997a-415a-a247-96d540382297", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b27846a-997a-415a-a247-96d540382297/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/990a2c9d-6de3-4524-a464-b7a307b814eb" + } + ] + }, + { + "label": { + "@none": [ + "18r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/81ca8f4a-ee83-45f5-83ee-a26b2e1ce028", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e89f7716-934e-4cfa-bc08-aa1ae54fb8bf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33349de5-bcc9-4405-8fcd-fb58c0188ddc" + } + ] + }, + { + "label": { + "@none": [ + "18v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/523d1f67-77de-4c03-8197-a1a44d4ae603.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9532e761-4d88-4f64-9511-8625faf8bd02", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/523d1f67-77de-4c03-8197-a1a44d4ae603.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/523d1f67-77de-4c03-8197-a1a44d4ae603", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/523d1f67-77de-4c03-8197-a1a44d4ae603/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b84bf2d-c46b-406e-b5f5-2b7c6863bb65" + } + ] + }, + { + "label": { + "@none": [ + "19r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d5062cd-2fdb-489a-85a1-cb3f25b65580.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d946a7a0-ef12-4027-9be5-94de64e219a2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d5062cd-2fdb-489a-85a1-cb3f25b65580.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6d5062cd-2fdb-489a-85a1-cb3f25b65580", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6d5062cd-2fdb-489a-85a1-cb3f25b65580/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54436ac6-9d4a-4fb9-b687-a80ac698538b" + } + ] + }, + { + "label": { + "@none": [ + "19v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1847e26-5868-4bbd-a2c2-27d8d7e311fe.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f202da73-66f3-4b8a-9331-faeaa5777955", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1847e26-5868-4bbd-a2c2-27d8d7e311fe.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1847e26-5868-4bbd-a2c2-27d8d7e311fe", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1847e26-5868-4bbd-a2c2-27d8d7e311fe/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c349919-de3c-47fb-bd35-705a59ea68cb" + } + ] + }, + { + "label": { + "@none": [ + "20r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c67e4a1-38a4-445f-857a-932b2fb68fbe.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/915b830f-4516-4567-92d4-a28fa5d7e5c2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c67e4a1-38a4-445f-857a-932b2fb68fbe.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c67e4a1-38a4-445f-857a-932b2fb68fbe", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c67e4a1-38a4-445f-857a-932b2fb68fbe/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df8c1360-3dad-4894-8ae3-1a39be2d5385" + } + ] + }, + { + "label": { + "@none": [ + "20v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aaf4db86-69aa-4d4d-8c59-91022bcac7e5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cdc959ee-b595-4eec-b0ac-2f2693d8f6d3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8fad6a94-8534-4149-9c0e-6686fabba01a" + } + ] + }, + { + "label": { + "@none": [ + "21r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25def92b-6d81-465a-8379-0e6e6192a170.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a61c45f-6039-453e-b3b9-53c8f02da912", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25def92b-6d81-465a-8379-0e6e6192a170.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25def92b-6d81-465a-8379-0e6e6192a170", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25def92b-6d81-465a-8379-0e6e6192a170/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95c45760-3866-42e3-83c5-6794020f1005" + } + ] + }, + { + "label": { + "@none": [ + "21v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea481325-9eb4-4d72-a151-336497e75ec9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/17546251-1d12-4039-b5f4-42792c099ea1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea481325-9eb4-4d72-a151-336497e75ec9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea481325-9eb4-4d72-a151-336497e75ec9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea481325-9eb4-4d72-a151-336497e75ec9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e669e829-e41f-4f33-88a7-a276d39178dc" + } + ] + }, + { + "label": { + "@none": [ + "22r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/822c146e-6a8e-4054-8604-002754c6b8d5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2871b93f-1e9c-49d0-97b4-a581a0de29bb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/822c146e-6a8e-4054-8604-002754c6b8d5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/822c146e-6a8e-4054-8604-002754c6b8d5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/822c146e-6a8e-4054-8604-002754c6b8d5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7fc247d1-fcc8-45d4-a2c4-c16e805c33e8" + } + ] + }, + { + "label": { + "@none": [ + "22v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d25b8d8-126a-45fe-9cb9-279474adaa1f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e106705c-cfba-437f-8434-525f5dbc9311", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d25b8d8-126a-45fe-9cb9-279474adaa1f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d25b8d8-126a-45fe-9cb9-279474adaa1f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d25b8d8-126a-45fe-9cb9-279474adaa1f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eba1542d-f4fa-424e-a491-40e3aadee722" + } + ] + }, + { + "label": { + "@none": [ + "23r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e5af115-4046-45bc-8898-005904db75af.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2745d2b3-31e2-41e5-b01d-349b97822a49", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e5af115-4046-45bc-8898-005904db75af.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e5af115-4046-45bc-8898-005904db75af", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e5af115-4046-45bc-8898-005904db75af/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ecc2b10f-92bf-4bc9-b419-bdc3a1c8e8eb" + } + ] + }, + { + "label": { + "@none": [ + "23v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48df43ef-7e0a-47c5-b6d7-0548ab1125e7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ec8474b6-8016-47ac-a61b-36b6272354a8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48df43ef-7e0a-47c5-b6d7-0548ab1125e7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48df43ef-7e0a-47c5-b6d7-0548ab1125e7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48df43ef-7e0a-47c5-b6d7-0548ab1125e7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0345aee2-39bf-480d-9785-2208c75cab80" + } + ] + }, + { + "label": { + "@none": [ + "24r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf1feb36-a333-4f19-9375-8ece6f65fce8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad5e79d3-b313-4444-b3cf-df3f70aa52d2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf1feb36-a333-4f19-9375-8ece6f65fce8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cf1feb36-a333-4f19-9375-8ece6f65fce8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cf1feb36-a333-4f19-9375-8ece6f65fce8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/530f2794-c875-4d5b-8b94-f5a3bf05925c" + } + ] + }, + { + "label": { + "@none": [ + "24v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89e6b355-aaac-48ef-8c6f-bc95f3e91d32.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/726a9caf-45cb-4568-80d7-1a732ca803be", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89e6b355-aaac-48ef-8c6f-bc95f3e91d32.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89e6b355-aaac-48ef-8c6f-bc95f3e91d32", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89e6b355-aaac-48ef-8c6f-bc95f3e91d32/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f89d5d01-d060-4eee-a858-a8532c9730dc" + } + ] + }, + { + "label": { + "@none": [ + "25r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/87c49787-b1f6-4ac5-9625-164838f34f83", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d9d51fa9-68d9-4c1d-9c59-ad472fcccf5e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eab9a3d3-1186-4493-92f6-ffc21c600d6c" + } + ] + }, + { + "label": { + "@none": [ + "25v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/802877e2-e416-4d0e-8752-28c3cf454509.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6e25c5e9-3a60-42a7-a94b-9d64a99aef37", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/802877e2-e416-4d0e-8752-28c3cf454509.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/802877e2-e416-4d0e-8752-28c3cf454509", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/802877e2-e416-4d0e-8752-28c3cf454509/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3adc91ab-a1fd-4269-bb53-b3de935839b9" + } + ] + }, + { + "label": { + "@none": [ + "26r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/704d58fd-05d8-48ba-9c16-112e590fa189", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48a9ba33-eb1d-4920-b4b1-ebc42dd31b76/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3253fbd3-9b81-48b4-8b35-cff27d9a03d6" + } + ] + }, + { + "label": { + "@none": [ + "26v" + ] + }, + "height": 7520, + "width": 5460, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950375fa-947f-48b5-b89f-7d72ab9127b5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c25b61f7-35f2-4d6b-8364-c7813fc375e9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950375fa-947f-48b5-b89f-7d72ab9127b5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/950375fa-947f-48b5-b89f-7d72ab9127b5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/950375fa-947f-48b5-b89f-7d72ab9127b5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92e8e645-bca2-4277-92eb-578e716d9459" + } + ] + }, + { + "label": { + "@none": [ + "27r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf903a17-23c7-4551-850a-37e29158e45a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7e1c1aa5-2072-4d25-9ce0-1f3ca64bc0b8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7314d2c4-efe4-4846-9c8e-6e0ece1da5a9" + } + ] + }, + { + "label": { + "@none": [ + "27v" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3d72c265-de4e-40ef-9416-261b896fec88.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f84affe6-367b-4a4c-8295-446397fa6e71", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3d72c265-de4e-40ef-9416-261b896fec88.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3d72c265-de4e-40ef-9416-261b896fec88", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3d72c265-de4e-40ef-9416-261b896fec88/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/13d89320-682f-4e81-a1f9-6ffc71a68c23" + } + ] + }, + { + "label": { + "@none": [ + "28r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8113d484-f571-4932-8b97-19481c4ed672.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6bd12f62-d5e8-4fea-8047-cca116093d70", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8113d484-f571-4932-8b97-19481c4ed672.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8113d484-f571-4932-8b97-19481c4ed672", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8113d484-f571-4932-8b97-19481c4ed672/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e3fceaf-fe69-445f-8d09-7d62cc065204" + } + ] + }, + { + "label": { + "@none": [ + "28v" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92cbd746-0be3-4a8f-b171-32002d1a5ccf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2929d820-9003-40ef-8a54-2a55c7a32086", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92cbd746-0be3-4a8f-b171-32002d1a5ccf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92cbd746-0be3-4a8f-b171-32002d1a5ccf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92cbd746-0be3-4a8f-b171-32002d1a5ccf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b82e028-9420-4700-ac7e-f406c4d112f9" + } + ] + }, + { + "label": { + "@none": [ + "29r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e9bbfbba-3ccf-4394-93ca-1ad762a14306.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b00205a2-0532-4dc0-8d8e-7c895a91fba9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e9bbfbba-3ccf-4394-93ca-1ad762a14306.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e9bbfbba-3ccf-4394-93ca-1ad762a14306", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e9bbfbba-3ccf-4394-93ca-1ad762a14306/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11cdb8da-f10e-4df6-8851-f2b2bca68c49" + } + ] + }, + { + "label": { + "@none": [ + "29v" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/220f5b54-b5cc-44b8-b472-0aa1c9027b6b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9497c660-37ee-4ff0-996f-ddb5484131e9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/220f5b54-b5cc-44b8-b472-0aa1c9027b6b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/220f5b54-b5cc-44b8-b472-0aa1c9027b6b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/220f5b54-b5cc-44b8-b472-0aa1c9027b6b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f52e5087-6c59-45f9-bf4c-d36f9e877afd" + } + ] + }, + { + "label": { + "@none": [ + "30r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e1ee61-0d7d-4db3-87d3-e151dec37126.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9dd9eb77-98fb-40ba-9577-81ec36b2012f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e1ee61-0d7d-4db3-87d3-e151dec37126.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b3e1ee61-0d7d-4db3-87d3-e151dec37126", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b3e1ee61-0d7d-4db3-87d3-e151dec37126/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2cdaace-1238-4729-9dcf-f093862b98ce" + } + ] + }, + { + "label": { + "@none": [ + "30v" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89a700b6-b2e1-47c5-bb2b-a242d1448bdb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cd263f7d-d1af-4417-b6fc-4e52ab1b23f5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89a700b6-b2e1-47c5-bb2b-a242d1448bdb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89a700b6-b2e1-47c5-bb2b-a242d1448bdb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89a700b6-b2e1-47c5-bb2b-a242d1448bdb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acbbf1e8-0fea-462a-a34c-62a302e49ebd" + } + ] + }, + { + "label": { + "@none": [ + "31r" + ] + }, + "height": 7508, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8636713f-4abb-43ae-8726-f6d29e25616f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/51196c55-a6a7-4844-930d-8d1bba02e6dd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8636713f-4abb-43ae-8726-f6d29e25616f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8636713f-4abb-43ae-8726-f6d29e25616f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8636713f-4abb-43ae-8726-f6d29e25616f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d90c4c42-dd27-45cc-b54d-6fa58eb9a68a" + } + ] + }, + { + "label": { + "@none": [ + "31v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d45ce-4233-410c-b8ef-c784b40ff2a5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/473fbf26-699b-44ae-8f9c-d98d70be01f8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d45ce-4233-410c-b8ef-c784b40ff2a5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e01d45ce-4233-410c-b8ef-c784b40ff2a5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e01d45ce-4233-410c-b8ef-c784b40ff2a5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c81cdcb-983c-4208-ac48-dc91a5b20932" + } + ] + }, + { + "label": { + "@none": [ + "32r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1c31639-6855-4f67-8c0b-e26f05a78067.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/718cd3af-fa49-4c33-8a67-dfce7d8b9113", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1c31639-6855-4f67-8c0b-e26f05a78067.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1c31639-6855-4f67-8c0b-e26f05a78067", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1c31639-6855-4f67-8c0b-e26f05a78067/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/187a2628-77d0-46a4-a04f-bb5edc525152" + } + ] + }, + { + "label": { + "@none": [ + "32v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3962476b-fe76-48cb-94fb-c092933ffdd0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f155d0c-44d6-4fdc-bab9-48aa4fc63c6b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a04d83a6-f232-483c-a0e9-83edee39ced1" + } + ] + }, + { + "label": { + "@none": [ + "33r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8992a925-c4b0-469b-9c29-9a81d0686991.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/04c63e57-0a1f-47c6-b1cc-11052642d68b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8992a925-c4b0-469b-9c29-9a81d0686991.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8992a925-c4b0-469b-9c29-9a81d0686991", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8992a925-c4b0-469b-9c29-9a81d0686991/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b5d858f-9a86-408b-9196-21e34b07b67a" + } + ] + }, + { + "label": { + "@none": [ + "33v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65590e28-eab8-43d6-8c16-3d46dcce17db.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a0b0c5b7-97f3-4c6a-ab17-9e5fce2f2f1c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65590e28-eab8-43d6-8c16-3d46dcce17db.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/65590e28-eab8-43d6-8c16-3d46dcce17db", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/65590e28-eab8-43d6-8c16-3d46dcce17db/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81f500cb-b048-4181-aab9-0bedb7ff9c92" + } + ] + }, + { + "label": { + "@none": [ + "34r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b8d283f4-66de-4ad4-903d-87f6eb8878c9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/01ce001d-a48b-45cb-9d71-b0a12005386a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b8d283f4-66de-4ad4-903d-87f6eb8878c9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b8d283f4-66de-4ad4-903d-87f6eb8878c9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b8d283f4-66de-4ad4-903d-87f6eb8878c9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91080baa-4f54-48c8-b8cb-07fc6c161fad" + } + ] + }, + { + "label": { + "@none": [ + "34v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1ab1f99e-a754-424a-99bd-892013f7af0e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/84e565f6-4b1c-4604-b35a-50c631785f64", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1ab1f99e-a754-424a-99bd-892013f7af0e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1ab1f99e-a754-424a-99bd-892013f7af0e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1ab1f99e-a754-424a-99bd-892013f7af0e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bcff7f33-2755-430c-8ad0-d8aa6ce9371b" + } + ] + }, + { + "label": { + "@none": [ + "35r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b289ce-4edf-419a-a6f7-fd1be93f6c66.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/90f86141-6d22-45a0-98b0-a1f7af99f0f0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b289ce-4edf-419a-a6f7-fd1be93f6c66.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6b289ce-4edf-419a-a6f7-fd1be93f6c66", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6b289ce-4edf-419a-a6f7-fd1be93f6c66/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08ec1479-c441-433f-8897-5960f680bfce" + } + ] + }, + { + "label": { + "@none": [ + "35v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bbacd88a-bb40-47ae-baca-2ff2e0b6e884.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bb00488-c1e5-4428-8ff1-314c067e4846", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bbacd88a-bb40-47ae-baca-2ff2e0b6e884.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bbacd88a-bb40-47ae-baca-2ff2e0b6e884", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bbacd88a-bb40-47ae-baca-2ff2e0b6e884/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7860f075-d55e-430d-b68c-90ad93eb51a8" + } + ] + }, + { + "label": { + "@none": [ + "36r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29360df0-35dc-4e70-b825-5a693212d18f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ab5b7b87-7d40-45b2-b719-3581d36fe7ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29360df0-35dc-4e70-b825-5a693212d18f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/29360df0-35dc-4e70-b825-5a693212d18f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/29360df0-35dc-4e70-b825-5a693212d18f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38c3068b-2f70-4179-ac85-095b5445854b" + } + ] + }, + { + "label": { + "@none": [ + "36v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/00ecc695-d5c6-4ea1-84ae-114abb587f6f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0cad13c7-bc87-498f-8f2e-a140303ee536", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/00ecc695-d5c6-4ea1-84ae-114abb587f6f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/00ecc695-d5c6-4ea1-84ae-114abb587f6f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/00ecc695-d5c6-4ea1-84ae-114abb587f6f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df5b0539-b93b-4cd0-845c-bf8043f3c4f6" + } + ] + }, + { + "label": { + "@none": [ + "37r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a16d5fa0-01b0-4218-aff0-6990fe8ff5ea", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ab0cb4cb-3264-45e2-ac9d-8b1c0430a435/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5572659a-2285-4858-a372-bd653d5ebd18" + } + ] + }, + { + "label": { + "@none": [ + "37v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0767f8f7-b613-4614-a152-6fb51fab8ecf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/43be2a24-d712-442f-9eff-9d805042cd20", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0767f8f7-b613-4614-a152-6fb51fab8ecf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0767f8f7-b613-4614-a152-6fb51fab8ecf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0767f8f7-b613-4614-a152-6fb51fab8ecf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0d373d4-76d3-430a-a4ef-fba84d7a188d" + } + ] + }, + { + "label": { + "@none": [ + "38r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8073ec9b-35bc-4b9c-89ce-6933db9fc323", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7f2d1f4b-6ecb-45b1-ae0a-1f145dda1f9b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b6445c33-8c9f-45ab-99ee-bc7f29b03a61" + } + ] + }, + { + "label": { + "@none": [ + "38v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9c9b500-ad8b-4f7c-833d-acdeaca0af98.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/de208333-3595-48a9-9ebe-368bb1e9dadb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9c9b500-ad8b-4f7c-833d-acdeaca0af98.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9c9b500-ad8b-4f7c-833d-acdeaca0af98", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9c9b500-ad8b-4f7c-833d-acdeaca0af98/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/66f2f0ca-89af-4ce1-8123-e2a9ec399ab1" + } + ] + }, + { + "label": { + "@none": [ + "39r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a6fa90f-b630-47d9-9e00-d0a205dc33fa.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7c41f4cd-ca16-4fd0-8085-0b0eb37d0b4d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a6fa90f-b630-47d9-9e00-d0a205dc33fa.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a6fa90f-b630-47d9-9e00-d0a205dc33fa", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a6fa90f-b630-47d9-9e00-d0a205dc33fa/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc2e85e9-f391-4ce4-be36-aa56132302d0" + } + ] + }, + { + "label": { + "@none": [ + "39v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b0509f89-952a-49e9-ac53-e8690dda763e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/05186d9d-ee00-4cbc-b78c-6facf2ec33ad", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b0509f89-952a-49e9-ac53-e8690dda763e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b0509f89-952a-49e9-ac53-e8690dda763e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b0509f89-952a-49e9-ac53-e8690dda763e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39c95e95-a567-4ea1-9c0b-32dd0c780ee9" + } + ] + }, + { + "label": { + "@none": [ + "40r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/28fc1b91-c722-4954-85a4-9e61baccf5f4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fcd2bd4-130f-40c4-985b-95aa7f35b5ce/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50b818ac-732a-49c5-af60-fe4ea8986546" + } + ] + }, + { + "label": { + "@none": [ + "40v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1dfcd9c-6550-4023-ac69-9a7403e8ec10.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c1471edf-d688-4cdf-8bb4-0d963067e49b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1dfcd9c-6550-4023-ac69-9a7403e8ec10.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1dfcd9c-6550-4023-ac69-9a7403e8ec10", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1dfcd9c-6550-4023-ac69-9a7403e8ec10/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d63b0110-a28d-4ec6-b0f0-61ba4dbdff02" + } + ] + }, + { + "label": { + "@none": [ + "41r" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/36d20387-2cb5-45a4-b8fb-a9ec16b19b50", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9115a10b-cc2f-4f4a-a24b-8ac285d31a5a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8c0b74b-2014-42ea-bca6-e60a9341ca76" + } + ] + }, + { + "label": { + "@none": [ + "41v" + ] + }, + "height": 7508, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7cf22052-f342-4d71-af24-5413a106ca2b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3a22e1ab-a94d-4188-bc46-0583a6ec23b6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7cf22052-f342-4d71-af24-5413a106ca2b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7cf22052-f342-4d71-af24-5413a106ca2b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7cf22052-f342-4d71-af24-5413a106ca2b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a3eca48e-99dc-4c1e-93d4-f4fdad4543d1" + } + ] + }, + { + "label": { + "@none": [ + "42r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e875c2ab-534a-498c-a85e-7fe405df620a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df5f89db-5fd8-4971-b0f7-9cb900876c29", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e875c2ab-534a-498c-a85e-7fe405df620a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e875c2ab-534a-498c-a85e-7fe405df620a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e875c2ab-534a-498c-a85e-7fe405df620a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dfa05fb6-86f3-4493-9b68-685acb305b3b" + } + ] + }, + { + "label": { + "@none": [ + "42v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee935938-4b97-4f03-b1c2-6b2596bcc82f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/832c07ad-914d-4c49-88d9-0303eec6b030", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee935938-4b97-4f03-b1c2-6b2596bcc82f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee935938-4b97-4f03-b1c2-6b2596bcc82f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee935938-4b97-4f03-b1c2-6b2596bcc82f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5097fd98-6725-43a8-b59a-46f8660401a6" + } + ] + }, + { + "label": { + "@none": [ + "43r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/826dd0f3-0d2e-4e58-8a6c-807746337d02.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5718069b-2cde-4c64-8081-2076bddb333a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/826dd0f3-0d2e-4e58-8a6c-807746337d02.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/826dd0f3-0d2e-4e58-8a6c-807746337d02", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/826dd0f3-0d2e-4e58-8a6c-807746337d02/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fac98ad6-5f6e-4bf3-af97-6aaa0f064528" + } + ] + }, + { + "label": { + "@none": [ + "43v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4348ef1e-7040-4817-bee7-a431535c69c8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f89c7bb8-2656-4d51-bb4a-b4e3bee936f5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ced50e91-a623-43fb-aea6-db40078baa84" + } + ] + }, + { + "label": { + "@none": [ + "44r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/06cedddd-8253-45f9-ad0b-2605a13d176e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/495a9cb6-61db-4ead-9b93-ed23f9edd147", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/06cedddd-8253-45f9-ad0b-2605a13d176e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/06cedddd-8253-45f9-ad0b-2605a13d176e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/06cedddd-8253-45f9-ad0b-2605a13d176e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f42cbd34-0ed3-4def-bd9a-d33a69525f00" + } + ] + }, + { + "label": { + "@none": [ + "44v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f82dbcb3-90c5-4ebd-960b-fcdcbd7dfd4b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bd63f2eb-52cc-4464-9926-ea8e4e04ea1d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82ef8853-85cb-41a5-b01f-c3b2a6806267" + } + ] + }, + { + "label": { + "@none": [ + "45r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92e67504-dd42-4263-af44-30774c63150b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/209f6311-e47a-4b96-b574-f3b676b0b7ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92e67504-dd42-4263-af44-30774c63150b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92e67504-dd42-4263-af44-30774c63150b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92e67504-dd42-4263-af44-30774c63150b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a636cc4e-5b56-4a1f-bd22-b528a813c563" + } + ] + }, + { + "label": { + "@none": [ + "45v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee144a5f-9c3e-4711-a200-a5358ddac2ea.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2600b9c8-6921-4ab0-9f71-9c11879e11ab", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee144a5f-9c3e-4711-a200-a5358ddac2ea.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee144a5f-9c3e-4711-a200-a5358ddac2ea", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee144a5f-9c3e-4711-a200-a5358ddac2ea/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a6f65a4-2747-4ace-9eb0-c0d003781823" + } + ] + }, + { + "label": { + "@none": [ + "46r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c5106dd-6355-4c66-97cf-cf30a852999e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/73c4b6f4-d368-42d3-97f5-c7d9ce2e9e09", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4c5106dd-6355-4c66-97cf-cf30a852999e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4c5106dd-6355-4c66-97cf-cf30a852999e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4c5106dd-6355-4c66-97cf-cf30a852999e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4490992b-d9a9-4890-89cd-7eb14165f7b3" + } + ] + }, + { + "label": { + "@none": [ + "46v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/054f556e-7b00-4b15-a190-e561abd3e4b9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77f167c4-dca5-4f6f-b4d0-ab4760b65ecb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/caf27b26-58ab-4a10-88a5-faa1d4125f8b" + } + ] + }, + { + "label": { + "@none": [ + "47r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a30b97ed-e348-4b70-a55b-252062172178.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6f8396a1-3d16-487a-b207-b04eda9990a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a30b97ed-e348-4b70-a55b-252062172178.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a30b97ed-e348-4b70-a55b-252062172178", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a30b97ed-e348-4b70-a55b-252062172178/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39929aa9-9f2e-4621-9923-767166f69736" + } + ] + }, + { + "label": { + "@none": [ + "47v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7edff7ea-4656-40e9-b472-6cc2273cf905", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/977b8a20-0a9c-452c-b3c7-50bd3c0eedbf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f5da7c4-291b-45d3-a881-5121da3cd61b" + } + ] + }, + { + "label": { + "@none": [ + "48r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef117d19-e1e7-4b6b-ab73-93e2f4838d05.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/91d933db-21d0-49bb-9ea9-34177393400e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef117d19-e1e7-4b6b-ab73-93e2f4838d05.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef117d19-e1e7-4b6b-ab73-93e2f4838d05", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef117d19-e1e7-4b6b-ab73-93e2f4838d05/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5b3b925-3259-414c-a172-7e0cb4624d69" + } + ] + }, + { + "label": { + "@none": [ + "48v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453018ba-9857-4cab-9a23-5c5277bb5f65.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/feb8db9d-644c-4680-9b21-546be9ece5ac", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453018ba-9857-4cab-9a23-5c5277bb5f65.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453018ba-9857-4cab-9a23-5c5277bb5f65", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453018ba-9857-4cab-9a23-5c5277bb5f65/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73e5e958-6dac-44ff-a20d-a85c202dbd3d" + } + ] + }, + { + "label": { + "@none": [ + "49r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0cbc733c-a00b-4d64-b027-7f4773707f2c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6c44f856-06ff-4a64-8c64-e88fbdc5ca30", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0cbc733c-a00b-4d64-b027-7f4773707f2c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0cbc733c-a00b-4d64-b027-7f4773707f2c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0cbc733c-a00b-4d64-b027-7f4773707f2c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96f6ef36-2b41-496f-a452-ded41987ebd8" + } + ] + }, + { + "label": { + "@none": [ + "49v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e2716e7-be34-4d43-9647-f8787fb990e6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3550fd9c-6b2e-4bc7-9dab-53fb607dba5d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e2716e7-be34-4d43-9647-f8787fb990e6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e2716e7-be34-4d43-9647-f8787fb990e6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e2716e7-be34-4d43-9647-f8787fb990e6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50ad9cf7-ad45-46c3-8c1a-a0ab588d7062" + } + ] + }, + { + "label": { + "@none": [ + "50r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03818fac-9ba6-4382-b339-e27a0a075f31.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ec74d068-c198-472e-9551-8eebb03bbf2d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03818fac-9ba6-4382-b339-e27a0a075f31.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/03818fac-9ba6-4382-b339-e27a0a075f31", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/03818fac-9ba6-4382-b339-e27a0a075f31/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2a6adde-280f-4161-8094-dc5c7b92e779" + } + ] + }, + { + "label": { + "@none": [ + "50v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/976740dd-7304-4603-ad61-2476cf6a2645.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/10e7c686-7225-4cb3-88d7-ea30da4fc3a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/976740dd-7304-4603-ad61-2476cf6a2645.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/976740dd-7304-4603-ad61-2476cf6a2645", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/976740dd-7304-4603-ad61-2476cf6a2645/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4b45f87-a76b-443f-a671-c7fb36a9782d" + } + ] + }, + { + "label": { + "@none": [ + "51r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d04440d1-b322-49a3-a6db-7d9a1a345628.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/080ebd46-07da-4ce1-b763-d9679730424a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d04440d1-b322-49a3-a6db-7d9a1a345628.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d04440d1-b322-49a3-a6db-7d9a1a345628", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d04440d1-b322-49a3-a6db-7d9a1a345628/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/76b6d615-ea23-413a-b58a-df19f9eb2713" + } + ] + }, + { + "label": { + "@none": [ + "51v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08f87bea-9079-4b80-a898-e31f39e47d3a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/07ceda15-a08d-4c9e-a11c-c60cbce0fd79", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08f87bea-9079-4b80-a898-e31f39e47d3a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/08f87bea-9079-4b80-a898-e31f39e47d3a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/08f87bea-9079-4b80-a898-e31f39e47d3a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11180a3c-76ae-44dd-a8af-75bf9d352950" + } + ] + }, + { + "label": { + "@none": [ + "52r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/367872af-4672-480a-8d35-5e69687cb531.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dfc4310a-3d44-4cbf-9750-53e4a3e3a17b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/367872af-4672-480a-8d35-5e69687cb531.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/367872af-4672-480a-8d35-5e69687cb531", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/367872af-4672-480a-8d35-5e69687cb531/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2bcd97e-0fe0-4847-ba93-0dee2a411347" + } + ] + }, + { + "label": { + "@none": [ + "52v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdfd0e06-a5c2-4509-98cb-845c2a2efd87.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a5fa686-c41a-4890-bba4-4dbc1a16d083", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cdfd0e06-a5c2-4509-98cb-845c2a2efd87.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cdfd0e06-a5c2-4509-98cb-845c2a2efd87", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cdfd0e06-a5c2-4509-98cb-845c2a2efd87/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3cce0ec4-89e6-47e0-be74-7ed7526a67c1" + } + ] + }, + { + "label": { + "@none": [ + "53r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a268f689-fab8-452d-99e1-85b2cb333175.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1a65491-aa08-4249-9b30-dcb0e6e5e3f7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a268f689-fab8-452d-99e1-85b2cb333175.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a268f689-fab8-452d-99e1-85b2cb333175", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a268f689-fab8-452d-99e1-85b2cb333175/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/599eff65-b50b-4121-8ce7-62d8e26adc6a" + } + ] + }, + { + "label": { + "@none": [ + "53v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b536060-32eb-40d8-bf58-85e38413a838.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8316873b-5b04-42d2-a1c8-e1d0813d8850", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b536060-32eb-40d8-bf58-85e38413a838.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b536060-32eb-40d8-bf58-85e38413a838", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b536060-32eb-40d8-bf58-85e38413a838/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b00a527-793f-479e-8de9-49c813f9b1b6" + } + ] + }, + { + "label": { + "@none": [ + "54r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e7dea5-64a4-4567-9b29-15ff2182c8bb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f0b37939-d287-42a4-bcaf-24f15f8d33fe", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b3e7dea5-64a4-4567-9b29-15ff2182c8bb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b3e7dea5-64a4-4567-9b29-15ff2182c8bb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b3e7dea5-64a4-4567-9b29-15ff2182c8bb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72840073-df37-4304-bb31-bd4b79364453" + } + ] + }, + { + "label": { + "@none": [ + "54v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f467df5c-b11b-4a62-888f-b42d11d1e604.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/89d493f9-5cb7-4891-b4cc-a0334b1b2108", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f467df5c-b11b-4a62-888f-b42d11d1e604.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f467df5c-b11b-4a62-888f-b42d11d1e604", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f467df5c-b11b-4a62-888f-b42d11d1e604/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a1fe4f6e-5d79-4764-93d3-3f42a343b1b8" + } + ] + }, + { + "label": { + "@none": [ + "55r" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a48d309e-de6c-4e29-b759-5b8f57ed1f00.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9b88d16d-3348-42d9-aaae-57c3a31d971e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a48d309e-de6c-4e29-b759-5b8f57ed1f00.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a48d309e-de6c-4e29-b759-5b8f57ed1f00", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a48d309e-de6c-4e29-b759-5b8f57ed1f00/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8a3973d-0ed8-400d-9e1e-3f16eda131b8" + } + ] + }, + { + "label": { + "@none": [ + "55v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b06c824-c01d-4a0c-8a2b-214f2128bfe7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f5436d94-081a-4d7b-b7b2-7539f9637806", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b06c824-c01d-4a0c-8a2b-214f2128bfe7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b06c824-c01d-4a0c-8a2b-214f2128bfe7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b06c824-c01d-4a0c-8a2b-214f2128bfe7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9247ea6c-b3c3-4193-bc5d-e1b65b12295a" + } + ] + }, + { + "label": { + "@none": [ + "56r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f33b4860-8394-4527-9ccf-81e0233cd363.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b76afa82-423e-4c85-bc1e-e05135cfe58c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f33b4860-8394-4527-9ccf-81e0233cd363.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f33b4860-8394-4527-9ccf-81e0233cd363", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f33b4860-8394-4527-9ccf-81e0233cd363/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23cc2d22-d525-4675-8633-a3eae6034fc5" + } + ] + }, + { + "label": { + "@none": [ + "56v" + ] + }, + "height": 7520, + "width": 5388, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa0f198-456f-41ab-a767-451d6b4d9264.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/18ee272f-3a27-4d15-8b6a-2437502950a1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa0f198-456f-41ab-a767-451d6b4d9264.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8aa0f198-456f-41ab-a767-451d6b4d9264", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8aa0f198-456f-41ab-a767-451d6b4d9264/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b79a885-fe3e-4513-8c84-a30479213f3e" + } + ] + }, + { + "label": { + "@none": [ + "57r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91907681-e425-4106-9d0b-413910441063.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4da52851-ea89-4c14-93db-a9bf4eee0d66", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91907681-e425-4106-9d0b-413910441063.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91907681-e425-4106-9d0b-413910441063", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91907681-e425-4106-9d0b-413910441063/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96f3bc69-92e4-4be7-95a1-0d86f7b434b6" + } + ] + }, + { + "label": { + "@none": [ + "57v" + ] + }, + "height": 7520, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/851bcd6a-06aa-4742-bdbb-5e0426833c45.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2197f820-1b3a-4bb1-94a3-6a212a662bce", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/851bcd6a-06aa-4742-bdbb-5e0426833c45.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/851bcd6a-06aa-4742-bdbb-5e0426833c45", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/851bcd6a-06aa-4742-bdbb-5e0426833c45/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2933ba50-f307-4a9f-a355-6f8f1f26d3b8" + } + ] + }, + { + "label": { + "@none": [ + "58r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8462d708-1ecf-46f1-bcf5-4e9d64225101.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bf30863e-0ab1-47ee-9857-ce6bfe58898b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8462d708-1ecf-46f1-bcf5-4e9d64225101.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8462d708-1ecf-46f1-bcf5-4e9d64225101", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8462d708-1ecf-46f1-bcf5-4e9d64225101/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8c2f48a-e8d1-4282-8850-4a6bc87009b5" + } + ] + }, + { + "label": { + "@none": [ + "58v" + ] + }, + "height": 7520, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/abce65d9-73d4-43ae-8225-52b43a19505a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/980a07e8-0c05-4c4a-a538-be7adc247dd6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/abce65d9-73d4-43ae-8225-52b43a19505a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/abce65d9-73d4-43ae-8225-52b43a19505a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/abce65d9-73d4-43ae-8225-52b43a19505a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf523d77-8a02-45dd-9191-af527fb5128f" + } + ] + }, + { + "label": { + "@none": [ + "59r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53e8014a-2f29-4883-b01b-bcc258656518.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/82036171-6fec-4940-9917-0dc27f4d2635", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53e8014a-2f29-4883-b01b-bcc258656518.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/53e8014a-2f29-4883-b01b-bcc258656518", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/53e8014a-2f29-4883-b01b-bcc258656518/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4531ac5b-d46c-4815-aed2-46d1323f5396" + } + ] + }, + { + "label": { + "@none": [ + "59v" + ] + }, + "height": 7520, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a77b52d9-e29f-4246-b30f-20e3b0e327f2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0ccebfd3-67b1-4b8e-ae10-c2380473e81d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a77b52d9-e29f-4246-b30f-20e3b0e327f2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a77b52d9-e29f-4246-b30f-20e3b0e327f2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a77b52d9-e29f-4246-b30f-20e3b0e327f2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f840c33-c5f1-495b-b1ad-2434588f1633" + } + ] + }, + { + "label": { + "@none": [ + "60r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58eaefe1-3d82-417d-bf75-4a65a2fef4cc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/27b18c2a-4c7e-4fd6-8b1d-0be29c21fb01", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58eaefe1-3d82-417d-bf75-4a65a2fef4cc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/58eaefe1-3d82-417d-bf75-4a65a2fef4cc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/58eaefe1-3d82-417d-bf75-4a65a2fef4cc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5126fb6-3a89-4260-9ebb-f9d14566e175" + } + ] + }, + { + "label": { + "@none": [ + "60v" + ] + }, + "height": 7520, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92bf74ac-d4e6-4547-9e51-3159afa5f351.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cc1e33c7-4e5f-4d79-a1be-5266672e9eb3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/92bf74ac-d4e6-4547-9e51-3159afa5f351.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92bf74ac-d4e6-4547-9e51-3159afa5f351", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/92bf74ac-d4e6-4547-9e51-3159afa5f351/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/544652a0-4f96-40ec-ab3e-3c7bd6b8fd4a" + } + ] + }, + { + "label": { + "@none": [ + "61r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cd5f179b-dbff-4bb3-9676-0422e83ae574.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd0b8cdf-ded5-4142-ad18-d5f3d8c663fb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cd5f179b-dbff-4bb3-9676-0422e83ae574.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cd5f179b-dbff-4bb3-9676-0422e83ae574", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cd5f179b-dbff-4bb3-9676-0422e83ae574/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ccb30a0-f370-47a3-98cb-990cee26e3d8" + } + ] + }, + { + "label": { + "@none": [ + "61v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2d2fa7a7-3857-446f-bdae-a71a4063fb13", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a2a4a62d-b5bb-4beb-a8b9-c8ae219605fe/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3962064-8e8b-430a-b7f1-e30fa77f817a" + } + ] + }, + { + "label": { + "@none": [ + "62r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b82193d2-d8b7-41eb-910f-95ceaa86f6ec.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9918436d-851a-47e5-b494-2e616d1a3eb0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b82193d2-d8b7-41eb-910f-95ceaa86f6ec.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b82193d2-d8b7-41eb-910f-95ceaa86f6ec", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b82193d2-d8b7-41eb-910f-95ceaa86f6ec/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f9faed0-5abf-4868-9db4-15d2d2f117d4" + } + ] + }, + { + "label": { + "@none": [ + "62v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ea5e42a-b298-453e-9b4b-d1d4621db9b5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2a4c75ba-62c9-496b-b917-209222acaddd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ea5e42a-b298-453e-9b4b-d1d4621db9b5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ea5e42a-b298-453e-9b4b-d1d4621db9b5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ea5e42a-b298-453e-9b4b-d1d4621db9b5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a25eb08-24ad-423b-8202-203a8aa64a96" + } + ] + }, + { + "label": { + "@none": [ + "63r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/085671a2-79ba-4107-bb09-834faac8c430.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb17ac9c-f1c1-49f9-90df-25b3a6492f22", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/085671a2-79ba-4107-bb09-834faac8c430.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/085671a2-79ba-4107-bb09-834faac8c430", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/085671a2-79ba-4107-bb09-834faac8c430/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/843cd539-458a-401b-afe6-b8ef36b0c267" + } + ] + }, + { + "label": { + "@none": [ + "63v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fbb07b10-c8f1-40d3-b4e2-fa86212482b1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b7cde2e-c4d3-4cc3-8c19-47c73e12605f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0af71c12-613e-4b7a-a5dc-a40e76e3937a" + } + ] + }, + { + "label": { + "@none": [ + "64r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/15f7a804-dd81-4f80-9f0d-c72b36559f9f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b0c98109-5d26-4ac1-9617-a1778c5b8694", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/15f7a804-dd81-4f80-9f0d-c72b36559f9f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/15f7a804-dd81-4f80-9f0d-c72b36559f9f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/15f7a804-dd81-4f80-9f0d-c72b36559f9f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53ec964a-2abb-431e-aa78-2e31c7ec7b5f" + } + ] + }, + { + "label": { + "@none": [ + "64v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/85e0444f-887b-4a10-8928-629a83a36efd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5aa813cb-4258-4578-8e86-b842a2610274", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/85e0444f-887b-4a10-8928-629a83a36efd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/85e0444f-887b-4a10-8928-629a83a36efd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/85e0444f-887b-4a10-8928-629a83a36efd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae6c37c3-ac92-4987-965b-dd0fe5d134d4" + } + ] + }, + { + "label": { + "@none": [ + "65r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f31aeade-af54-4354-9ad1-70ed644478ae.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e072cca0-7d26-49f8-b887-faf45921fd81", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f31aeade-af54-4354-9ad1-70ed644478ae.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f31aeade-af54-4354-9ad1-70ed644478ae", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f31aeade-af54-4354-9ad1-70ed644478ae/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48e54a9d-da78-46b5-a8af-65cb40f7fdfd" + } + ] + }, + { + "label": { + "@none": [ + "65v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/94c85481-e2d7-4568-bc6a-395dc297ba89.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8976081b-3edc-4016-ab09-fec4429bbac6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/94c85481-e2d7-4568-bc6a-395dc297ba89.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/94c85481-e2d7-4568-bc6a-395dc297ba89", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/94c85481-e2d7-4568-bc6a-395dc297ba89/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33c200e3-2f82-4899-a1bb-d892342de8ba" + } + ] + }, + { + "label": { + "@none": [ + "66r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/45640175-527d-4315-849d-390ff253a3bc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eeb5a086-e8db-4804-8a65-7e8e6660a5ce", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/45640175-527d-4315-849d-390ff253a3bc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/45640175-527d-4315-849d-390ff253a3bc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/45640175-527d-4315-849d-390ff253a3bc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b917809b-e1ca-4da1-8347-74c80df45275" + } + ] + }, + { + "label": { + "@none": [ + "66v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1246128f-12cf-4639-b89e-92a1dc78cec2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff88b45b-8df1-49dc-858c-b7c5770201d9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1246128f-12cf-4639-b89e-92a1dc78cec2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1246128f-12cf-4639-b89e-92a1dc78cec2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1246128f-12cf-4639-b89e-92a1dc78cec2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3dfb987a-a4d3-400e-852c-1538b8376bd5" + } + ] + }, + { + "label": { + "@none": [ + "67r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0de5ff4e-698a-4a3e-bdf0-bd25925a0c99", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a90c8d2f-3ea4-40a2-8337-d91bf77eaff9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c55ef6a-5871-4c04-9e0b-6b9bdbf2893a" + } + ] + }, + { + "label": { + "@none": [ + "67v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/771b0cba-8e3b-4d19-8aad-f3879096ce68.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/662010a4-1432-40ae-a33f-1157cd752850", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/771b0cba-8e3b-4d19-8aad-f3879096ce68.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/771b0cba-8e3b-4d19-8aad-f3879096ce68", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/771b0cba-8e3b-4d19-8aad-f3879096ce68/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d0da307-0ced-4f75-8580-e43a73d851b6" + } + ] + }, + { + "label": { + "@none": [ + "68r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/254a94e4-4e78-4a9c-99eb-e4df93799f87.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5c3cd31-25bc-4298-a12b-2e6d95f04117", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/254a94e4-4e78-4a9c-99eb-e4df93799f87.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/254a94e4-4e78-4a9c-99eb-e4df93799f87", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/254a94e4-4e78-4a9c-99eb-e4df93799f87/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea8c51af-73ae-401a-82c0-d25e9d1d7728" + } + ] + }, + { + "label": { + "@none": [ + "68v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d4427886-add8-437f-a00d-37bfffb4b543.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/86d951da-4368-4723-9f76-ae68449141e1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d4427886-add8-437f-a00d-37bfffb4b543.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d4427886-add8-437f-a00d-37bfffb4b543", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d4427886-add8-437f-a00d-37bfffb4b543/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8be7696-08b5-45ed-ba68-5d8420dd1252" + } + ] + }, + { + "label": { + "@none": [ + "69r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4105a5e6-0018-40a7-9d97-1eb086addb89.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/13ca6d6d-e860-4386-8b25-f2f650d828d1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4105a5e6-0018-40a7-9d97-1eb086addb89.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4105a5e6-0018-40a7-9d97-1eb086addb89", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4105a5e6-0018-40a7-9d97-1eb086addb89/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be9a6e4b-5410-4ba7-94e8-2ad4188bf4fb" + } + ] + }, + { + "label": { + "@none": [ + "69v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dde5f6c3-1297-44cd-bea1-9e7e12d79a56.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6755583f-d956-4bc9-99dd-ea9d781dae6d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dde5f6c3-1297-44cd-bea1-9e7e12d79a56.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dde5f6c3-1297-44cd-bea1-9e7e12d79a56", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dde5f6c3-1297-44cd-bea1-9e7e12d79a56/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d8bc77e-9844-48ad-85a8-e02d0a16ae11" + } + ] + }, + { + "label": { + "@none": [ + "70r" + ] + }, + "height": 7508, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30258ea7-a5c9-40c8-b91c-e535cbee39f1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/048d89c5-70dd-4bfa-a1d6-41f574e32f53", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30258ea7-a5c9-40c8-b91c-e535cbee39f1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/30258ea7-a5c9-40c8-b91c-e535cbee39f1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/30258ea7-a5c9-40c8-b91c-e535cbee39f1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/848a2a00-5d12-4ef9-a925-1e17cbf459f9" + } + ] + }, + { + "label": { + "@none": [ + "70v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c448d7f-9e9a-4aec-962b-16201f743714", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1eae08f-4cdd-4f3d-ad26-713e0cbbdc0e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a79ec4d-98fe-4e8c-a8df-94158c4c4f0b" + } + ] + }, + { + "label": { + "@none": [ + "71r" + ] + }, + "height": 7496, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/74babfe7-e1fa-4287-befc-021f79e9bf33.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6cfa5367-423b-40a4-b692-bdbc91b27a54", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/74babfe7-e1fa-4287-befc-021f79e9bf33.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/74babfe7-e1fa-4287-befc-021f79e9bf33", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/74babfe7-e1fa-4287-befc-021f79e9bf33/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c0d6a5f-0239-43d5-ba9e-d32e23ee9f8d" + } + ] + }, + { + "label": { + "@none": [ + "71v" + ] + }, + "height": 7508, + "width": 5340, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/117746be-fd53-48ce-9600-e0ef7e848c1e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d86d54c6-50ec-4f65-8a9a-7bfef39ddcee", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/117746be-fd53-48ce-9600-e0ef7e848c1e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/117746be-fd53-48ce-9600-e0ef7e848c1e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/117746be-fd53-48ce-9600-e0ef7e848c1e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fde89e3-9dd2-4732-b4d9-10db4f781937" + } + ] + }, + { + "label": { + "@none": [ + "72r" + ] + }, + "height": 7496, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66237a15-ee4c-464f-8515-5441ed89feab.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/538fb3af-3ae0-46b1-a3b5-e82e3e418a3a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66237a15-ee4c-464f-8515-5441ed89feab.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66237a15-ee4c-464f-8515-5441ed89feab", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66237a15-ee4c-464f-8515-5441ed89feab/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5680da6-0998-4f50-bcb8-8205ec00edef" + } + ] + }, + { + "label": { + "@none": [ + "72v" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b77da291-35b8-4400-b241-0b74dbdb3d75.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c96f6028-a118-4aa7-bbe0-bcb59d3b213d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b77da291-35b8-4400-b241-0b74dbdb3d75.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b77da291-35b8-4400-b241-0b74dbdb3d75", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b77da291-35b8-4400-b241-0b74dbdb3d75/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7545460c-df5c-4358-ab4e-5a494067e889" + } + ] + }, + { + "label": { + "@none": [ + "73r" + ] + }, + "height": 7496, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a8cab02a-e2d8-44fc-9646-3b38e98edcb6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f4c92987-dd3e-43df-a8d8-69e379b9694a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a8cab02a-e2d8-44fc-9646-3b38e98edcb6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a8cab02a-e2d8-44fc-9646-3b38e98edcb6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a8cab02a-e2d8-44fc-9646-3b38e98edcb6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe42e6f9-3174-4b10-b144-9cf56f73e161" + } + ] + }, + { + "label": { + "@none": [ + "73v" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5273966-5b5e-4ac3-be64-b4df4a6cd205.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8eac3d3e-ff5b-4944-8aab-23ba92b3177e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5273966-5b5e-4ac3-be64-b4df4a6cd205.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5273966-5b5e-4ac3-be64-b4df4a6cd205", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5273966-5b5e-4ac3-be64-b4df4a6cd205/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a74678f-7daa-45fb-98f4-6efdc5de2981" + } + ] + }, + { + "label": { + "@none": [ + "74r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/094b84b0-f4e7-4d15-ba0e-b469315332a1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67df46d3-d8c1-4106-8c15-8fc83ad0a0dd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/094b84b0-f4e7-4d15-ba0e-b469315332a1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/094b84b0-f4e7-4d15-ba0e-b469315332a1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/094b84b0-f4e7-4d15-ba0e-b469315332a1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ffe8949-1f8e-4162-92dd-865a9a868372" + } + ] + }, + { + "label": { + "@none": [ + "74v" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ac11a4d3-92fa-4452-8e98-6fdc6375db4c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd13cddd-5ca9-4ee2-9f34-f27b22607b93", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ac11a4d3-92fa-4452-8e98-6fdc6375db4c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ac11a4d3-92fa-4452-8e98-6fdc6375db4c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ac11a4d3-92fa-4452-8e98-6fdc6375db4c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e1464ce5-8920-418a-94df-238c65246cac" + } + ] + }, + { + "label": { + "@none": [ + "75r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c37eceea-fede-458a-8aaf-3494d71bfc50", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5cb8d15-2f87-46b9-aa32-ef9e7b2f5484/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/783ac550-48cb-4d78-b06d-ea4352d8fb65" + } + ] + }, + { + "label": { + "@none": [ + "75v" + ] + }, + "height": 7508, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bc5af2bc-591b-4164-a5ba-bc90a5be7b9e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c2bfb4b3-8d74-4bc4-be70-7f006e0987ee/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d8bcf29-bb77-4f3e-93ec-73ab3c8f8f52" + } + ] + }, + { + "label": { + "@none": [ + "76r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee570022-ee63-4628-8e4c-6f5024897e88.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b9b88495-d1c7-4dc9-b67a-add9970b078a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ee570022-ee63-4628-8e4c-6f5024897e88.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee570022-ee63-4628-8e4c-6f5024897e88", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ee570022-ee63-4628-8e4c-6f5024897e88/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fcc7a39-fc8c-4130-bbe5-646a35e05b0b" + } + ] + }, + { + "label": { + "@none": [ + "76v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b2d36328-51d1-4354-a0be-8ed8d47cfcbf", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5c2fbdfc-bb0f-44cc-a8ad-0dd6e3d9b568/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2beb237-abc1-435c-843f-9a1325f8b1e0" + } + ] + }, + { + "label": { + "@none": [ + "77r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f87045b1-4d8b-4114-9497-2cdd8c31f3dc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/87a0a755-bfd5-4f59-b639-9444a484122b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f87045b1-4d8b-4114-9497-2cdd8c31f3dc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f87045b1-4d8b-4114-9497-2cdd8c31f3dc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f87045b1-4d8b-4114-9497-2cdd8c31f3dc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/046f0140-6138-475b-bbd7-932cb3587b14" + } + ] + }, + { + "label": { + "@none": [ + "77v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66d688d2-cec6-4291-8ab6-d6669349ab73.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0a97510f-ce06-4691-870d-f2fee234288e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66d688d2-cec6-4291-8ab6-d6669349ab73.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66d688d2-cec6-4291-8ab6-d6669349ab73", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66d688d2-cec6-4291-8ab6-d6669349ab73/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/463de731-0f33-4ca2-b498-02845bf32721" + } + ] + }, + { + "label": { + "@none": [ + "78r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/69e7f100-4717-4b99-931e-d037ebf5d890.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/613b129e-57b0-4f21-b521-c27ffd267861", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/69e7f100-4717-4b99-931e-d037ebf5d890.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/69e7f100-4717-4b99-931e-d037ebf5d890", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/69e7f100-4717-4b99-931e-d037ebf5d890/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/459f6a95-acd5-4ace-9723-5d8b2636ee76" + } + ] + }, + { + "label": { + "@none": [ + "78v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d2a4a641-e693-4743-ad86-caa1bf0bda54.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2ea1bcbe-537c-4212-b25f-a8baf6f67dbd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d2a4a641-e693-4743-ad86-caa1bf0bda54.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d2a4a641-e693-4743-ad86-caa1bf0bda54", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d2a4a641-e693-4743-ad86-caa1bf0bda54/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32e05131-6e2a-4bb7-a156-80577f286016" + } + ] + }, + { + "label": { + "@none": [ + "79r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1fdeed11-7905-41d7-9975-553d49866162.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0afef541-c4fb-46b1-b605-b06e8c3fface", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1fdeed11-7905-41d7-9975-553d49866162.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1fdeed11-7905-41d7-9975-553d49866162", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1fdeed11-7905-41d7-9975-553d49866162/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/617f37be-14bd-42ee-b78d-a86ad435e3e4" + } + ] + }, + { + "label": { + "@none": [ + "79v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/70b3f8c6-c512-47aa-b687-028f57a64046.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ea221379-3291-4cba-86fc-b736e8bf385c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/70b3f8c6-c512-47aa-b687-028f57a64046.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/70b3f8c6-c512-47aa-b687-028f57a64046", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/70b3f8c6-c512-47aa-b687-028f57a64046/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/770f976f-655f-40a8-b9ac-6e688800d2b6" + } + ] + }, + { + "label": { + "@none": [ + "80r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff3348f1-b786-4e82-89bf-6647fd05bb47.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3964856f-675b-4440-a685-bf6e209056c7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff3348f1-b786-4e82-89bf-6647fd05bb47.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff3348f1-b786-4e82-89bf-6647fd05bb47", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff3348f1-b786-4e82-89bf-6647fd05bb47/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c961735-3ac0-4341-9a72-c77f0f752b01" + } + ] + }, + { + "label": { + "@none": [ + "80v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1c5d94dd-cd2f-4ae1-8d91-094b0a9e625c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b0cfa6c-51ca-4835-90dd-f22384a2ae7e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c6c8d0a7-ca6e-4932-bb4b-633a2588bf6f" + } + ] + }, + { + "label": { + "@none": [ + "81r" + ] + }, + "height": 7484, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d925f250-7c89-44f8-8662-af40406aa47f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/68dcf778-d460-4656-856c-02797e2c02fc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d925f250-7c89-44f8-8662-af40406aa47f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7484, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d925f250-7c89-44f8-8662-af40406aa47f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d925f250-7c89-44f8-8662-af40406aa47f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a2bbbbe-65b1-40e3-84e1-4e26703b2ef6" + } + ] + }, + { + "label": { + "@none": [ + "81v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b73ac0d8-df67-49d2-bd2e-e39fec952206.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/41f6b1ec-3dcd-4765-9b27-5f6a0c99107f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b73ac0d8-df67-49d2-bd2e-e39fec952206.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b73ac0d8-df67-49d2-bd2e-e39fec952206", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b73ac0d8-df67-49d2-bd2e-e39fec952206/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/575eb58a-39c6-4d41-8009-3e469f88bb24" + } + ] + }, + { + "label": { + "@none": [ + "82r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbb46301-41e9-454e-a840-88eb40c6d238.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dc055633-bac3-4061-8858-21fe4c6d0a90", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbb46301-41e9-454e-a840-88eb40c6d238.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dbb46301-41e9-454e-a840-88eb40c6d238", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dbb46301-41e9-454e-a840-88eb40c6d238/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb8b9dfa-ed09-4ed7-8faf-3fea482dd1aa" + } + ] + }, + { + "label": { + "@none": [ + "82v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf6706e1-849d-4d45-98d7-64cbf398ff01", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07db3fa0-b0bb-4e19-8a07-b18c18e45c9b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e218edc1-6ed3-4358-b4f4-5439ae0ba81a" + } + ] + }, + { + "label": { + "@none": [ + "83r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef76ad43-bc72-465b-b321-3b4082ad81bd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3723a6da-1d4f-4a34-b3f8-9bda4753c4f8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef76ad43-bc72-465b-b321-3b4082ad81bd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef76ad43-bc72-465b-b321-3b4082ad81bd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef76ad43-bc72-465b-b321-3b4082ad81bd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8a613b0-904c-467c-8dc4-96ee4a0049b3" + } + ] + }, + { + "label": { + "@none": [ + "83v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83c01a22-b7dc-4215-89f9-b59807babd6d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c44c7127-a24b-424c-9b38-32ff31f285de", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83c01a22-b7dc-4215-89f9-b59807babd6d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/83c01a22-b7dc-4215-89f9-b59807babd6d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/83c01a22-b7dc-4215-89f9-b59807babd6d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc6e44cf-83ee-4c01-a774-857ec21fb01a" + } + ] + }, + { + "label": { + "@none": [ + "84r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dd0bac6b-31af-437c-b9ea-7f481804628b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cc407832-ace7-4bf0-bc10-8d0e1ecd3337", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dd0bac6b-31af-437c-b9ea-7f481804628b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dd0bac6b-31af-437c-b9ea-7f481804628b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dd0bac6b-31af-437c-b9ea-7f481804628b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1add68ac-a52f-44a5-b761-a54e9ed945b8" + } + ] + }, + { + "label": { + "@none": [ + "84v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/203483da-3249-486f-b3e6-7e14fb740485.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e8463fb2-8829-4614-9b3c-d41f77773405", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/203483da-3249-486f-b3e6-7e14fb740485.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/203483da-3249-486f-b3e6-7e14fb740485", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/203483da-3249-486f-b3e6-7e14fb740485/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00aceac0-8f84-42ac-b636-78c1b452e64d" + } + ] + }, + { + "label": { + "@none": [ + "85r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b025cd5-0558-4800-aecd-2c5b87d04648.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8d5b93d5-2084-48ad-a1f9-4188594698ba", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b025cd5-0558-4800-aecd-2c5b87d04648.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b025cd5-0558-4800-aecd-2c5b87d04648", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b025cd5-0558-4800-aecd-2c5b87d04648/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f5c0d93-0d4e-4a33-a374-104ccf5528b2" + } + ] + }, + { + "label": { + "@none": [ + "85v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/879c13a0-4ecc-4bb6-a466-69e4c5e4597e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0f102d29-54fa-40b4-a1db-33b8c744badf", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/879c13a0-4ecc-4bb6-a466-69e4c5e4597e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/879c13a0-4ecc-4bb6-a466-69e4c5e4597e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/879c13a0-4ecc-4bb6-a466-69e4c5e4597e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53c51dac-9018-458a-b8b0-63d49e2d35de" + } + ] + }, + { + "label": { + "@none": [ + "86r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed9f5bcb-1264-4342-81ed-c88227fdfa8c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7e263f69-1e0f-4916-b265-7c4e35e6b832", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed9f5bcb-1264-4342-81ed-c88227fdfa8c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ed9f5bcb-1264-4342-81ed-c88227fdfa8c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ed9f5bcb-1264-4342-81ed-c88227fdfa8c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b72bc35-6228-4d29-bcb4-ef3a2d19f707" + } + ] + }, + { + "label": { + "@none": [ + "86v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113c7197-3de9-4c77-8a90-f616cba6157f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5448016c-56ee-474c-a8ef-51b5467190d3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113c7197-3de9-4c77-8a90-f616cba6157f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/113c7197-3de9-4c77-8a90-f616cba6157f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/113c7197-3de9-4c77-8a90-f616cba6157f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee7847eb-047a-447f-bfb4-18ba97ad508e" + } + ] + }, + { + "label": { + "@none": [ + "87r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/043a94c4-674a-49ae-9b95-4ebde547a032.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dfac202c-89ad-427f-af22-4d7bcc5d1ef2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/043a94c4-674a-49ae-9b95-4ebde547a032.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/043a94c4-674a-49ae-9b95-4ebde547a032", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/043a94c4-674a-49ae-9b95-4ebde547a032/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8bba61de-47c5-4756-8f37-a7a296cf4981" + } + ] + }, + { + "label": { + "@none": [ + "87v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ace2569d-08c0-4dfa-9c72-a5fa66214f54.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d40e000f-77e5-444f-8a64-7b19c59951de", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ace2569d-08c0-4dfa-9c72-a5fa66214f54.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ace2569d-08c0-4dfa-9c72-a5fa66214f54", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ace2569d-08c0-4dfa-9c72-a5fa66214f54/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e62cb52d-9daf-4506-832b-dc979ee87d90" + } + ] + }, + { + "label": { + "@none": [ + "88r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/32cbd67a-230a-45ad-94a0-5a6136827c7e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af3c2734-6aa5-460c-861a-a619338da7eb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/32cbd67a-230a-45ad-94a0-5a6136827c7e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/32cbd67a-230a-45ad-94a0-5a6136827c7e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/32cbd67a-230a-45ad-94a0-5a6136827c7e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c638734a-c526-4f32-a237-ec81e84778e6" + } + ] + }, + { + "label": { + "@none": [ + "88v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453c3280-3449-498d-afb3-525cbd9fcbaa.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/199aa654-b510-40ff-a9ab-1ae9a423cc85", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453c3280-3449-498d-afb3-525cbd9fcbaa.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453c3280-3449-498d-afb3-525cbd9fcbaa", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453c3280-3449-498d-afb3-525cbd9fcbaa/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b24d652c-29ef-4e0c-97d0-5a9ea21d812b" + } + ] + }, + { + "label": { + "@none": [ + "89r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/784aa20a-1650-4df6-83d2-d0018d169d51.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b42afb2-5c03-4827-9602-e6e8533fa932", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/784aa20a-1650-4df6-83d2-d0018d169d51.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/784aa20a-1650-4df6-83d2-d0018d169d51", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/784aa20a-1650-4df6-83d2-d0018d169d51/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6824332-ed16-419f-9451-89ee09bdec5f" + } + ] + }, + { + "label": { + "@none": [ + "89v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/376ad1e4-70e2-4071-a0c5-c23005a67835.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/78890935-28b7-4a51-b8c2-e0f24b6b2042", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/376ad1e4-70e2-4071-a0c5-c23005a67835.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/376ad1e4-70e2-4071-a0c5-c23005a67835", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/376ad1e4-70e2-4071-a0c5-c23005a67835/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/997362d8-38a8-4b69-9e1a-f70574b3edd9" + } + ] + }, + { + "label": { + "@none": [ + "90r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/63270542-6cf5-4f07-b2b0-3366e45ca8d2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/014b7d47-f38e-4bea-b586-8555754df5e9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/63270542-6cf5-4f07-b2b0-3366e45ca8d2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/63270542-6cf5-4f07-b2b0-3366e45ca8d2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/63270542-6cf5-4f07-b2b0-3366e45ca8d2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/320c80c8-8cf8-48aa-a46d-1b83e8792a27" + } + ] + }, + { + "label": { + "@none": [ + "90v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9a37d5e-ba69-4d01-9d01-d042c8d9a5a1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0c3b4dcb-3d4e-4c69-902a-6c76ed8e4189/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/971b5fbb-7628-490a-8f4c-d289832ab76f" + } + ] + }, + { + "label": { + "@none": [ + "91r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ddd128d5-781b-41fd-9616-65126df52c05.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2d7cd767-b91e-42a0-bcbf-d27706e2d103", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ddd128d5-781b-41fd-9616-65126df52c05.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ddd128d5-781b-41fd-9616-65126df52c05", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ddd128d5-781b-41fd-9616-65126df52c05/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ebf13b5-4ebb-4c48-b282-ef093114640e" + } + ] + }, + { + "label": { + "@none": [ + "91v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8456c7e8-fdfa-440a-b34d-397aae400abf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9d6ea7d1-73c3-4dd9-ad2e-6b664fba4db9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8456c7e8-fdfa-440a-b34d-397aae400abf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8456c7e8-fdfa-440a-b34d-397aae400abf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8456c7e8-fdfa-440a-b34d-397aae400abf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4be7d577-23ca-4d9d-8a54-307d0cba0914" + } + ] + }, + { + "label": { + "@none": [ + "92r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6dc28ac6-3eb3-48ba-b282-bd008d53815c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4c386649-28d5-4566-99ca-7d7ba277fc15", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6dc28ac6-3eb3-48ba-b282-bd008d53815c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6dc28ac6-3eb3-48ba-b282-bd008d53815c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6dc28ac6-3eb3-48ba-b282-bd008d53815c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c990657-a8fa-4af4-9f3b-7e588fc63433" + } + ] + }, + { + "label": { + "@none": [ + "92v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3ff689eb-99b6-4ad7-a4e5-c2265aafb155.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/513a2718-ec5b-4781-8823-f4e3705ea746", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3ff689eb-99b6-4ad7-a4e5-c2265aafb155.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3ff689eb-99b6-4ad7-a4e5-c2265aafb155", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3ff689eb-99b6-4ad7-a4e5-c2265aafb155/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0066dede-e9f4-419d-938d-8c017ce981a2" + } + ] + }, + { + "label": { + "@none": [ + "93r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bce11d66-e900-4caa-aad3-67b21bc197d8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e693058f-4eb9-4f5f-b57d-c6107bce550b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bce11d66-e900-4caa-aad3-67b21bc197d8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bce11d66-e900-4caa-aad3-67b21bc197d8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bce11d66-e900-4caa-aad3-67b21bc197d8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0882ade3-b68b-4ecb-a100-79b3463edaf5" + } + ] + }, + { + "label": { + "@none": [ + "93v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b74055a5-96a7-456b-bc22-c55c1eb04c0a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3bdb9aa4-2b84-45d2-bd3f-8f9247bed9ac", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b74055a5-96a7-456b-bc22-c55c1eb04c0a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b74055a5-96a7-456b-bc22-c55c1eb04c0a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b74055a5-96a7-456b-bc22-c55c1eb04c0a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f018eb9d-d9db-4101-84ef-1224dc7734fd" + } + ] + }, + { + "label": { + "@none": [ + "94r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e26f5b63-20e6-470d-8a36-1613731f9202.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7d08f883-8266-4664-a813-844227c9b3c3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e26f5b63-20e6-470d-8a36-1613731f9202.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e26f5b63-20e6-470d-8a36-1613731f9202", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e26f5b63-20e6-470d-8a36-1613731f9202/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/882b56dd-9e39-4fa0-9631-225787eceec5" + } + ] + }, + { + "label": { + "@none": [ + "94v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66bc1133-fd0b-459e-923d-8f972d0f44e1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4be82785-9833-4cf6-aaf3-26b4941ed473", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/66bc1133-fd0b-459e-923d-8f972d0f44e1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66bc1133-fd0b-459e-923d-8f972d0f44e1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/66bc1133-fd0b-459e-923d-8f972d0f44e1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33bcd957-84ff-486b-8af1-41eaf1d5e7c3" + } + ] + }, + { + "label": { + "@none": [ + "95r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a328191-9de6-41f7-89bd-3c9bd9e06fda.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a1be29a5-27be-43db-a350-b3df720bb5ac", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a328191-9de6-41f7-89bd-3c9bd9e06fda.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a328191-9de6-41f7-89bd-3c9bd9e06fda", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a328191-9de6-41f7-89bd-3c9bd9e06fda/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23d8d8a0-4de3-400d-a313-da68d3b93598" + } + ] + }, + { + "label": { + "@none": [ + "95v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4bd7efe-afbc-482a-837b-1aef57dfc71f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2042cacb-43c9-4d9a-a1c9-97554ff395db", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4bd7efe-afbc-482a-837b-1aef57dfc71f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b4bd7efe-afbc-482a-837b-1aef57dfc71f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b4bd7efe-afbc-482a-837b-1aef57dfc71f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/abd001fb-3a18-4dea-a614-5b19a8a68e72" + } + ] + }, + { + "label": { + "@none": [ + "96r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6caf822d-61c1-48c3-b0c9-6f00a9d921a4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b2d1607f-ea09-4600-bdcf-90fa90305558", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6caf822d-61c1-48c3-b0c9-6f00a9d921a4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6caf822d-61c1-48c3-b0c9-6f00a9d921a4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6caf822d-61c1-48c3-b0c9-6f00a9d921a4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7ad5081e-b093-4393-be27-7a6bc0205be6" + } + ] + }, + { + "label": { + "@none": [ + "96v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6c68cbbf-e96b-4c67-9cc1-59b84e801e72.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9e19f3c8-71d8-42a4-86c2-bccde73d44ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6c68cbbf-e96b-4c67-9cc1-59b84e801e72.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6c68cbbf-e96b-4c67-9cc1-59b84e801e72", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6c68cbbf-e96b-4c67-9cc1-59b84e801e72/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1847663e-8ccc-48bd-91a1-da6bc562c693" + } + ] + }, + { + "label": { + "@none": [ + "97r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8519f703-f064-465c-9357-07cd81bf0449", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea3fc9dc-75de-47a1-a5cb-3abf1918b1c2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6830bed1-751d-405e-b9e3-5dc8ca2fe093" + } + ] + }, + { + "label": { + "@none": [ + "97v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1d7142c-0f87-4011-a90b-5f4a6674a818.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1a7dbad0-a58e-4d44-ab87-1d6e6ef51151", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1d7142c-0f87-4011-a90b-5f4a6674a818.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c1d7142c-0f87-4011-a90b-5f4a6674a818", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c1d7142c-0f87-4011-a90b-5f4a6674a818/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/697f5baf-4392-4925-8a60-ab7c1937470e" + } + ] + }, + { + "label": { + "@none": [ + "98r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/39df1303-a981-4de4-af5e-7c4a65d16028", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/02cf7007-c8ea-4f4c-8342-b0fe40dec0e9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fe18b7d-0771-4874-90ac-96bf00f092c7" + } + ] + }, + { + "label": { + "@none": [ + "98v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fdd8227b-38ac-4f5e-8bcb-14f2003b7444.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df8dc3d9-26ef-4c88-842d-db958be6e04f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fdd8227b-38ac-4f5e-8bcb-14f2003b7444.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fdd8227b-38ac-4f5e-8bcb-14f2003b7444", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fdd8227b-38ac-4f5e-8bcb-14f2003b7444/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b41d059f-04b4-4820-9ab5-609e52952c68" + } + ] + }, + { + "label": { + "@none": [ + "99r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c62d1002-a1ea-45a3-b118-63767f775bf4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/102ea954-5668-46c4-8302-e7887d887f92", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c62d1002-a1ea-45a3-b118-63767f775bf4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c62d1002-a1ea-45a3-b118-63767f775bf4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c62d1002-a1ea-45a3-b118-63767f775bf4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/817aca23-3889-4e3b-bab1-cac4e2105a4d" + } + ] + }, + { + "label": { + "@none": [ + "99v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4324a4d6-e1f7-4679-a4ac-4ef4fa051266", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0c3f5ffb-40fc-40a7-92b7-3dc8e0ac9fe5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4605055f-b24a-4012-90a3-6fbcd8f83aa0" + } + ] + }, + { + "label": { + "@none": [ + "100r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9ba222e5-5411-4f89-adbb-427a09c85a94.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0324676b-01f7-4977-904f-030e3bfa83c1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9ba222e5-5411-4f89-adbb-427a09c85a94.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9ba222e5-5411-4f89-adbb-427a09c85a94", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9ba222e5-5411-4f89-adbb-427a09c85a94/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08c6cd88-1c6c-4d27-8f6e-63856d983a98" + } + ] + }, + { + "label": { + "@none": [ + "100v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b85682d-65a5-42bd-9167-1dadb92bbb87.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/15252b15-37ee-497c-9ce7-7d31c805440d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9b85682d-65a5-42bd-9167-1dadb92bbb87.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b85682d-65a5-42bd-9167-1dadb92bbb87", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9b85682d-65a5-42bd-9167-1dadb92bbb87/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee71692e-1b27-41c9-bde7-8d1446c1fa91" + } + ] + }, + { + "label": { + "@none": [ + "101r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/968417ce-dbef-4699-8506-b834ff8a8f8f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/48d8979e-8980-4dd6-9a44-13559f7d49e3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/968417ce-dbef-4699-8506-b834ff8a8f8f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/968417ce-dbef-4699-8506-b834ff8a8f8f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/968417ce-dbef-4699-8506-b834ff8a8f8f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/818eb5fb-6421-430f-ae3e-e183d5cdbcc1" + } + ] + }, + { + "label": { + "@none": [ + "101v" + ] + }, + "height": 7520, + "width": 5352, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b32087a-4c41-4f42-807e-c70e0fbfdde3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd6b2ce4-8096-425e-96cd-72d4e7d9fe53", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b32087a-4c41-4f42-807e-c70e0fbfdde3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b32087a-4c41-4f42-807e-c70e0fbfdde3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b32087a-4c41-4f42-807e-c70e0fbfdde3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cb08daf-82c4-4915-a029-bb69e3125dc7" + } + ] + }, + { + "label": { + "@none": [ + "102r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14577d89-7870-4cf2-9e0e-e4da260a1ddf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/115cef7c-7194-4a7d-bbf4-92d2b46013a4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/14577d89-7870-4cf2-9e0e-e4da260a1ddf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/14577d89-7870-4cf2-9e0e-e4da260a1ddf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/14577d89-7870-4cf2-9e0e-e4da260a1ddf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a144ce80-c179-4ee3-97ac-d5923f4f8328" + } + ] + }, + { + "label": { + "@none": [ + "102v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cf2c111-509a-4b21-bf60-9a860d318417.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9fe1f78a-54a2-4bed-afb5-b7bae8018ec0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cf2c111-509a-4b21-bf60-9a860d318417.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8cf2c111-509a-4b21-bf60-9a860d318417", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8cf2c111-509a-4b21-bf60-9a860d318417/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53a066e9-c0dc-43b8-8860-888a99c20c19" + } + ] + }, + { + "label": { + "@none": [ + "103r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22e05588-d791-4221-8060-588540e81600.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7bf4e5cc-0b20-4793-9d0b-d6c8ed2cf296", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22e05588-d791-4221-8060-588540e81600.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/22e05588-d791-4221-8060-588540e81600", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/22e05588-d791-4221-8060-588540e81600/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6754901f-9bb0-43cd-83a8-e8f53d2c40e7" + } + ] + }, + { + "label": { + "@none": [ + "103v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e84dff7d-c976-4767-8cca-1f1aa4662d7b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59318208-065b-440d-aff4-2969a412bb74", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e84dff7d-c976-4767-8cca-1f1aa4662d7b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e84dff7d-c976-4767-8cca-1f1aa4662d7b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e84dff7d-c976-4767-8cca-1f1aa4662d7b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b06d8b48-0d83-46ff-be1c-20c2e92e2d18" + } + ] + }, + { + "label": { + "@none": [ + "104r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa7ea78-d36c-454d-bc1a-e4702be9c150.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c02b253d-479e-49ad-8ff0-3e34d3ab7ed6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8aa7ea78-d36c-454d-bc1a-e4702be9c150.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8aa7ea78-d36c-454d-bc1a-e4702be9c150", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8aa7ea78-d36c-454d-bc1a-e4702be9c150/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f4aa13cd-5a7c-4404-865c-1d0eb255d757" + } + ] + }, + { + "label": { + "@none": [ + "104v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/93ab32ff-33ee-4254-a2e5-fc626ee6a269.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d0703db6-7123-4698-a076-ca41bcdac85a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/93ab32ff-33ee-4254-a2e5-fc626ee6a269.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/93ab32ff-33ee-4254-a2e5-fc626ee6a269", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/93ab32ff-33ee-4254-a2e5-fc626ee6a269/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebc5c493-9006-4f8f-b6b3-9988d3b1a220" + } + ] + }, + { + "label": { + "@none": [ + "105r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869939b0-f33d-48b8-8d05-8ad21f362ac2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6b491f2c-0f6f-4f79-81e2-771e9e464867", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869939b0-f33d-48b8-8d05-8ad21f362ac2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/869939b0-f33d-48b8-8d05-8ad21f362ac2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/869939b0-f33d-48b8-8d05-8ad21f362ac2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f8ba037-b904-4aa0-a1c2-1e2c8ba395eb" + } + ] + }, + { + "label": { + "@none": [ + "105v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff41b966-4b8e-4707-aca5-3c2162096321.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af9a5b22-9a6a-4d52-b50c-62303d330855", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff41b966-4b8e-4707-aca5-3c2162096321.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff41b966-4b8e-4707-aca5-3c2162096321", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff41b966-4b8e-4707-aca5-3c2162096321/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fce8bf61-f248-4b7c-8f40-5615539aa73e" + } + ] + }, + { + "label": { + "@none": [ + "106r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/50c79586-fc14-4a2b-a1d2-3c92f22a7de3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a3eaf560-5aaa-48a8-91a9-cd121211ff32", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/50c79586-fc14-4a2b-a1d2-3c92f22a7de3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/50c79586-fc14-4a2b-a1d2-3c92f22a7de3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/50c79586-fc14-4a2b-a1d2-3c92f22a7de3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bbb798d4-7481-4a49-a529-52689f4ea4ae" + } + ] + }, + { + "label": { + "@none": [ + "106v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/151ad0cc-75d6-4cb9-9496-34c108c96f28.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f836b231-44b0-46b6-a91e-5b5416d168e7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/151ad0cc-75d6-4cb9-9496-34c108c96f28.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/151ad0cc-75d6-4cb9-9496-34c108c96f28", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/151ad0cc-75d6-4cb9-9496-34c108c96f28/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5a0120c-a40b-4168-b1cd-e930d957da74" + } + ] + }, + { + "label": { + "@none": [ + "107r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/799c3b26-7fbd-417b-b4c6-bd1f347ca247.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bcd9454f-bc63-41e7-810a-40f2b3771049", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/799c3b26-7fbd-417b-b4c6-bd1f347ca247.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/799c3b26-7fbd-417b-b4c6-bd1f347ca247", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/799c3b26-7fbd-417b-b4c6-bd1f347ca247/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eadaa156-7de0-46ee-acb0-965ff85abc2b" + } + ] + }, + { + "label": { + "@none": [ + "107v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76f2b721-e64a-415f-9c0e-35f0956e8e85.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/52a67cd2-e634-4ec8-813f-d2982f54b6ec", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76f2b721-e64a-415f-9c0e-35f0956e8e85.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76f2b721-e64a-415f-9c0e-35f0956e8e85", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76f2b721-e64a-415f-9c0e-35f0956e8e85/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0c35396e-2fc0-41a0-ab7d-f7262d31937b" + } + ] + }, + { + "label": { + "@none": [ + "108r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48780b63-490f-4a6c-b884-2d820d075797.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/71584d04-725c-4925-aefc-8444bcfc81f2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48780b63-490f-4a6c-b884-2d820d075797.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48780b63-490f-4a6c-b884-2d820d075797", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48780b63-490f-4a6c-b884-2d820d075797/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a7b8c56-5b43-4c32-9295-c878c157ff62" + } + ] + }, + { + "label": { + "@none": [ + "108v" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bcd27edc-c3f6-4066-8cfc-8bfbecb41305.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a173d7a9-8aeb-422f-b334-a4bad73ecaa7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bcd27edc-c3f6-4066-8cfc-8bfbecb41305.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bcd27edc-c3f6-4066-8cfc-8bfbecb41305", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bcd27edc-c3f6-4066-8cfc-8bfbecb41305/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/727556a7-8fde-4525-8c75-06c0d15111e7" + } + ] + }, + { + "label": { + "@none": [ + "109r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7accb513-3089-4ffe-99d6-c59ad557374d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f8c84cf9-a6a0-4112-aa6a-255d3d509d6d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2db66626-d95c-40a1-b64a-cd1250e5d5ea" + } + ] + }, + { + "label": { + "@none": [ + "109v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e2cc20dd-e129-4523-8cf8-607b839152f5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5cce004c-6707-4520-a4b2-845f3c9d86c1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e2cc20dd-e129-4523-8cf8-607b839152f5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e2cc20dd-e129-4523-8cf8-607b839152f5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e2cc20dd-e129-4523-8cf8-607b839152f5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d869b57-e76f-4a43-b0a3-3a2a18201a41" + } + ] + }, + { + "label": { + "@none": [ + "110r" + ] + }, + "height": 7520, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6020fdf-b2fe-4431-8219-7d28486b1cf3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d37c023b-950a-4b8f-8f43-df39bafcf3b3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6020fdf-b2fe-4431-8219-7d28486b1cf3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6020fdf-b2fe-4431-8219-7d28486b1cf3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6020fdf-b2fe-4431-8219-7d28486b1cf3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c85ad0aa-ba8d-416b-805f-c54ee2987bab" + } + ] + }, + { + "label": { + "@none": [ + "110v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d979acfa-6ee5-43bf-8d1e-eb71c23defa0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/708e3bbd-3b0d-473d-8260-0d8e3a31b2fd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff779467-9b72-4f9b-87fb-9e85c8c8f301" + } + ] + }, + { + "label": { + "@none": [ + "111r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b55c06c4-8257-4242-9eac-a8dce32925bf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d088bec6-fcee-44de-809a-34acdc9bf789", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b55c06c4-8257-4242-9eac-a8dce32925bf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b55c06c4-8257-4242-9eac-a8dce32925bf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b55c06c4-8257-4242-9eac-a8dce32925bf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/315e62e4-8968-40bc-aa3e-4b7d0650382c" + } + ] + }, + { + "label": { + "@none": [ + "111v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bc84e4e-278c-4436-a9e6-83505373f58a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/286b7ce0-98f6-48e4-b55c-dd6967ce94a3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bc84e4e-278c-4436-a9e6-83505373f58a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0bc84e4e-278c-4436-a9e6-83505373f58a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0bc84e4e-278c-4436-a9e6-83505373f58a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b132d893-a5ad-4852-87b7-f53b18263599" + } + ] + }, + { + "label": { + "@none": [ + "112r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8975ddf1-8759-443e-94e8-0b1b0a9712a5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6a487b24-55ea-4b4e-8925-f61d073ce0c6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8975ddf1-8759-443e-94e8-0b1b0a9712a5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8975ddf1-8759-443e-94e8-0b1b0a9712a5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8975ddf1-8759-443e-94e8-0b1b0a9712a5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3342b03b-394c-4f70-ae23-932eb5a02e4b" + } + ] + }, + { + "label": { + "@none": [ + "112v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a7171a7-b61a-4205-a185-3fbd542ca6f9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1495de3-f433-4981-ab9f-3b307698ae18", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a7171a7-b61a-4205-a185-3fbd542ca6f9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2a7171a7-b61a-4205-a185-3fbd542ca6f9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2a7171a7-b61a-4205-a185-3fbd542ca6f9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b4ee2e2-85d5-4a89-a299-6b836bf6e297" + } + ] + }, + { + "label": { + "@none": [ + "113r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9246f68e-e343-43a3-8c2d-8bf996ce78f3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/66be6a6c-a385-4203-9f5e-61897f9ff8e4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9246f68e-e343-43a3-8c2d-8bf996ce78f3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9246f68e-e343-43a3-8c2d-8bf996ce78f3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9246f68e-e343-43a3-8c2d-8bf996ce78f3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05f924ab-148f-4697-b8af-1137dd2252fa" + } + ] + }, + { + "label": { + "@none": [ + "113v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b255579-8008-4df1-9331-9e7d447c37f9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/96aa2ff9-6beb-4aa1-b328-bd4ed7d50135", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b255579-8008-4df1-9331-9e7d447c37f9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b255579-8008-4df1-9331-9e7d447c37f9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b255579-8008-4df1-9331-9e7d447c37f9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/263a86a7-5579-409b-a52c-a77d3440f142" + } + ] + }, + { + "label": { + "@none": [ + "114r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7280ac32-c395-41b8-95eb-1a543bb1c37c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/835dbdbe-fffc-4b5f-8a9d-e8dc7dd43e66/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f3af69b-3476-4fff-b12c-01a065f9d2a2" + } + ] + }, + { + "label": { + "@none": [ + "114v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bceda3e-6d14-45ac-9a8e-fb7e508db901.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7d977d76-841b-489a-af8b-45a56e316875", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0bceda3e-6d14-45ac-9a8e-fb7e508db901.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0bceda3e-6d14-45ac-9a8e-fb7e508db901", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0bceda3e-6d14-45ac-9a8e-fb7e508db901/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/326ca7b9-7424-4b5a-a6dc-a28c10278f65" + } + ] + }, + { + "label": { + "@none": [ + "115r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4486af6a-0bb1-4431-8aed-bb033595c3f2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f3e405d7-a67d-48d8-abdb-bf65b6435abf", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4486af6a-0bb1-4431-8aed-bb033595c3f2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4486af6a-0bb1-4431-8aed-bb033595c3f2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4486af6a-0bb1-4431-8aed-bb033595c3f2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ede49a03-14b3-4718-b430-1661600976c2" + } + ] + }, + { + "label": { + "@none": [ + "115v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6b43d070-4256-45cb-8f3d-abeeb039c812.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d795a4b4-7333-4853-aa3c-2e7c1c81540d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6b43d070-4256-45cb-8f3d-abeeb039c812.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6b43d070-4256-45cb-8f3d-abeeb039c812", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6b43d070-4256-45cb-8f3d-abeeb039c812/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fee25111-c64a-4f06-8660-44c1245f8592" + } + ] + }, + { + "label": { + "@none": [ + "116r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36d1a96e-cb8d-4307-b52b-664f4de05013.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1ca270ba-363f-4ca0-9c0f-a58b9b23a87c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36d1a96e-cb8d-4307-b52b-664f4de05013.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/36d1a96e-cb8d-4307-b52b-664f4de05013", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/36d1a96e-cb8d-4307-b52b-664f4de05013/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a10dc746-d138-4f86-bdb7-9ab6776e16d7" + } + ] + }, + { + "label": { + "@none": [ + "116v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/279ec11d-1a8d-4c03-89a8-23ebb56cecc4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/45464515-53c9-4b99-98c9-8458541dd5c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/279ec11d-1a8d-4c03-89a8-23ebb56cecc4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/279ec11d-1a8d-4c03-89a8-23ebb56cecc4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/279ec11d-1a8d-4c03-89a8-23ebb56cecc4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eda4ebdd-d4a5-4311-92f5-b89934900245" + } + ] + }, + { + "label": { + "@none": [ + "117r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/198a9d85-ebd5-4c54-85ed-5b35ea8ab769.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8ccda889-d647-4f89-aadc-ccda5e93722a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/198a9d85-ebd5-4c54-85ed-5b35ea8ab769.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/198a9d85-ebd5-4c54-85ed-5b35ea8ab769", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/198a9d85-ebd5-4c54-85ed-5b35ea8ab769/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e08fb437-1352-4617-88e5-fc363199e0f9" + } + ] + }, + { + "label": { + "@none": [ + "117v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02d26c72-4aec-45f5-9b06-e261c6eb223a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a34ff455-01c5-464e-b082-49d922b4a926", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/02d26c72-4aec-45f5-9b06-e261c6eb223a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/02d26c72-4aec-45f5-9b06-e261c6eb223a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/02d26c72-4aec-45f5-9b06-e261c6eb223a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88f647aa-c664-4dbb-8e41-ee7b139f55f7" + } + ] + }, + { + "label": { + "@none": [ + "118r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3e8bc8-9ce3-464d-896a-bde50efb17cd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b6826c10-6cb9-4c09-8955-1fb30e177482", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea3e8bc8-9ce3-464d-896a-bde50efb17cd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea3e8bc8-9ce3-464d-896a-bde50efb17cd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea3e8bc8-9ce3-464d-896a-bde50efb17cd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cda3bd0b-c331-412e-9d65-3f15ef293abb" + } + ] + }, + { + "label": { + "@none": [ + "118v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a4772862-fbc7-49fd-895e-2c1261eecb3e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a6eafb18-5ffc-46dd-ac81-3f6a4e3931cc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a4772862-fbc7-49fd-895e-2c1261eecb3e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a4772862-fbc7-49fd-895e-2c1261eecb3e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a4772862-fbc7-49fd-895e-2c1261eecb3e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68d386cd-dd1b-418d-ac56-efd47b3fd7de" + } + ] + }, + { + "label": { + "@none": [ + "119r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe42a5f-46d9-49f1-8882-7bc52d6465c5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e3bff618-58c6-4fd6-8426-2f4ebabce480", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe42a5f-46d9-49f1-8882-7bc52d6465c5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fe42a5f-46d9-49f1-8882-7bc52d6465c5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fe42a5f-46d9-49f1-8882-7bc52d6465c5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64d0cca4-c56f-4f3a-b604-17f3e0f1fdab" + } + ] + }, + { + "label": { + "@none": [ + "119v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/16019dd7-f485-46d0-889f-09e82612c1b4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/63a12992-1689-428b-a389-993ede11cb00", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/16019dd7-f485-46d0-889f-09e82612c1b4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/16019dd7-f485-46d0-889f-09e82612c1b4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/16019dd7-f485-46d0-889f-09e82612c1b4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10809591-1acc-4fac-838d-2730c99c611b" + } + ] + }, + { + "label": { + "@none": [ + "120r" + ] + }, + "height": 7520, + "width": 5124, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aca3eb32-1e70-42f1-94a7-f3a15e192ae8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/14392b7b-1f76-4e92-8b56-0747f85ae415", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aca3eb32-1e70-42f1-94a7-f3a15e192ae8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5124, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aca3eb32-1e70-42f1-94a7-f3a15e192ae8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aca3eb32-1e70-42f1-94a7-f3a15e192ae8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd9e7312-fdc4-4c62-896f-249f4a413eb9" + } + ] + }, + { + "label": { + "@none": [ + "120v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22082bf2-2aa8-474d-9ea3-056899ba5b24.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59a5cbe5-b252-4406-832a-82dca347e4fe", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/22082bf2-2aa8-474d-9ea3-056899ba5b24.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/22082bf2-2aa8-474d-9ea3-056899ba5b24", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/22082bf2-2aa8-474d-9ea3-056899ba5b24/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5224b64b-48d6-494e-a5f9-fc863d498c3a" + } + ] + }, + { + "label": { + "@none": [ + "121r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4e627ac1-d00e-4a05-83b6-073f4845da0d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a35191d0-f0ca-4220-8cd0-714dfa0abd45", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4e627ac1-d00e-4a05-83b6-073f4845da0d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4e627ac1-d00e-4a05-83b6-073f4845da0d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4e627ac1-d00e-4a05-83b6-073f4845da0d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11aa50c4-d781-4945-a24b-0de77a360478" + } + ] + }, + { + "label": { + "@none": [ + "121v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/33e2ba78-c609-4423-8e58-08b0b5438836", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e06c9aaa-9c6a-4b01-ba4e-e17ff2777dea/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0fa50bc-ba60-4d0e-a62f-4a890001e35e" + } + ] + }, + { + "label": { + "@none": [ + "122r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebeaf616-0117-4b13-9d9a-2922d93887a3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9d6e4b5-0451-4d83-bcfa-9ccea61ea2f1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebeaf616-0117-4b13-9d9a-2922d93887a3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ebeaf616-0117-4b13-9d9a-2922d93887a3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ebeaf616-0117-4b13-9d9a-2922d93887a3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad02599a-9961-42b5-8c89-42eaf79d0964" + } + ] + }, + { + "label": { + "@none": [ + "122v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5951fd7b-f02f-4520-853f-b4d420ecf830.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d591b8f7-d9ff-4b93-8fd4-6a897e0b401c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5951fd7b-f02f-4520-853f-b4d420ecf830.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5951fd7b-f02f-4520-853f-b4d420ecf830", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5951fd7b-f02f-4520-853f-b4d420ecf830/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d19796d2-77e6-4719-b203-326aafd4a052" + } + ] + }, + { + "label": { + "@none": [ + "123r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c11bd76-bac8-4ded-ae17-5710b8cda7a1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7f430991-b131-458f-99e3-6dca5eb02fa0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c11bd76-bac8-4ded-ae17-5710b8cda7a1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c11bd76-bac8-4ded-ae17-5710b8cda7a1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c11bd76-bac8-4ded-ae17-5710b8cda7a1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62655fde-b733-4fa9-a2b4-3421d6770672" + } + ] + }, + { + "label": { + "@none": [ + "123v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/206b95a6-6a3c-4315-80d8-c03cd0a340cd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1aa18923-1ce6-483c-a7f9-e4312d7f08be", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/206b95a6-6a3c-4315-80d8-c03cd0a340cd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/206b95a6-6a3c-4315-80d8-c03cd0a340cd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/206b95a6-6a3c-4315-80d8-c03cd0a340cd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4010c834-bcf2-485f-bad9-a0b1e4647c5c" + } + ] + }, + { + "label": { + "@none": [ + "124r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2856114b-97df-420f-b2dd-a20aca6e847f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/04a669d0-2293-4e55-b7fb-359950fb857c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2856114b-97df-420f-b2dd-a20aca6e847f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2856114b-97df-420f-b2dd-a20aca6e847f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2856114b-97df-420f-b2dd-a20aca6e847f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aea69578-45fb-47f1-8a93-a3388233a116" + } + ] + }, + { + "label": { + "@none": [ + "124v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b4f651a-e60c-48a3-a679-0c235eda9587.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6a3b1470-ac8a-41aa-936d-b8c7147e71a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b4f651a-e60c-48a3-a679-0c235eda9587.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b4f651a-e60c-48a3-a679-0c235eda9587", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b4f651a-e60c-48a3-a679-0c235eda9587/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96128fb5-eb62-411a-9b6c-c2fbf8fb376e" + } + ] + }, + { + "label": { + "@none": [ + "125r" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/41fdfdf6-4be7-42bb-b134-804defa9758c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2693dbb4-5923-41db-9613-9fcfc1271a3e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/41fdfdf6-4be7-42bb-b134-804defa9758c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/41fdfdf6-4be7-42bb-b134-804defa9758c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/41fdfdf6-4be7-42bb-b134-804defa9758c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/434a6cc0-9bbb-4250-9f6a-3df8a60d2fe2" + } + ] + }, + { + "label": { + "@none": [ + "125v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cf91903-8ded-4c8a-9cad-9d75d15d823a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1196d59c-93e5-414f-b53f-2fb6092163de", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cf91903-8ded-4c8a-9cad-9d75d15d823a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cf91903-8ded-4c8a-9cad-9d75d15d823a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cf91903-8ded-4c8a-9cad-9d75d15d823a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04ee51d3-a262-4061-8e21-8d5d4a9f7038" + } + ] + }, + { + "label": { + "@none": [ + "126r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/67ad3eb8-c53b-48b1-b21c-c9a871399a9c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/743bbe01-1ffd-4837-a651-54b6169f35b4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/67ad3eb8-c53b-48b1-b21c-c9a871399a9c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/67ad3eb8-c53b-48b1-b21c-c9a871399a9c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/67ad3eb8-c53b-48b1-b21c-c9a871399a9c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/21d5fab7-6e93-4bbd-a254-85671d879c03" + } + ] + }, + { + "label": { + "@none": [ + "126v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a336129a-c137-4216-9c49-a5051bff7abd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c5cf3a68-09d6-4c35-9f5e-9ffda43b7716/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fff3370c-6950-4322-a071-d063b2cf734b" + } + ] + }, + { + "label": { + "@none": [ + "127r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cc638fc-8104-4d89-a953-c789d1f8d709.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/717cebcb-2b2f-4f67-ad61-5e5d1bf7ef65", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cc638fc-8104-4d89-a953-c789d1f8d709.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cc638fc-8104-4d89-a953-c789d1f8d709", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cc638fc-8104-4d89-a953-c789d1f8d709/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38742e61-2019-4b54-b975-bcf6b19b158b" + } + ] + }, + { + "label": { + "@none": [ + "127v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a7e5fda3-3b6a-4af5-9254-8dd3afb07670.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e6c341fb-164e-4700-8006-eabdc1e30bf9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a7e5fda3-3b6a-4af5-9254-8dd3afb07670.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a7e5fda3-3b6a-4af5-9254-8dd3afb07670", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a7e5fda3-3b6a-4af5-9254-8dd3afb07670/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4080a345-d056-4c74-a06d-5b7cd19058ca" + } + ] + }, + { + "label": { + "@none": [ + "128r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ca9ee054-cf28-4bee-998d-eaf372526204.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/991ee6bd-5975-4975-936a-21554ab71184", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ca9ee054-cf28-4bee-998d-eaf372526204.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ca9ee054-cf28-4bee-998d-eaf372526204", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ca9ee054-cf28-4bee-998d-eaf372526204/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4fc13cb2-ff5e-49b9-834c-f6fe80c27371" + } + ] + }, + { + "label": { + "@none": [ + "128v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fade45dd-a622-4c78-b53f-cddb598620b5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3627195a-54eb-4819-bceb-dd72b9d1a45a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fade45dd-a622-4c78-b53f-cddb598620b5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fade45dd-a622-4c78-b53f-cddb598620b5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fade45dd-a622-4c78-b53f-cddb598620b5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b3953d7-5a9d-48b6-bd79-58cbb224b195" + } + ] + }, + { + "label": { + "@none": [ + "129r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f4ba98e6-ba36-4488-acf1-4decd3d63a3d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/782c5b0c-0323-4307-ba10-dc0d82ea5be1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f4ba98e6-ba36-4488-acf1-4decd3d63a3d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f4ba98e6-ba36-4488-acf1-4decd3d63a3d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f4ba98e6-ba36-4488-acf1-4decd3d63a3d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91dfe832-26f6-4824-9bea-4d0ab07b3426" + } + ] + }, + { + "label": { + "@none": [ + "129v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea9617f9-2156-44c6-a8ec-2200b1bd7409.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/686f9dec-c03c-4bf4-9878-6d03c8c1933d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ea9617f9-2156-44c6-a8ec-2200b1bd7409.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea9617f9-2156-44c6-a8ec-2200b1bd7409", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ea9617f9-2156-44c6-a8ec-2200b1bd7409/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e8f5fda4-4ff4-4ced-a27c-e9a30e8ae32e" + } + ] + }, + { + "label": { + "@none": [ + "130r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6bad1574-ed46-461c-96fc-850e964842de.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4d7ae890-6bc9-4507-9479-7e0ce005361e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6bad1574-ed46-461c-96fc-850e964842de.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6bad1574-ed46-461c-96fc-850e964842de", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6bad1574-ed46-461c-96fc-850e964842de/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbc5b1ef-e551-466b-b599-b27615d4d97b" + } + ] + }, + { + "label": { + "@none": [ + "130v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13cdbedb-edde-49e6-8753-fb79763b8ce1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/69f199c3-e1e3-4546-aa2b-973e84480256", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/13cdbedb-edde-49e6-8753-fb79763b8ce1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/13cdbedb-edde-49e6-8753-fb79763b8ce1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/13cdbedb-edde-49e6-8753-fb79763b8ce1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0dd9aa82-de3a-4a4e-b9ca-c67106ed7aa6" + } + ] + }, + { + "label": { + "@none": [ + "131r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1e4412e-4a43-4f9b-8698-896ec9f040fc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4117062d-552f-4e21-a5b0-1bf2f3176d10", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d1e4412e-4a43-4f9b-8698-896ec9f040fc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1e4412e-4a43-4f9b-8698-896ec9f040fc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d1e4412e-4a43-4f9b-8698-896ec9f040fc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e26202f8-9e0b-4492-bca9-278c06e127bd" + } + ] + }, + { + "label": { + "@none": [ + "131v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/965053fc-952c-4b68-afe4-a1703c40bd17.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0727e32c-77bf-4752-8f2d-c887d648c1f4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/965053fc-952c-4b68-afe4-a1703c40bd17.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/965053fc-952c-4b68-afe4-a1703c40bd17", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/965053fc-952c-4b68-afe4-a1703c40bd17/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8316d563-7896-4e59-9952-8ca5672c49af" + } + ] + }, + { + "label": { + "@none": [ + "132r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/39428e8c-780a-4e80-916a-01cab71dd240.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/80907c9f-5214-4c0a-8059-9e6d0f801bd8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/39428e8c-780a-4e80-916a-01cab71dd240.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/39428e8c-780a-4e80-916a-01cab71dd240", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/39428e8c-780a-4e80-916a-01cab71dd240/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc853fbd-1bef-406a-9dc6-0ddc6110f358" + } + ] + }, + { + "label": { + "@none": [ + "132v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b3f95fd-1c07-4941-8144-9d1994c5d20d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8650f42c-d98c-4d3f-a9ec-bb7a1aaea692", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b3f95fd-1c07-4941-8144-9d1994c5d20d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b3f95fd-1c07-4941-8144-9d1994c5d20d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b3f95fd-1c07-4941-8144-9d1994c5d20d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c883a27a-4cda-4272-83e3-01665b44af9e" + } + ] + }, + { + "label": { + "@none": [ + "133r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8885585a-d77f-4d6b-a23a-61f81a84c964.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/91e306da-8883-4263-98bc-d5377db36d9d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8885585a-d77f-4d6b-a23a-61f81a84c964.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8885585a-d77f-4d6b-a23a-61f81a84c964", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8885585a-d77f-4d6b-a23a-61f81a84c964/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/452537ce-4c95-4121-b328-78cbf790615f" + } + ] + }, + { + "label": { + "@none": [ + "133v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b37de8bd-c54f-464d-812a-2d4bfec37cb6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/63db4f97-7a5c-4171-97d4-fbe67bd891e3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b37de8bd-c54f-464d-812a-2d4bfec37cb6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b37de8bd-c54f-464d-812a-2d4bfec37cb6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b37de8bd-c54f-464d-812a-2d4bfec37cb6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4867ea63-cf89-410b-ab35-ec5502ac7958" + } + ] + }, + { + "label": { + "@none": [ + "134r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1d5c67b5-a9f7-4771-8001-66c4b0b43650", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f7d53a3-77c1-45b9-a6e8-c5c5511c4c8a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fdd2095-3a11-40f0-ae4c-be6cb0703d19" + } + ] + }, + { + "label": { + "@none": [ + "134v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2a8b7ad5-ec3f-4de7-8a40-2306fa5f4684", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5d6d3ff7-cda3-4091-85b0-2f8f7f4ddc84/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/effba6fb-17f6-4cad-9b0c-d5294e6f9d8a" + } + ] + }, + { + "label": { + "@none": [ + "135r" + ] + }, + "height": 7520, + "width": 5220, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1aee3d82-0566-4fa6-9432-5536ae94c15f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/41b6d7b4-6c32-4639-9461-720d684828cd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1aee3d82-0566-4fa6-9432-5536ae94c15f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5220, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1aee3d82-0566-4fa6-9432-5536ae94c15f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1aee3d82-0566-4fa6-9432-5536ae94c15f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd57b3e5-8421-4d44-ad30-3af7a4306460" + } + ] + }, + { + "label": { + "@none": [ + "135v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5956bc98-d5cd-4fe2-9e37-03461d4694ba.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ae9dc7ca-7705-48b2-af57-82c3abe4fc38", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5956bc98-d5cd-4fe2-9e37-03461d4694ba.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5956bc98-d5cd-4fe2-9e37-03461d4694ba", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5956bc98-d5cd-4fe2-9e37-03461d4694ba/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32556a53-c6d2-4202-92c9-6040f67227f6" + } + ] + }, + { + "label": { + "@none": [ + "136r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49ba497d-9d51-44fe-a09b-1b8e82f9248a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ea22a671-a697-4c4e-a375-6162781338a2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49ba497d-9d51-44fe-a09b-1b8e82f9248a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/49ba497d-9d51-44fe-a09b-1b8e82f9248a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/49ba497d-9d51-44fe-a09b-1b8e82f9248a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d266ced8-c943-481b-9048-849befe0d4c5" + } + ] + }, + { + "label": { + "@none": [ + "136v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/33b8af22-582d-4378-9f5d-90c6f44bda54", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3bf9d3dc-36d3-4228-a3ad-38f5f2a94c25/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb8eea36-747b-4c59-a85b-07468db8fd97" + } + ] + }, + { + "label": { + "@none": [ + "137r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e190612-6f1f-44f9-b57c-6616c1ed529e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7150f80a-b87c-4442-8d58-e5ac1de61bca", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e190612-6f1f-44f9-b57c-6616c1ed529e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e190612-6f1f-44f9-b57c-6616c1ed529e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e190612-6f1f-44f9-b57c-6616c1ed529e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35b91f58-7a22-4e6f-a9f1-1ae1d292d1f0" + } + ] + }, + { + "label": { + "@none": [ + "137v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b967cdd-f32f-4104-b5db-ad5780e0607a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ead9fb99-6b4a-4444-a019-1ef5e5088b7d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b967cdd-f32f-4104-b5db-ad5780e0607a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b967cdd-f32f-4104-b5db-ad5780e0607a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b967cdd-f32f-4104-b5db-ad5780e0607a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a4e4398-3be9-493f-8eb3-f73444584284" + } + ] + }, + { + "label": { + "@none": [ + "138r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25155359-022b-4a49-a1b9-e68373579eea.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ddc6d5b4-7d17-4332-bd4e-4a590756c3bb", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25155359-022b-4a49-a1b9-e68373579eea.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25155359-022b-4a49-a1b9-e68373579eea", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25155359-022b-4a49-a1b9-e68373579eea/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bec1fe85-2e8a-4eed-85ee-65e2cfd451c4" + } + ] + }, + { + "label": { + "@none": [ + "138v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52bb594e-b23b-4e82-80fb-c03ce144c2d0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6534099a-b06c-4d59-bcd2-de702244f88e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52bb594e-b23b-4e82-80fb-c03ce144c2d0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/52bb594e-b23b-4e82-80fb-c03ce144c2d0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/52bb594e-b23b-4e82-80fb-c03ce144c2d0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3fa96bd3-4cbf-4314-881a-7ef4c987a25d" + } + ] + }, + { + "label": { + "@none": [ + "139r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/95be1c13-f77a-4982-918c-e6dd06696d11.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/115b6650-a1df-4df8-8da5-8a6add816a2c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/95be1c13-f77a-4982-918c-e6dd06696d11.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/95be1c13-f77a-4982-918c-e6dd06696d11", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/95be1c13-f77a-4982-918c-e6dd06696d11/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e74e02b-5bee-40e2-98bf-d873c9c2f46d" + } + ] + }, + { + "label": { + "@none": [ + "139v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fd7ff25a-c14c-455b-8de2-bf0843b22155.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7505c957-dfc4-4f0b-9e42-ad0f9169f7c7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fd7ff25a-c14c-455b-8de2-bf0843b22155.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fd7ff25a-c14c-455b-8de2-bf0843b22155", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fd7ff25a-c14c-455b-8de2-bf0843b22155/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18d0b063-5078-4114-9bd4-65b12c08b476" + } + ] + }, + { + "label": { + "@none": [ + "140r" + ] + }, + "height": 7508, + "width": 5172, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/832c218b-edfc-48cd-9774-b2b74fe74977.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c10106d-37fe-4c98-afa0-6912547b6e7a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/832c218b-edfc-48cd-9774-b2b74fe74977.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5172, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/832c218b-edfc-48cd-9774-b2b74fe74977", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/832c218b-edfc-48cd-9774-b2b74fe74977/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eeae467c-fa96-4b43-9393-68d40b7f3e2d" + } + ] + }, + { + "label": { + "@none": [ + "140v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f6d95e9d-86af-449b-8268-0f0beddf539d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/792c75e0-ffb2-4ae0-9a6b-ea504af3c77f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9fc5c245-4f59-452f-a20f-c28c9c6d100e" + } + ] + }, + { + "label": { + "@none": [ + "141r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dfd92e5a-e995-4273-9c3e-710c37259d98.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2c44d5e9-d853-45a5-baa3-42056e96a091", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dfd92e5a-e995-4273-9c3e-710c37259d98.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dfd92e5a-e995-4273-9c3e-710c37259d98", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dfd92e5a-e995-4273-9c3e-710c37259d98/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff9828e1-4db6-4207-86c5-3f2f3cc6ae0e" + } + ] + }, + { + "label": { + "@none": [ + "141v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f539557d-23aa-497d-afca-dfd78a6bfbe2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4c722a6c-103e-49ba-aac4-343456bb70b6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f539557d-23aa-497d-afca-dfd78a6bfbe2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f539557d-23aa-497d-afca-dfd78a6bfbe2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f539557d-23aa-497d-afca-dfd78a6bfbe2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17c9be4a-cedb-47c8-ad7a-2ff9e3adcbd0" + } + ] + }, + { + "label": { + "@none": [ + "142r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e70b4a3d-13fe-43f2-a3f5-26fa63028923.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/394ca79b-2c74-453a-a705-4e54a7dd73a2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e70b4a3d-13fe-43f2-a3f5-26fa63028923.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e70b4a3d-13fe-43f2-a3f5-26fa63028923", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e70b4a3d-13fe-43f2-a3f5-26fa63028923/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7effbd7-6544-4fb8-82ab-249b24473cd9" + } + ] + }, + { + "label": { + "@none": [ + "142v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fa3663b9-d6fa-4006-bb1c-612054be67ca.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/53476b98-4fca-4759-b906-03f7288e8aa0", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fa3663b9-d6fa-4006-bb1c-612054be67ca.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fa3663b9-d6fa-4006-bb1c-612054be67ca", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fa3663b9-d6fa-4006-bb1c-612054be67ca/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e2637e4e-6d5a-43e1-a63e-fabccccbbc9d" + } + ] + }, + { + "label": { + "@none": [ + "143r" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8579d21a-da6a-4214-b889-bc93047db96d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d2183c03-2f28-4ddf-a959-db3ddc5b1311", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8579d21a-da6a-4214-b889-bc93047db96d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8579d21a-da6a-4214-b889-bc93047db96d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8579d21a-da6a-4214-b889-bc93047db96d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3fdff09d-2db2-4a00-bddc-375159bd0bf7" + } + ] + }, + { + "label": { + "@none": [ + "143v" + ] + }, + "height": 7520, + "width": 5292, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/585b4d74-22b4-423d-8a58-337482d1571b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1a4e53a8-3698-4cd5-9597-7a8da1de303e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/585b4d74-22b4-423d-8a58-337482d1571b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5292, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/585b4d74-22b4-423d-8a58-337482d1571b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/585b4d74-22b4-423d-8a58-337482d1571b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96831e54-27f2-422e-875b-8d54ab6e572f" + } + ] + }, + { + "label": { + "@none": [ + "144r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cff5cf70-0c2b-43ff-b473-93f7818f4251.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b9711ab-d901-4011-a73b-b7bb7a5c5f5a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cff5cf70-0c2b-43ff-b473-93f7818f4251.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cff5cf70-0c2b-43ff-b473-93f7818f4251", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cff5cf70-0c2b-43ff-b473-93f7818f4251/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a923458-ca34-4a79-beef-55c8f4d8e340" + } + ] + }, + { + "label": { + "@none": [ + "144v" + ] + }, + "height": 7520, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/875496d5-57ea-48f8-af6f-90846e8c023e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ea9cfa9c-4392-4088-a6f7-f57ec061a0d3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/875496d5-57ea-48f8-af6f-90846e8c023e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/875496d5-57ea-48f8-af6f-90846e8c023e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/875496d5-57ea-48f8-af6f-90846e8c023e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab595a38-fd66-4fb9-a12e-837ee9eed65e" + } + ] + }, + { + "label": { + "@none": [ + "145r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c7889b9c-6172-47e9-a147-5820c56981db.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3ab9aca3-eaf6-40d7-ad79-40e57b0aefe8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c7889b9c-6172-47e9-a147-5820c56981db.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c7889b9c-6172-47e9-a147-5820c56981db", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c7889b9c-6172-47e9-a147-5820c56981db/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a118726f-6fe0-488c-a868-2827812ad655" + } + ] + }, + { + "label": { + "@none": [ + "145v" + ] + }, + "height": 7520, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9fc4371b-fa5a-4095-ad62-b55153fbc6f3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a2f99b3d-0ace-4298-a9c8-8848d6b17458", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9fc4371b-fa5a-4095-ad62-b55153fbc6f3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9fc4371b-fa5a-4095-ad62-b55153fbc6f3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9fc4371b-fa5a-4095-ad62-b55153fbc6f3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e3e2d96-87d3-4387-9ec3-f41be039a838" + } + ] + }, + { + "label": { + "@none": [ + "146r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bf756a1-684d-4ddc-a9da-30eee210399f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a5b95539-2782-4bee-b678-3586d4bdfbd4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bf756a1-684d-4ddc-a9da-30eee210399f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5bf756a1-684d-4ddc-a9da-30eee210399f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5bf756a1-684d-4ddc-a9da-30eee210399f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e47038b5-929e-4644-9a9b-31737c1d3097" + } + ] + }, + { + "label": { + "@none": [ + "146v" + ] + }, + "height": 7520, + "width": 5196, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3054518c-2199-44f9-a268-6e79d1fa8657.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f45fadc9-8f63-4d7b-9ff9-c468378f7cb6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3054518c-2199-44f9-a268-6e79d1fa8657.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5196, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3054518c-2199-44f9-a268-6e79d1fa8657", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3054518c-2199-44f9-a268-6e79d1fa8657/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6eacef75-ace2-4d3d-9dff-2c4e7a069df3" + } + ] + }, + { + "label": { + "@none": [ + "147r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/319c5d2f-5ecc-41e6-97eb-6bbe0c879ef8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1a90aae7-3f59-4afe-a1c5-f1c3d4ff7b7f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a1ef1831-23af-418f-a326-8706ed03170e" + } + ] + }, + { + "label": { + "@none": [ + "147v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4affb95b-9f12-43f6-8dc1-6eba18749c23.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a29599e7-ce92-45eb-b938-73706abee1e4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4affb95b-9f12-43f6-8dc1-6eba18749c23.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4affb95b-9f12-43f6-8dc1-6eba18749c23", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4affb95b-9f12-43f6-8dc1-6eba18749c23/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/653fe17e-237a-4d91-bbca-986a28e0a493" + } + ] + }, + { + "label": { + "@none": [ + "148r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/444b2254-b73a-4b69-befe-fd93f45e4fdc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b47a670d-06f6-47c6-998f-7715e4efed2d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/444b2254-b73a-4b69-befe-fd93f45e4fdc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/444b2254-b73a-4b69-befe-fd93f45e4fdc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/444b2254-b73a-4b69-befe-fd93f45e4fdc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b7510a9f-beef-43ec-9b97-ac1dcc50b856" + } + ] + }, + { + "label": { + "@none": [ + "148v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1adbbffe-124b-410b-9c3b-269222df7954", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7f94cfe5-09f0-4b8b-9f27-1231bf4cdf4f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07b354dc-2547-4d5c-a117-b18b2d2a0e69" + } + ] + }, + { + "label": { + "@none": [ + "149r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/778e0ff2-7758-4862-a7d7-c471540332e7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7488bc4f-003d-4f46-8553-133716bc4b4f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/778e0ff2-7758-4862-a7d7-c471540332e7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/778e0ff2-7758-4862-a7d7-c471540332e7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/778e0ff2-7758-4862-a7d7-c471540332e7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a78d8295-14da-4f6f-ac10-a8d52eebd64f" + } + ] + }, + { + "label": { + "@none": [ + "149v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77dac026-f7f9-41b3-82dc-e76406c407d0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d364dcb8-b258-452c-a5ea-8ec8d2077a2d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77dac026-f7f9-41b3-82dc-e76406c407d0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77dac026-f7f9-41b3-82dc-e76406c407d0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77dac026-f7f9-41b3-82dc-e76406c407d0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73409a26-65b6-4873-8ed1-f15b969850c7" + } + ] + }, + { + "label": { + "@none": [ + "150r" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52a46e68-40fc-492e-9adf-33ce4d840217.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eba98b2d-e6f2-4b2f-9350-322c57e9d427", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/52a46e68-40fc-492e-9adf-33ce4d840217.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/52a46e68-40fc-492e-9adf-33ce4d840217", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/52a46e68-40fc-492e-9adf-33ce4d840217/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7546cf7-3b51-45b4-a215-af8bd1e111eb" + } + ] + }, + { + "label": { + "@none": [ + "150v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9baf653-e405-4ef2-9ee6-e5e95b633b99.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c7901acd-ad5c-4d50-8c23-2e9cc30fa5a6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9baf653-e405-4ef2-9ee6-e5e95b633b99.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9baf653-e405-4ef2-9ee6-e5e95b633b99", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9baf653-e405-4ef2-9ee6-e5e95b633b99/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/017a0476-871c-4697-a259-06f57c6bb520" + } + ] + }, + { + "label": { + "@none": [ + "151r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76119670-1005-47e0-8967-11720d15de95.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9ac91f1b-7c17-4013-845d-b8f6546f3bdc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76119670-1005-47e0-8967-11720d15de95.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76119670-1005-47e0-8967-11720d15de95", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76119670-1005-47e0-8967-11720d15de95/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/106b5a7b-4b87-41d6-b209-62ad761a8cc9" + } + ] + }, + { + "label": { + "@none": [ + "151v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab32e855-8f56-4cce-992d-a5eaebcb33ff.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/16881adb-47c2-4ceb-886f-27ad1da1bbd6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ab32e855-8f56-4cce-992d-a5eaebcb33ff.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ab32e855-8f56-4cce-992d-a5eaebcb33ff", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ab32e855-8f56-4cce-992d-a5eaebcb33ff/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d922256-03f1-4d96-a4af-96324f3ad7ff" + } + ] + }, + { + "label": { + "@none": [ + "152r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/04a8371d-6cc6-4994-ab92-70513827a491.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ceae47cb-4dbb-42a8-a5e6-83f1ae704a49", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/04a8371d-6cc6-4994-ab92-70513827a491.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/04a8371d-6cc6-4994-ab92-70513827a491", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/04a8371d-6cc6-4994-ab92-70513827a491/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c90a7558-b240-4b64-8cb4-d8466bbe26ff" + } + ] + }, + { + "label": { + "@none": [ + "152v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/097cbaa1-0cdc-40ca-964c-7cb1c3af1893.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9502e5b5-6874-4835-9dd3-373fd8273ee5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/097cbaa1-0cdc-40ca-964c-7cb1c3af1893.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/097cbaa1-0cdc-40ca-964c-7cb1c3af1893", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/097cbaa1-0cdc-40ca-964c-7cb1c3af1893/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9b13286-d6c5-4a82-8f08-900b53b4f183" + } + ] + }, + { + "label": { + "@none": [ + "153r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dec21ff8-d64b-44a2-b96e-236a6d9a981f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/62eab29e-4507-4f74-8219-c7bf03e2e5cd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dec21ff8-d64b-44a2-b96e-236a6d9a981f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dec21ff8-d64b-44a2-b96e-236a6d9a981f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dec21ff8-d64b-44a2-b96e-236a6d9a981f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1347d869-24f2-46f9-bb83-7f95d65652b1" + } + ] + }, + { + "label": { + "@none": [ + "153v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5de9f01-1d6f-41e8-b867-004ea887cc15.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b720d678-c072-4ac4-91b5-f34539605af7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5de9f01-1d6f-41e8-b867-004ea887cc15.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5de9f01-1d6f-41e8-b867-004ea887cc15", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5de9f01-1d6f-41e8-b867-004ea887cc15/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3ad49bc-3f49-46a4-ba76-6cb3b7d0f328" + } + ] + }, + { + "label": { + "@none": [ + "154r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff96ac09-c73b-410f-9cda-39ab1f18ecb1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2d2fa3c5-07c8-4268-a88c-623693aa60a7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff96ac09-c73b-410f-9cda-39ab1f18ecb1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff96ac09-c73b-410f-9cda-39ab1f18ecb1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff96ac09-c73b-410f-9cda-39ab1f18ecb1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29e9492f-1a35-4101-af87-c33bfd56508d" + } + ] + }, + { + "label": { + "@none": [ + "154v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cedaa258-3a7a-4d61-9a25-acd63925e44b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8f36152c-bb24-4a83-9087-7f62bb9a5f8a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cedaa258-3a7a-4d61-9a25-acd63925e44b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cedaa258-3a7a-4d61-9a25-acd63925e44b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cedaa258-3a7a-4d61-9a25-acd63925e44b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72c0882d-0c8c-4ac3-8ab9-3cec4f3a8f5c" + } + ] + }, + { + "label": { + "@none": [ + "155r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b298de49-dd25-49e3-9011-8f2591ec92e0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d00a6587-7b9d-4fa8-82bb-888afba1603a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b298de49-dd25-49e3-9011-8f2591ec92e0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b298de49-dd25-49e3-9011-8f2591ec92e0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b298de49-dd25-49e3-9011-8f2591ec92e0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03395a46-aad2-4738-9d79-704bd12b4305" + } + ] + }, + { + "label": { + "@none": [ + "155v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4ed8c63a-948a-494a-9e59-b62dd338dac9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bf3b1776-f1c6-44ac-86ba-75caff4d2432", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4ed8c63a-948a-494a-9e59-b62dd338dac9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4ed8c63a-948a-494a-9e59-b62dd338dac9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4ed8c63a-948a-494a-9e59-b62dd338dac9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0cc6487-818c-48e8-942d-1440b0115e16" + } + ] + }, + { + "label": { + "@none": [ + "156r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03746518-3148-43df-8a4e-cc37fb356290.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e016c285-a767-4535-b5c1-c98ccc45fbf9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/03746518-3148-43df-8a4e-cc37fb356290.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/03746518-3148-43df-8a4e-cc37fb356290", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/03746518-3148-43df-8a4e-cc37fb356290/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f4b45bcf-d149-415f-a280-f561b5495f2f" + } + ] + }, + { + "label": { + "@none": [ + "156v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/10d93369-5e10-4ec7-b98f-e5597ef46aa4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bf07db5d-7a65-4fde-85aa-255a0622f177", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/10d93369-5e10-4ec7-b98f-e5597ef46aa4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/10d93369-5e10-4ec7-b98f-e5597ef46aa4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/10d93369-5e10-4ec7-b98f-e5597ef46aa4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/255da521-abac-4f22-86dc-d29a63f1e53e" + } + ] + }, + { + "label": { + "@none": [ + "157r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ae6c1a50-02a4-4c66-bc21-0c0df73f86e8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4cd1adc3-82b2-4d5f-8af5-9abf0aabc014/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ae6253f-9072-4dd9-9026-d1c0f4daffc8" + } + ] + }, + { + "label": { + "@none": [ + "157v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fe2248d-ed9e-4c80-864e-4585a04a0cf7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e119b31b-a08f-4fdc-aea9-82dfada0e4c3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fe2248d-ed9e-4c80-864e-4585a04a0cf7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fe2248d-ed9e-4c80-864e-4585a04a0cf7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fe2248d-ed9e-4c80-864e-4585a04a0cf7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d9a0b84-e917-4cd8-9217-23ff6ccad082" + } + ] + }, + { + "label": { + "@none": [ + "158r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/78e2130a-0431-47d3-b322-c680f4fa321e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/77089de8-5516-4a6b-94d2-cc3beb8495c4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/78e2130a-0431-47d3-b322-c680f4fa321e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/78e2130a-0431-47d3-b322-c680f4fa321e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/78e2130a-0431-47d3-b322-c680f4fa321e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5cb4799a-cbfc-4fde-b6a4-ce88b924565f" + } + ] + }, + { + "label": { + "@none": [ + "158v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e9eaf53-d78f-406c-9e4d-05e5caa37678.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59b41174-a02e-4bdf-85f8-8d2a1227455c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e9eaf53-d78f-406c-9e4d-05e5caa37678.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e9eaf53-d78f-406c-9e4d-05e5caa37678", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e9eaf53-d78f-406c-9e4d-05e5caa37678/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0af71b6-9ab5-47cd-9a12-15b618c01b75" + } + ] + }, + { + "label": { + "@none": [ + "159r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/448ca725-b4ed-468e-9b2c-db8c1ed8335e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c24c6680-b573-421f-a8ba-3844141b6c79", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/448ca725-b4ed-468e-9b2c-db8c1ed8335e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/448ca725-b4ed-468e-9b2c-db8c1ed8335e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/448ca725-b4ed-468e-9b2c-db8c1ed8335e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/49b4f4a9-06dc-4b09-ac15-75dc3a9a2bd5" + } + ] + }, + { + "label": { + "@none": [ + "159v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/de1e6901-772c-47ac-afd0-4614a15390ec.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7958ac22-2e29-4b93-b848-a287a4b38bc7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/de1e6901-772c-47ac-afd0-4614a15390ec.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/de1e6901-772c-47ac-afd0-4614a15390ec", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/de1e6901-772c-47ac-afd0-4614a15390ec/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9eb9423c-bd4d-4d65-a993-0b6ea5ddbde0" + } + ] + }, + { + "label": { + "@none": [ + "160r" + ] + }, + "height": 7520, + "width": 5304, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0afb121-0377-4e61-a90b-e2337ad084d9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d59fb2a-32e5-4463-a6f6-dc7f40082f7c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8c9bd2e-39e6-42f8-b7c3-bbb04d2647ea" + } + ] + }, + { + "label": { + "@none": [ + "160v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bf46ca62-8e4c-4c56-b2e7-55962807b5ee.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fb00aa33-7fc1-43d8-a8da-53e8dd535b7e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bf46ca62-8e4c-4c56-b2e7-55962807b5ee.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bf46ca62-8e4c-4c56-b2e7-55962807b5ee", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bf46ca62-8e4c-4c56-b2e7-55962807b5ee/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98398304-e093-4fe6-8a18-362722bca59b" + } + ] + }, + { + "label": { + "@none": [ + "161r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2107e134-6e1f-43c5-ad19-8ae9bd955388.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4eb5fd75-2b14-4c87-bd09-859f1ca8ed2f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2107e134-6e1f-43c5-ad19-8ae9bd955388.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2107e134-6e1f-43c5-ad19-8ae9bd955388", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2107e134-6e1f-43c5-ad19-8ae9bd955388/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc2ace21-7402-4a24-b002-74b06f3ed35f" + } + ] + }, + { + "label": { + "@none": [ + "161v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88df527e-4d42-478d-81f4-223b6b741d34.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a4ebeb0c-6ce9-4d0e-b082-c036b710bbb7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88df527e-4d42-478d-81f4-223b6b741d34.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/88df527e-4d42-478d-81f4-223b6b741d34", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/88df527e-4d42-478d-81f4-223b6b741d34/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1099576-37ef-40ca-94c6-30e62e34de09" + } + ] + }, + { + "label": { + "@none": [ + "162r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/33f6373c-42f5-44d5-bc00-fb73341ac4a0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d9c5a560-c094-4612-8a68-989adf71b111", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/33f6373c-42f5-44d5-bc00-fb73341ac4a0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/33f6373c-42f5-44d5-bc00-fb73341ac4a0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/33f6373c-42f5-44d5-bc00-fb73341ac4a0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e2b44b6-1e6f-4f59-9996-e4a82c3e3bd3" + } + ] + }, + { + "label": { + "@none": [ + "162v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48e368a1-e825-403d-a0d6-91d7c0c33a13.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e54742f1-5f57-446d-bdba-4d3eb69a8bda", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48e368a1-e825-403d-a0d6-91d7c0c33a13.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48e368a1-e825-403d-a0d6-91d7c0c33a13", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48e368a1-e825-403d-a0d6-91d7c0c33a13/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/248f07db-122c-4075-8867-d89260b7bb4c" + } + ] + }, + { + "label": { + "@none": [ + "163r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f6a0228-de63-4c98-8443-461314967f6b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/93ce6f6e-96b5-4106-93d7-b951e8de9800", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0f6a0228-de63-4c98-8443-461314967f6b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0f6a0228-de63-4c98-8443-461314967f6b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0f6a0228-de63-4c98-8443-461314967f6b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e966d8d-bf8b-485a-bb7d-7207b2778035" + } + ] + }, + { + "label": { + "@none": [ + "163v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7ce033bc-cbde-4509-968a-d5f43a1e29bb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5ddaea97-03c6-45eb-98dd-39dcf356c916", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7ce033bc-cbde-4509-968a-d5f43a1e29bb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7ce033bc-cbde-4509-968a-d5f43a1e29bb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7ce033bc-cbde-4509-968a-d5f43a1e29bb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9c67467-86ce-4a8d-8127-94c59e196bf1" + } + ] + }, + { + "label": { + "@none": [ + "164r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/870057dc-dc28-487c-b04b-1aa07edbc7fc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/02a8230e-7cad-463b-b59a-9c9c19d3047d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/870057dc-dc28-487c-b04b-1aa07edbc7fc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/870057dc-dc28-487c-b04b-1aa07edbc7fc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/870057dc-dc28-487c-b04b-1aa07edbc7fc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68b4526d-6d7f-498c-85cd-0335ed53148b" + } + ] + }, + { + "label": { + "@none": [ + "164v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b6d73f-ea20-4993-a6b9-a786caf1f395.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7881df40-4c28-4294-a981-1cdaea7f7b22", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f6b6d73f-ea20-4993-a6b9-a786caf1f395.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6b6d73f-ea20-4993-a6b9-a786caf1f395", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f6b6d73f-ea20-4993-a6b9-a786caf1f395/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5654f456-76a4-48aa-bbd1-f7b3bf2a858b" + } + ] + }, + { + "label": { + "@none": [ + "165r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1f6036fd-96f8-430d-92c4-b5e670b9b16b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e0364372-9e07-4f3f-85ea-e1cc97f7f8e4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1f6036fd-96f8-430d-92c4-b5e670b9b16b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1f6036fd-96f8-430d-92c4-b5e670b9b16b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1f6036fd-96f8-430d-92c4-b5e670b9b16b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f091907-7334-4ca7-8964-f5da415dfc42" + } + ] + }, + { + "label": { + "@none": [ + "165v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49244b3f-5ebc-466a-9261-d40b21a7ae90.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/26fee59f-1f55-44db-90ae-45a4e4f75088", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/49244b3f-5ebc-466a-9261-d40b21a7ae90.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/49244b3f-5ebc-466a-9261-d40b21a7ae90", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/49244b3f-5ebc-466a-9261-d40b21a7ae90/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01b1bcbe-9f9e-4dd5-939e-ce46bb0be1aa" + } + ] + }, + { + "label": { + "@none": [ + "166r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd73063b-34b8-4c3f-9ae0-75a20b874d2e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f987dfba-5b5c-479d-8c39-a51a0356b6a6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bd73063b-34b8-4c3f-9ae0-75a20b874d2e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bd73063b-34b8-4c3f-9ae0-75a20b874d2e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bd73063b-34b8-4c3f-9ae0-75a20b874d2e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ddb91530-4270-4beb-bce6-7ef4431ec136" + } + ] + }, + { + "label": { + "@none": [ + "166v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/193ee4b5-d970-4c61-bc30-4c0d9fe6a390.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b34686d-a636-40d3-a398-cfec00191286", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/193ee4b5-d970-4c61-bc30-4c0d9fe6a390.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/193ee4b5-d970-4c61-bc30-4c0d9fe6a390", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/193ee4b5-d970-4c61-bc30-4c0d9fe6a390/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0fdbabe-bc57-4a8b-8893-d2b59b8d1551" + } + ] + }, + { + "label": { + "@none": [ + "167r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a13e95a-392d-4e33-9640-89f7bec42bbc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/11b7e922-af6a-4a57-ba96-b7b801fcca7d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a13e95a-392d-4e33-9640-89f7bec42bbc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a13e95a-392d-4e33-9640-89f7bec42bbc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a13e95a-392d-4e33-9640-89f7bec42bbc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70549916-6c38-44b6-b356-ae0697cbc36c" + } + ] + }, + { + "label": { + "@none": [ + "167v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c709111-e6ba-4956-a9d7-8166a8fa5789.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1640c14-0153-43d2-a126-9926668c3322", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c709111-e6ba-4956-a9d7-8166a8fa5789.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c709111-e6ba-4956-a9d7-8166a8fa5789", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c709111-e6ba-4956-a9d7-8166a8fa5789/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98b86762-57ea-40cf-b002-e75a7aef669c" + } + ] + }, + { + "label": { + "@none": [ + "168r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/17a11ad6-713e-40cd-9e35-587b6a10644b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c05d2a08-9680-4509-b47d-4a510670f34d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/17a11ad6-713e-40cd-9e35-587b6a10644b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/17a11ad6-713e-40cd-9e35-587b6a10644b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/17a11ad6-713e-40cd-9e35-587b6a10644b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d421e79-4de2-42ce-ad0f-f1e736568108" + } + ] + }, + { + "label": { + "@none": [ + "168v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef780cca-7be2-466d-8d8a-9b2b88003dd8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9653e216-6dc6-4d9a-8643-4351f1491e43", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ef780cca-7be2-466d-8d8a-9b2b88003dd8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef780cca-7be2-466d-8d8a-9b2b88003dd8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ef780cca-7be2-466d-8d8a-9b2b88003dd8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93a541ee-0ad1-48bc-bb59-54ea4cbef2ef" + } + ] + }, + { + "label": { + "@none": [ + "169r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be4fb4f0-8f2a-4911-bee1-13e1740e11a8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8008438e-6078-4d60-9aaa-a2d349219e71", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be4fb4f0-8f2a-4911-bee1-13e1740e11a8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/be4fb4f0-8f2a-4911-bee1-13e1740e11a8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/be4fb4f0-8f2a-4911-bee1-13e1740e11a8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d9a2c5a-8e5a-4a8c-bf44-c125bfcf5f97" + } + ] + }, + { + "label": { + "@none": [ + "169v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4568fea1-fcc1-42e9-a141-a41636c2116a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/88bb23f7-d4d9-4493-aa73-837c529c3422", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4568fea1-fcc1-42e9-a141-a41636c2116a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4568fea1-fcc1-42e9-a141-a41636c2116a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4568fea1-fcc1-42e9-a141-a41636c2116a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/26398e58-743b-4c5d-822c-49e4239d3011" + } + ] + }, + { + "label": { + "@none": [ + "170r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/da92904c-8e36-43b1-ad23-6b1df79617d0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/26f8f85e-34c7-47c2-bf9c-6b055aa26853", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/da92904c-8e36-43b1-ad23-6b1df79617d0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/da92904c-8e36-43b1-ad23-6b1df79617d0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/da92904c-8e36-43b1-ad23-6b1df79617d0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94f15429-b75a-46fe-95e4-ace3b9ab75d1" + } + ] + }, + { + "label": { + "@none": [ + "170v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d61c8df-92d7-4c3f-a361-b973f15fb143.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eca597e1-8d1e-4c05-be05-bf678c041bd2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5d61c8df-92d7-4c3f-a361-b973f15fb143.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5d61c8df-92d7-4c3f-a361-b973f15fb143", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5d61c8df-92d7-4c3f-a361-b973f15fb143/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69dfb36e-250f-42de-bb6f-8749fe2b4da4" + } + ] + }, + { + "label": { + "@none": [ + "171r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/09045e2a-e6a3-4a04-9ae0-2131d34be9ce", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/43dfddf7-aa0d-46a9-b86d-5c0b5f59a03d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ff131b5-9826-4848-ae64-d072f5460155" + } + ] + }, + { + "label": { + "@none": [ + "171v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36bb6b6d-90be-4069-9ce4-a55254873e8e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ce2d4589-17ff-41bd-bf85-e9b782480740", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/36bb6b6d-90be-4069-9ce4-a55254873e8e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/36bb6b6d-90be-4069-9ce4-a55254873e8e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/36bb6b6d-90be-4069-9ce4-a55254873e8e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9338956f-2f8f-4c66-b95e-6a02582193a0" + } + ] + }, + { + "label": { + "@none": [ + "172r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e0c03bd-7c48-43dc-a539-5c00705fa30c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/38262f1e-a665-4ed9-8010-ed8367be909b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1e0c03bd-7c48-43dc-a539-5c00705fa30c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1e0c03bd-7c48-43dc-a539-5c00705fa30c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1e0c03bd-7c48-43dc-a539-5c00705fa30c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/014f7606-5b44-4da2-9391-44401008054f" + } + ] + }, + { + "label": { + "@none": [ + "172v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bba7b2b-bf90-4099-8d01-38e9998978b4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8cf0f1ad-63e7-4737-816e-4a19d2dde294", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bba7b2b-bf90-4099-8d01-38e9998978b4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7bba7b2b-bf90-4099-8d01-38e9998978b4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7bba7b2b-bf90-4099-8d01-38e9998978b4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34709777-df5f-4c26-8df3-da1e73c325d8" + } + ] + }, + { + "label": { + "@none": [ + "173r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e5480c83-412b-4db7-945e-4a48602c5dc7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5db3acf3-d049-4e1a-a0a4-fd2b6f074a97/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fa3c853-f06d-4d71-a6a8-d00d04ca4cec" + } + ] + }, + { + "label": { + "@none": [ + "173v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/377816e8-8bc6-4a00-bc02-70258da7064f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5b7a7134-b6dc-4879-aca6-75f2d3814a54", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/377816e8-8bc6-4a00-bc02-70258da7064f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/377816e8-8bc6-4a00-bc02-70258da7064f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/377816e8-8bc6-4a00-bc02-70258da7064f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80d8910c-3248-4db5-b36c-701bb94c6674" + } + ] + }, + { + "label": { + "@none": [ + "174r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/295299a3-2cc8-41cc-8f0c-223bbb09ce31.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/87968184-e600-432e-a8a9-e5fede569262", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/295299a3-2cc8-41cc-8f0c-223bbb09ce31.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/295299a3-2cc8-41cc-8f0c-223bbb09ce31", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/295299a3-2cc8-41cc-8f0c-223bbb09ce31/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0852d6b-defc-4b37-bb43-675111d8ac95" + } + ] + }, + { + "label": { + "@none": [ + "174v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f04f24-e275-4976-9833-b461d97f8054.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2852afec-ef74-4e9d-8646-ee2f745ecd2b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f04f24-e275-4976-9833-b461d97f8054.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f04f24-e275-4976-9833-b461d97f8054", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f04f24-e275-4976-9833-b461d97f8054/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ee6160a-3ae3-4567-a95b-e81c2513bacb" + } + ] + }, + { + "label": { + "@none": [ + "175r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7703e3c2-cdc7-4630-b9ae-58b2546f87a7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/77af903c-0b35-40be-967b-c820423210b5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7703e3c2-cdc7-4630-b9ae-58b2546f87a7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7703e3c2-cdc7-4630-b9ae-58b2546f87a7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7703e3c2-cdc7-4630-b9ae-58b2546f87a7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f4cbab09-f110-435e-b093-e333b0f15ca7" + } + ] + }, + { + "label": { + "@none": [ + "175v" + ] + }, + "height": 7520, + "width": 5184, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b14ff899-3c15-4ce5-8493-a61de6372eb9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f3919e98-9230-4670-9189-e2128c2e9fc5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b14ff899-3c15-4ce5-8493-a61de6372eb9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5184, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b14ff899-3c15-4ce5-8493-a61de6372eb9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b14ff899-3c15-4ce5-8493-a61de6372eb9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/251d0a3b-a435-4ab3-81b4-482b61a07dd0" + } + ] + }, + { + "label": { + "@none": [ + "176r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f653faf-a469-41cc-9e8e-4f239bf6b416.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/211d63ba-c731-4e2d-8e5a-f1d6ad119d42", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8f653faf-a469-41cc-9e8e-4f239bf6b416.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f653faf-a469-41cc-9e8e-4f239bf6b416", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8f653faf-a469-41cc-9e8e-4f239bf6b416/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d100079-a04d-4be8-b541-167b6afb82dc" + } + ] + }, + { + "label": { + "@none": [ + "176v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cace0a20-d73c-4782-a0db-3ee278bce098.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bf4b4f1-42bc-485f-b467-67569fabbd9b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cace0a20-d73c-4782-a0db-3ee278bce098.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cace0a20-d73c-4782-a0db-3ee278bce098", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cace0a20-d73c-4782-a0db-3ee278bce098/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9e04e93-0a8b-4a4d-a3aa-5d8bfc0e867b" + } + ] + }, + { + "label": { + "@none": [ + "177r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d270d231-d27e-41a3-9741-2ab9f64d74c3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d566066c-3764-4ffd-834a-6b07fcfc7c09", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d270d231-d27e-41a3-9741-2ab9f64d74c3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d270d231-d27e-41a3-9741-2ab9f64d74c3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d270d231-d27e-41a3-9741-2ab9f64d74c3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4315789-1078-48a8-b932-c398dc188886" + } + ] + }, + { + "label": { + "@none": [ + "177v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d587f6d-db5c-4cdb-a553-5c89cd80945b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/878998a2-3c69-49c4-a3f9-b7cc92e59f19", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d587f6d-db5c-4cdb-a553-5c89cd80945b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8d587f6d-db5c-4cdb-a553-5c89cd80945b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8d587f6d-db5c-4cdb-a553-5c89cd80945b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5e8b6c67-66e2-4d08-9093-86b81558c61a" + } + ] + }, + { + "label": { + "@none": [ + "178r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d259beb5-1055-453f-b9e7-b151c85270c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c9fc9851-9b96-4b70-8fed-fc8c8e5fcea5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aacb6a67-e184-4a9e-9816-7b2d822275cd" + } + ] + }, + { + "label": { + "@none": [ + "178v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453553bc-6f70-4af4-b5ec-63cffc34afb4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/61463a12-ce03-4452-8c2d-dacc7655ddc1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/453553bc-6f70-4af4-b5ec-63cffc34afb4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453553bc-6f70-4af4-b5ec-63cffc34afb4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/453553bc-6f70-4af4-b5ec-63cffc34afb4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/010d1e4f-21b8-4a92-9815-a3ad46e7d93e" + } + ] + }, + { + "label": { + "@none": [ + "179r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fc2704ee-7cce-47a9-b61d-30d7b84f24a6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/65004030-c3a0-4a29-bb46-b107dcb161b5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fc2704ee-7cce-47a9-b61d-30d7b84f24a6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fc2704ee-7cce-47a9-b61d-30d7b84f24a6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fc2704ee-7cce-47a9-b61d-30d7b84f24a6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08bec508-af85-41e4-8b18-5c8391795ef4" + } + ] + }, + { + "label": { + "@none": [ + "179v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2c6718c4-37eb-4306-9ede-63262c552560.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d7c1db61-7454-4fa1-8a53-a2dffc85db55", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2c6718c4-37eb-4306-9ede-63262c552560.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2c6718c4-37eb-4306-9ede-63262c552560", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2c6718c4-37eb-4306-9ede-63262c552560/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9147faae-ae13-4664-8f40-a7084f9b6318" + } + ] + }, + { + "label": { + "@none": [ + "180r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fcf48a8-df38-4105-a1ac-a72389a3962c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b9a7225c-f735-4c82-ba14-d8648344b147", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fcf48a8-df38-4105-a1ac-a72389a3962c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5fcf48a8-df38-4105-a1ac-a72389a3962c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5fcf48a8-df38-4105-a1ac-a72389a3962c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f9ce9726-620c-472c-a292-cd41cf898d40" + } + ] + }, + { + "label": { + "@none": [ + "180v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/56f9142f-a7a5-4b4a-bf65-1b0bacf9df35", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7b276d39-9ce1-4d10-b1d5-c97ca8d9a390/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c136165-407d-4e01-aba4-cb397ddee8c7" + } + ] + }, + { + "label": { + "@none": [ + "181r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ff0babf-32a8-43b3-85b7-01f6db041514.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/20ca1655-1fc7-4f28-ad8b-c111368c45a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ff0babf-32a8-43b3-85b7-01f6db041514.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ff0babf-32a8-43b3-85b7-01f6db041514", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ff0babf-32a8-43b3-85b7-01f6db041514/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87e6b78e-559d-4d25-8ecc-7d7b3b82b7b4" + } + ] + }, + { + "label": { + "@none": [ + "181v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48f4fd33-d2dc-4a8e-83de-557059be254c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/defec588-c138-462f-b0a0-54cf54ef838f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48f4fd33-d2dc-4a8e-83de-557059be254c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48f4fd33-d2dc-4a8e-83de-557059be254c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48f4fd33-d2dc-4a8e-83de-557059be254c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/358dd5fb-619d-4b52-8433-24b2381d9816" + } + ] + }, + { + "label": { + "@none": [ + "182r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7833953e-8bc1-45c3-b6f3-144e1fa4633e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1194bd4a-3a33-4bdd-8380-246ad7b6c7e3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9b93ab4-3592-433e-9c95-2485529ee096" + } + ] + }, + { + "label": { + "@none": [ + "182v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/277a81e7-601e-4db2-9bca-b1713c252a9f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad682a8b-d146-4121-b56a-837a6f670db7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/277a81e7-601e-4db2-9bca-b1713c252a9f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/277a81e7-601e-4db2-9bca-b1713c252a9f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/277a81e7-601e-4db2-9bca-b1713c252a9f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42e5a887-dfd5-459f-b51e-3786c5cb2658" + } + ] + }, + { + "label": { + "@none": [ + "183r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bff4cf4-4517-489f-aef9-e5d1cf96bca9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3ff0cad2-d294-4c9d-a5a4-e76a76211872", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5bff4cf4-4517-489f-aef9-e5d1cf96bca9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5bff4cf4-4517-489f-aef9-e5d1cf96bca9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5bff4cf4-4517-489f-aef9-e5d1cf96bca9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d18b0b94-ae30-45c3-95b8-d1511141bc67" + } + ] + }, + { + "label": { + "@none": [ + "183v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113d21b5-b695-4a8d-b545-1cc88c5982da.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bda27fef-aa33-4e31-a3cd-a453a3cf6c69", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/113d21b5-b695-4a8d-b545-1cc88c5982da.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/113d21b5-b695-4a8d-b545-1cc88c5982da", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/113d21b5-b695-4a8d-b545-1cc88c5982da/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09a3eec6-62a2-456c-9b07-26ee2f170378" + } + ] + }, + { + "label": { + "@none": [ + "184r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/37a6b1ce-48d8-4833-8c20-51f02f9031a2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/064abec0-6716-469f-b5ba-9a34b13ed83a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/37a6b1ce-48d8-4833-8c20-51f02f9031a2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/37a6b1ce-48d8-4833-8c20-51f02f9031a2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/37a6b1ce-48d8-4833-8c20-51f02f9031a2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a077681a-066f-4521-bc2f-0b548bcbdaa4" + } + ] + }, + { + "label": { + "@none": [ + "184v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c7ff866d-3aa8-4b47-b911-1d19f88ec8ba", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ae049a2c-c3cb-4ff5-bee4-f3ecefb678ad/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f46e0186-cafd-47e2-bb89-cc85812c2c39" + } + ] + }, + { + "label": { + "@none": [ + "185r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bf038e7-59a4-44fb-9945-fc0e5b5497ca.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/479c9e2e-45f3-4e8c-876c-4e704647a176", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7bf038e7-59a4-44fb-9945-fc0e5b5497ca.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7bf038e7-59a4-44fb-9945-fc0e5b5497ca", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7bf038e7-59a4-44fb-9945-fc0e5b5497ca/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51979e1a-ef98-4171-9ffb-d7857dc813fe" + } + ] + }, + { + "label": { + "@none": [ + "185v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f903e1-749f-4008-a0d0-bbfc8dcae28a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a1bfde1-666c-463f-bb34-3f711d319db4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96f903e1-749f-4008-a0d0-bbfc8dcae28a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f903e1-749f-4008-a0d0-bbfc8dcae28a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96f903e1-749f-4008-a0d0-bbfc8dcae28a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09ec63aa-aeb9-4c8b-a58b-ececa2944760" + } + ] + }, + { + "label": { + "@none": [ + "186r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f89c1cc-af59-4e75-8195-161a526a7995.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da2506bd-d003-482b-8535-9b1ab0c216d3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f89c1cc-af59-4e75-8195-161a526a7995.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f89c1cc-af59-4e75-8195-161a526a7995", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f89c1cc-af59-4e75-8195-161a526a7995/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f68fd23-af4d-477e-a468-b8d83ef0ab06" + } + ] + }, + { + "label": { + "@none": [ + "186v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a87038c7-0051-4bc3-bb08-30235894e466.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b5d3e71b-c7ea-4809-afc4-29ced405912f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a87038c7-0051-4bc3-bb08-30235894e466.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a87038c7-0051-4bc3-bb08-30235894e466", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a87038c7-0051-4bc3-bb08-30235894e466/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d592da9-fda8-4327-b6b8-a60c53f79027" + } + ] + }, + { + "label": { + "@none": [ + "187r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e0db442c-c1be-4879-8186-3f67ac604746.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2f609d4e-0611-41e7-a5d6-89aa248ba77a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e0db442c-c1be-4879-8186-3f67ac604746.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e0db442c-c1be-4879-8186-3f67ac604746", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e0db442c-c1be-4879-8186-3f67ac604746/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1b3d775-92a9-45ef-b222-efd10cbcf5ae" + } + ] + }, + { + "label": { + "@none": [ + "187v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3189fa7f-94c4-4507-8f74-4cb482a783f6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67fdf671-af83-4f8d-8888-22ea213b4de4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3189fa7f-94c4-4507-8f74-4cb482a783f6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3189fa7f-94c4-4507-8f74-4cb482a783f6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3189fa7f-94c4-4507-8f74-4cb482a783f6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/748613c2-07a9-423f-a7d8-73eed2db76dd" + } + ] + }, + { + "label": { + "@none": [ + "188r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20109674-6efd-422c-85c1-2ecaaf9bb403.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df6b9c4c-ea86-4988-8e5d-a5be6abf4f90", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/20109674-6efd-422c-85c1-2ecaaf9bb403.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/20109674-6efd-422c-85c1-2ecaaf9bb403", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/20109674-6efd-422c-85c1-2ecaaf9bb403/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90b20ca2-e96f-4691-8df6-b183b9b35f11" + } + ] + }, + { + "label": { + "@none": [ + "188v" + ] + }, + "height": 7520, + "width": 5232, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe7e4e0-b71e-41c3-9afc-f39fcd894379.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af1137db-c852-40d5-87eb-06a0358b420b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fe7e4e0-b71e-41c3-9afc-f39fcd894379.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5232, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fe7e4e0-b71e-41c3-9afc-f39fcd894379", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fe7e4e0-b71e-41c3-9afc-f39fcd894379/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/27dc1573-168d-465d-a2f8-357c5e18fb6b" + } + ] + }, + { + "label": { + "@none": [ + "189r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e8f2c426-cbfc-4e4a-9b45-25c5920905bd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1f318d02-3700-4590-8638-25906307beb5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e8f2c426-cbfc-4e4a-9b45-25c5920905bd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e8f2c426-cbfc-4e4a-9b45-25c5920905bd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e8f2c426-cbfc-4e4a-9b45-25c5920905bd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bfcf8500-d90f-44da-89dd-bf7fbb0e7279" + } + ] + }, + { + "label": { + "@none": [ + "189v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43b4e9d1-554b-4fb4-83ec-7b5770f1f289.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8a50ef5a-30bc-4946-932d-061de8db6e4d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/43b4e9d1-554b-4fb4-83ec-7b5770f1f289.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/43b4e9d1-554b-4fb4-83ec-7b5770f1f289", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/43b4e9d1-554b-4fb4-83ec-7b5770f1f289/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e46ece8-ccfe-4841-864b-0a68654d0e4f" + } + ] + }, + { + "label": { + "@none": [ + "190r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b1a4ea95-d428-43ef-a439-908428de8db9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d34ef338-2de6-4390-a49a-c219a2a76c85", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b1a4ea95-d428-43ef-a439-908428de8db9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b1a4ea95-d428-43ef-a439-908428de8db9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b1a4ea95-d428-43ef-a439-908428de8db9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7533ca29-6230-44a0-b454-41e59f1db314" + } + ] + }, + { + "label": { + "@none": [ + "190v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28e8b37-5b6f-4198-b9ca-c119a800cff6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/67270340-85b5-483d-9f79-1b5e125ff70d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28e8b37-5b6f-4198-b9ca-c119a800cff6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a28e8b37-5b6f-4198-b9ca-c119a800cff6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a28e8b37-5b6f-4198-b9ca-c119a800cff6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a56ae704-c25c-4059-8010-77a45866053e" + } + ] + }, + { + "label": { + "@none": [ + "191r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90dcd298-ac5b-4963-9cfa-1b250e86e0ff.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/29f7c0cb-2bee-442a-a91f-705290be4a21", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/90dcd298-ac5b-4963-9cfa-1b250e86e0ff.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90dcd298-ac5b-4963-9cfa-1b250e86e0ff", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/90dcd298-ac5b-4963-9cfa-1b250e86e0ff/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42b8545d-91b6-498e-97f6-c7b68dc1e1d7" + } + ] + }, + { + "label": { + "@none": [ + "191v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28c296b-154d-4f78-80e5-89f1c2735098.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/76247516-e2cd-4eb3-b4f5-25b5136d2154", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a28c296b-154d-4f78-80e5-89f1c2735098.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a28c296b-154d-4f78-80e5-89f1c2735098", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a28c296b-154d-4f78-80e5-89f1c2735098/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b39b829-32b2-437c-88a1-7e5e309cb146" + } + ] + }, + { + "label": { + "@none": [ + "192r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4daeb8ad-e8e4-4f62-ac11-511d42b275bf.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5713a4d1-afd3-446e-aba1-fa6b1cebb05d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4daeb8ad-e8e4-4f62-ac11-511d42b275bf.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4daeb8ad-e8e4-4f62-ac11-511d42b275bf", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4daeb8ad-e8e4-4f62-ac11-511d42b275bf/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dab94dd1-536e-43ec-b17f-f2952078a2fd" + } + ] + }, + { + "label": { + "@none": [ + "192v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5f731c1a-b1fb-4f91-b9c1-711c0473ea77.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dd613468-dbd3-445b-8d12-d384e3d37467", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5f731c1a-b1fb-4f91-b9c1-711c0473ea77.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5f731c1a-b1fb-4f91-b9c1-711c0473ea77", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5f731c1a-b1fb-4f91-b9c1-711c0473ea77/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84cb0552-364e-4e0c-8db4-db3c31d6a1c8" + } + ] + }, + { + "label": { + "@none": [ + "193r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8fb52868-c2b4-4191-bc07-bb14afbd631e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a037930d-b527-4fba-8a50-da4ff3520290", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8fb52868-c2b4-4191-bc07-bb14afbd631e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8fb52868-c2b4-4191-bc07-bb14afbd631e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8fb52868-c2b4-4191-bc07-bb14afbd631e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae92b7bf-3482-463e-ba30-2df9bd8b48c1" + } + ] + }, + { + "label": { + "@none": [ + "193v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8379aff4-2cc4-4476-9118-46473d9da261.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bb8e84c0-0f44-41b7-b07f-504d3833472b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8379aff4-2cc4-4476-9118-46473d9da261.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8379aff4-2cc4-4476-9118-46473d9da261", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8379aff4-2cc4-4476-9118-46473d9da261/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9dda7be4-f7e3-4863-8d12-5c917b23bf49" + } + ] + }, + { + "label": { + "@none": [ + "194r" + ] + }, + "height": 7520, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ba501afe-ea8c-433e-a4f0-261e8c6899f9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/41494d4b-cec0-45e8-916b-18ad66f0284c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ba501afe-ea8c-433e-a4f0-261e8c6899f9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ba501afe-ea8c-433e-a4f0-261e8c6899f9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ba501afe-ea8c-433e-a4f0-261e8c6899f9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/834a91b9-c75a-42bb-b606-a4834d6be0ce" + } + ] + }, + { + "label": { + "@none": [ + "194v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aa954489-b8f6-4239-bd29-2f27b0cd18ca.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8729f4e3-1f71-435b-bfea-c0af931b51f7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aa954489-b8f6-4239-bd29-2f27b0cd18ca.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aa954489-b8f6-4239-bd29-2f27b0cd18ca", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aa954489-b8f6-4239-bd29-2f27b0cd18ca/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/662f09ca-2d0d-49c8-9b46-25328779f7d4" + } + ] + }, + { + "label": { + "@none": [ + "195r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46a7f026-cf8e-462b-81b0-d5e6385d2c00.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff404595-73fe-49c6-8a89-52c401733088", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46a7f026-cf8e-462b-81b0-d5e6385d2c00.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/46a7f026-cf8e-462b-81b0-d5e6385d2c00", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/46a7f026-cf8e-462b-81b0-d5e6385d2c00/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7690298f-df35-404c-ac23-96bb55f7dfa9" + } + ] + }, + { + "label": { + "@none": [ + "195v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e531f57a-eb3e-4faa-954a-10b50437c5c9.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c2ac4a7-5304-41ae-a3da-b1ce2e82b998", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e531f57a-eb3e-4faa-954a-10b50437c5c9.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e531f57a-eb3e-4faa-954a-10b50437c5c9", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e531f57a-eb3e-4faa-954a-10b50437c5c9/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5b01708-a817-4fdb-a286-4d0fc0cbde0e" + } + ] + }, + { + "label": { + "@none": [ + "196r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2303b00b-3588-4d11-955b-5ef6b84bc403.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/463b15e6-6ce3-4bc0-9c14-def0b92c1501", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2303b00b-3588-4d11-955b-5ef6b84bc403.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2303b00b-3588-4d11-955b-5ef6b84bc403", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2303b00b-3588-4d11-955b-5ef6b84bc403/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10f18589-5225-4cdb-aeba-bddb48e8027d" + } + ] + }, + { + "label": { + "@none": [ + "196v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1a827be-9987-47e7-a855-f6c8765f5b42.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3f757833-358f-4d69-985c-7960daa88b11", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1a827be-9987-47e7-a855-f6c8765f5b42.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a1a827be-9987-47e7-a855-f6c8765f5b42", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a1a827be-9987-47e7-a855-f6c8765f5b42/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be8b8ba9-e5a9-49c3-b80c-3844dda46ce3" + } + ] + }, + { + "label": { + "@none": [ + "197r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/01954b32-44c1-4443-a8c3-67b8a2282e9d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2ff0444f-3995-4f55-913d-856b5f4f079f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/01954b32-44c1-4443-a8c3-67b8a2282e9d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/01954b32-44c1-4443-a8c3-67b8a2282e9d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/01954b32-44c1-4443-a8c3-67b8a2282e9d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf26a3d6-5cb5-4258-ac2e-35719c226b5c" + } + ] + }, + { + "label": { + "@none": [ + "197v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1bf3ab07-c307-4357-9796-9a00066c28b7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6e03aee8-c6f9-4e17-a0f1-bc4569f4ac0a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d75bc92-2bcf-4293-b8ad-4bac3e36f351" + } + ] + }, + { + "label": { + "@none": [ + "198r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671742d4-099a-4012-a96e-36bbdcbb0ae1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/17c617f9-d614-4c67-a814-2ac9120487dc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671742d4-099a-4012-a96e-36bbdcbb0ae1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/671742d4-099a-4012-a96e-36bbdcbb0ae1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/671742d4-099a-4012-a96e-36bbdcbb0ae1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/74c50462-a1fb-4138-8177-fd1e1c049179" + } + ] + }, + { + "label": { + "@none": [ + "198v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fb8b863-a5f9-42a7-b340-d34f4fbde10a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e5cc051e-c7be-4756-bbfa-c8280ea4c69c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5fb8b863-a5f9-42a7-b340-d34f4fbde10a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5fb8b863-a5f9-42a7-b340-d34f4fbde10a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5fb8b863-a5f9-42a7-b340-d34f4fbde10a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b320dcab-c1b1-4489-873e-4a4a07eafdcb" + } + ] + }, + { + "label": { + "@none": [ + "199r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/df4022bf-5297-4ee8-b5ea-b89285364893", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c1bbf2f1-f5fe-4aae-82bc-ce18669d3115/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/615f87aa-2aab-4cc7-b169-7a272dcf7f8d" + } + ] + }, + { + "label": { + "@none": [ + "199v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4a9a8a9-e976-4017-a100-8ba99858b520.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/da489da6-866b-4a4e-aa6c-63c81faba53b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b4a9a8a9-e976-4017-a100-8ba99858b520.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b4a9a8a9-e976-4017-a100-8ba99858b520", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b4a9a8a9-e976-4017-a100-8ba99858b520/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f5cbb8a-0819-44a2-945f-9d4acd57530a" + } + ] + }, + { + "label": { + "@none": [ + "200r" + ] + }, + "height": 7520, + "width": 5472, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65073074-f7cf-4e8b-aef0-a9c2558d9cb6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/65efc197-3435-4855-b0e4-ef94f30ee725", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/65073074-f7cf-4e8b-aef0-a9c2558d9cb6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/65073074-f7cf-4e8b-aef0-a9c2558d9cb6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/65073074-f7cf-4e8b-aef0-a9c2558d9cb6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/642f2b60-dc73-4353-aa65-af35a884100f" + } + ] + }, + { + "label": { + "@none": [ + "200v" + ] + }, + "height": 7520, + "width": 5208, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58496061-8a46-4319-926a-d52e0d35eadc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9e0566d0-226e-4417-bc6d-4186942a56aa", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/58496061-8a46-4319-926a-d52e0d35eadc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5208, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/58496061-8a46-4319-926a-d52e0d35eadc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/58496061-8a46-4319-926a-d52e0d35eadc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81d399c1-0f36-4777-88d1-23c14d31e5fa" + } + ] + }, + { + "label": { + "@none": [ + "201r" + ] + }, + "height": 7496, + "width": 5376, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/492f6aac-46ff-48dc-af9b-2418a9907d4b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/11fdf842-7d10-4003-843b-f84890f93f0b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/492f6aac-46ff-48dc-af9b-2418a9907d4b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/492f6aac-46ff-48dc-af9b-2418a9907d4b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/492f6aac-46ff-48dc-af9b-2418a9907d4b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ce089b8-8c6c-4e62-af66-ca9ea5993fe1" + } + ] + }, + { + "label": { + "@none": [ + "201v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91aaa075-1c4e-4e0e-a255-d78cae041f65.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e76a804a-a0e5-479a-b236-48b286573826", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91aaa075-1c4e-4e0e-a255-d78cae041f65.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91aaa075-1c4e-4e0e-a255-d78cae041f65", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91aaa075-1c4e-4e0e-a255-d78cae041f65/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ccfd7d5a-550c-4d6d-86b7-c318a6b8c3ed" + } + ] + }, + { + "label": { + "@none": [ + "202r" + ] + }, + "height": 7496, + "width": 5376, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a801f766-44ec-45b7-8c6a-070ac61a97cc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/328789f0-c3a7-4109-9148-34a61353946c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a801f766-44ec-45b7-8c6a-070ac61a97cc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a801f766-44ec-45b7-8c6a-070ac61a97cc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a801f766-44ec-45b7-8c6a-070ac61a97cc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ce582d3-abca-4d0a-ab42-036297eaa507" + } + ] + }, + { + "label": { + "@none": [ + "202v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4b4e1e3-db94-42d0-b767-0b26fd2806b0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/284a7505-9c94-43a7-9527-40b9b1c89416", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4b4e1e3-db94-42d0-b767-0b26fd2806b0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e4b4e1e3-db94-42d0-b767-0b26fd2806b0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e4b4e1e3-db94-42d0-b767-0b26fd2806b0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f79a731c-e902-4609-9e96-32b712529197" + } + ] + }, + { + "label": { + "@none": [ + "203r" + ] + }, + "height": 7496, + "width": 5376, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950da988-0d97-4852-9cd3-bf7053a61283.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0c7c70b2-9600-43c4-94c8-ae0d0e3d69a4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/950da988-0d97-4852-9cd3-bf7053a61283.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/950da988-0d97-4852-9cd3-bf7053a61283", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/950da988-0d97-4852-9cd3-bf7053a61283/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ada4b8c6-16c4-4470-8bd7-6cf4e55bbf4a" + } + ] + }, + { + "label": { + "@none": [ + "203v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e881d1c-c508-4aa8-b554-14c6f22cbff3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a899e628-2f09-43ce-a45b-a340bcdb5359", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e881d1c-c508-4aa8-b554-14c6f22cbff3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e881d1c-c508-4aa8-b554-14c6f22cbff3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e881d1c-c508-4aa8-b554-14c6f22cbff3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85344953-0328-4b4b-9e13-49540c8f40bb" + } + ] + }, + { + "label": { + "@none": [ + "204r" + ] + }, + "height": 7496, + "width": 5376, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aad2980d-2871-43df-aaeb-88bb4cfb099a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c5bd28f6-0cd7-4b35-9e47-865de0f0aca5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca85837d-ca3f-487a-844b-97a2dadd194f" + } + ] + }, + { + "label": { + "@none": [ + "204v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83335519-6006-4050-b21c-9c37fb699535.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6aa33192-55cc-4c63-ab48-58e978383386", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/83335519-6006-4050-b21c-9c37fb699535.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/83335519-6006-4050-b21c-9c37fb699535", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/83335519-6006-4050-b21c-9c37fb699535/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83e92f1c-5a71-4580-8e52-2147cb913f33" + } + ] + }, + { + "label": { + "@none": [ + "205r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fddb4ff-c322-450f-92bd-80a5af2a87aa.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e89022be-71da-4cb3-93fd-b994bd9703ed", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4fddb4ff-c322-450f-92bd-80a5af2a87aa.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fddb4ff-c322-450f-92bd-80a5af2a87aa", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4fddb4ff-c322-450f-92bd-80a5af2a87aa/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/722bb776-46af-4f61-8b77-aa5a52ab4c2a" + } + ] + }, + { + "label": { + "@none": [ + "205v" + ] + }, + "height": 7520, + "width": 5244, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ba9a6a3-9e97-49ec-867f-26df66c2dd61.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/38c3b68b-2a81-4fdd-9928-3031c1ffe1b5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ba9a6a3-9e97-49ec-867f-26df66c2dd61.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5244, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ba9a6a3-9e97-49ec-867f-26df66c2dd61", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ba9a6a3-9e97-49ec-867f-26df66c2dd61/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/28359153-eea0-4f78-872e-6b9206765270" + } + ] + }, + { + "label": { + "@none": [ + "206r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/633d7599-0af4-4753-86cc-c8a0065772dd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/735b575d-b642-4509-a4c2-0d31d8671c58", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/633d7599-0af4-4753-86cc-c8a0065772dd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/633d7599-0af4-4753-86cc-c8a0065772dd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/633d7599-0af4-4753-86cc-c8a0065772dd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e473326e-c98a-44f4-8807-a0f781eaa48f" + } + ] + }, + { + "label": { + "@none": [ + "206v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be21b29f-3eb8-4a40-b2bb-2e167d574802.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1d720b0e-059b-43c0-8706-217b3df64c49", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/be21b29f-3eb8-4a40-b2bb-2e167d574802.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/be21b29f-3eb8-4a40-b2bb-2e167d574802", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/be21b29f-3eb8-4a40-b2bb-2e167d574802/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6280b34d-8f0d-4c4b-a491-7d3fd01eab38" + } + ] + }, + { + "label": { + "@none": [ + "207r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0822b70a-024b-4bfb-90c7-e3a67bea345a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f4fbb51c-c67c-4d77-bd71-bfe2de12e465", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0822b70a-024b-4bfb-90c7-e3a67bea345a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0822b70a-024b-4bfb-90c7-e3a67bea345a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0822b70a-024b-4bfb-90c7-e3a67bea345a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11582578-1792-40c6-bd8d-9d827fd8c325" + } + ] + }, + { + "label": { + "@none": [ + "207v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0da74f-42e8-4d68-8a98-26fe0ae064b2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/930efbae-64fb-4621-ae87-7d0ff909fd8c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4b0da74f-42e8-4d68-8a98-26fe0ae064b2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b0da74f-42e8-4d68-8a98-26fe0ae064b2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4b0da74f-42e8-4d68-8a98-26fe0ae064b2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e44197a1-9f1e-4e36-9b9a-17157d58b4d8" + } + ] + }, + { + "label": { + "@none": [ + "208r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/856ca501-43af-426b-b676-45c050b88479.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3219fd1c-04f9-404d-b4d5-39dc65091002", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/856ca501-43af-426b-b676-45c050b88479.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/856ca501-43af-426b-b676-45c050b88479", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/856ca501-43af-426b-b676-45c050b88479/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/488a5ab7-8ee4-4ee7-8020-9adcc698ed8e" + } + ] + }, + { + "label": { + "@none": [ + "208v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2d8a2465-8bc7-4de9-9a1d-b5ca3783eda3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/53d06f7b-35c4-4ec5-9489-e6c6c2c7f26c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68d38ec2-bfd6-4b50-ae90-f03b56b1a108" + } + ] + }, + { + "label": { + "@none": [ + "209r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7321541a-9fcb-4504-acb4-5cbe791a223c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6125803d-4ba4-4f27-983e-558cbd03d9c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7321541a-9fcb-4504-acb4-5cbe791a223c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7321541a-9fcb-4504-acb4-5cbe791a223c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7321541a-9fcb-4504-acb4-5cbe791a223c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73181fbe-5dfc-4f29-9212-43aad55c981b" + } + ] + }, + { + "label": { + "@none": [ + "209v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b62f3ce9-6dbc-4474-87b0-205106f07116", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/68b06fb6-7dac-4ed2-b71b-a616fe3aa96d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bee4b8e-e8f8-4063-8edc-5dad52fb338f" + } + ] + }, + { + "label": { + "@none": [ + "210r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5811e126-2d82-4a14-ba43-42e9d2436ab0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8855c6e9-611a-415f-bba2-3b27a20ccf2f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/5811e126-2d82-4a14-ba43-42e9d2436ab0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5811e126-2d82-4a14-ba43-42e9d2436ab0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/5811e126-2d82-4a14-ba43-42e9d2436ab0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ef9db97-c678-4e3b-be69-b6992b0eb08b" + } + ] + }, + { + "label": { + "@none": [ + "210v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/80bacb57-0b6b-4099-afae-84c87babe6a6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/be48471b-52ec-417a-bc34-72dc76752aa5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/80bacb57-0b6b-4099-afae-84c87babe6a6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/80bacb57-0b6b-4099-afae-84c87babe6a6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/80bacb57-0b6b-4099-afae-84c87babe6a6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1684bb8f-14c2-48e0-8d1f-3840781ec852" + } + ] + }, + { + "label": { + "@none": [ + "211r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aabd80b7-f357-4167-8912-82a574750734.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cd50c4eb-bdd9-44ad-ad16-e3c044ea0d2a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/aabd80b7-f357-4167-8912-82a574750734.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aabd80b7-f357-4167-8912-82a574750734", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/aabd80b7-f357-4167-8912-82a574750734/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb8920b6-01a7-4678-a73a-1485e2904127" + } + ] + }, + { + "label": { + "@none": [ + "211v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/31049add-a7b7-4c68-ab14-f798bd2d2a47", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f89cd6c4-9bdb-4ebc-a52b-24bbdb1ee9ad/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e1bc084-12b7-4b87-a1ab-de51334f1d65" + } + ] + }, + { + "label": { + "@none": [ + "212r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/614febd4-71d3-49ab-9fd7-4306ecfe38f0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/146bb37a-044d-4223-9aca-5d04ab71ab02", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/614febd4-71d3-49ab-9fd7-4306ecfe38f0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/614febd4-71d3-49ab-9fd7-4306ecfe38f0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/614febd4-71d3-49ab-9fd7-4306ecfe38f0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e47269bb-e948-476e-a02a-97f2f51658b7" + } + ] + }, + { + "label": { + "@none": [ + "212v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d7c3470-ee46-4c48-abbe-93c5e0f085a3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/abbe4175-ce25-4dc7-8e8f-b9a44c1fda95", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8d7c3470-ee46-4c48-abbe-93c5e0f085a3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8d7c3470-ee46-4c48-abbe-93c5e0f085a3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8d7c3470-ee46-4c48-abbe-93c5e0f085a3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dc502c92-b342-47ba-bb69-e58f47e956f6" + } + ] + }, + { + "label": { + "@none": [ + "213r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/029fe17b-9026-4c23-b85f-b7a8465396f7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf1f88f1-8c47-4f91-a7fd-8149f38ca8ba", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/029fe17b-9026-4c23-b85f-b7a8465396f7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/029fe17b-9026-4c23-b85f-b7a8465396f7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/029fe17b-9026-4c23-b85f-b7a8465396f7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c2b82d92-b854-4483-998e-7e45a7111181" + } + ] + }, + { + "label": { + "@none": [ + "213v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6a23cd9b-0f30-4146-9207-adceac5312e0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/111c30a1-14ca-475d-bb04-0012a4cebcdf", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6a23cd9b-0f30-4146-9207-adceac5312e0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6a23cd9b-0f30-4146-9207-adceac5312e0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6a23cd9b-0f30-4146-9207-adceac5312e0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1be64e2-8420-4604-8bff-c38d1d9f7c40" + } + ] + }, + { + "label": { + "@none": [ + "214r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12f8c777-0542-4152-8067-b07f801fe87d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/cf74db71-6635-48ca-a0be-28cc6fa96596", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12f8c777-0542-4152-8067-b07f801fe87d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/12f8c777-0542-4152-8067-b07f801fe87d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/12f8c777-0542-4152-8067-b07f801fe87d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/77e6c414-0f64-4a58-8cb5-8ee7bdb299ed" + } + ] + }, + { + "label": { + "@none": [ + "214v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/994d2cee-0892-4921-a20b-704ee84e8aa3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/283ef905-e3e1-4ff1-a221-7ebee651fc24", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/994d2cee-0892-4921-a20b-704ee84e8aa3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/994d2cee-0892-4921-a20b-704ee84e8aa3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/994d2cee-0892-4921-a20b-704ee84e8aa3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/350da18a-0b1c-4592-a0ff-8fa019470132" + } + ] + }, + { + "label": { + "@none": [ + "215r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8e1c2a51-a90b-4322-a4f5-38f86f91c880", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/38ea2a3a-40c3-4255-b4a5-e9eb4bf07b23/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09fe41ba-11aa-4d59-b34f-8abb88dd1760" + } + ] + }, + { + "label": { + "@none": [ + "215v" + ] + }, + "height": 7508, + "width": 5256, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38510524-62e2-4de0-95da-607aa2d4522e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0554a452-d525-41e8-9a0d-969afbd1319f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/38510524-62e2-4de0-95da-607aa2d4522e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7508, + "width": 5256, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/38510524-62e2-4de0-95da-607aa2d4522e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/38510524-62e2-4de0-95da-607aa2d4522e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10e000e8-33e6-4241-b740-76ddc254be79" + } + ] + }, + { + "label": { + "@none": [ + "216r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b3c9f33-1a79-46d1-9be4-68949bc94ae6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c202d837-b040-4c6c-b8a8-f00c78810269", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b3c9f33-1a79-46d1-9be4-68949bc94ae6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b3c9f33-1a79-46d1-9be4-68949bc94ae6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b3c9f33-1a79-46d1-9be4-68949bc94ae6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d3e6799-19fc-45bf-9aee-47ae241fb65b" + } + ] + }, + { + "label": { + "@none": [ + "216v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1dcc22d4-09b4-415f-a7bc-7b4ddee52b9d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/76dd2d91-2bdd-4f11-9b24-768c1bd52cc5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1c7a849-8330-4ada-8681-6dc59f915594" + } + ] + }, + { + "label": { + "@none": [ + "217r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/541d9f74-856a-4f73-8f3b-9dbb2cfe0083.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e35ee11f-37fa-4ddd-a0c9-2672c6ee5d37", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/541d9f74-856a-4f73-8f3b-9dbb2cfe0083.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/541d9f74-856a-4f73-8f3b-9dbb2cfe0083", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/541d9f74-856a-4f73-8f3b-9dbb2cfe0083/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c7a0ab7-352c-424f-8781-2a9949d8ab7c" + } + ] + }, + { + "label": { + "@none": [ + "217v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a8871b3-10cd-42cf-a7ee-14ce216c3234.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2eccf9bd-2010-4764-becb-58595acb35d2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7a8871b3-10cd-42cf-a7ee-14ce216c3234.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a8871b3-10cd-42cf-a7ee-14ce216c3234", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7a8871b3-10cd-42cf-a7ee-14ce216c3234/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e69700b-c048-4286-9012-0d6d4c585d78" + } + ] + }, + { + "label": { + "@none": [ + "218r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/947b462e-8bfe-43f7-95fa-cfa00ba44250.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/08fd1f3b-bef9-4cde-b95c-cc95e224db72", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/947b462e-8bfe-43f7-95fa-cfa00ba44250.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/947b462e-8bfe-43f7-95fa-cfa00ba44250", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/947b462e-8bfe-43f7-95fa-cfa00ba44250/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c18fa179-2f1a-4c1e-aff3-7aebed400b27" + } + ] + }, + { + "label": { + "@none": [ + "218v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/afae2f7d-4d83-4961-b979-f8521cd884cb.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3502dc27-e81f-4386-bf0f-f8e39c1854a1", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/afae2f7d-4d83-4961-b979-f8521cd884cb.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/afae2f7d-4d83-4961-b979-f8521cd884cb", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/afae2f7d-4d83-4961-b979-f8521cd884cb/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83405540-246b-4d1e-9728-4d3a80044f60" + } + ] + }, + { + "label": { + "@none": [ + "219r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e6f3da28-1621-4529-a67d-22998a8e2675", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f0cff34-0a3b-4cd8-8bd0-1821c7ea6471/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/02f6df65-222b-4fe7-8c34-ce73f137caf6" + } + ] + }, + { + "label": { + "@none": [ + "219v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fdf5e83-ab4a-4e13-b921-8a664ee994bd.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4895dc72-5258-4b48-979a-cfc4e5f12a15", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6fdf5e83-ab4a-4e13-b921-8a664ee994bd.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6fdf5e83-ab4a-4e13-b921-8a664ee994bd", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6fdf5e83-ab4a-4e13-b921-8a664ee994bd/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4536e644-58f8-444d-a973-cd6e6a66357f" + } + ] + }, + { + "label": { + "@none": [ + "220r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29667798-095b-4b04-9022-1b23f35d9b3d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d4e3b6b9-d8c7-4a73-a702-ed47b89f7ed5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/29667798-095b-4b04-9022-1b23f35d9b3d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/29667798-095b-4b04-9022-1b23f35d9b3d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/29667798-095b-4b04-9022-1b23f35d9b3d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f519f41b-0e00-4e43-8bfc-38d5e9ac4c80" + } + ] + }, + { + "label": { + "@none": [ + "220v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9f012d79-d177-48bf-86cf-87bc8e376c17.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/228ed849-7660-42bd-8c65-fe84120798c4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9f012d79-d177-48bf-86cf-87bc8e376c17.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9f012d79-d177-48bf-86cf-87bc8e376c17", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9f012d79-d177-48bf-86cf-87bc8e376c17/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03e872db-e277-4835-87aa-4196b7691b9f" + } + ] + }, + { + "label": { + "@none": [ + "221r" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a11ee5a-b965-4591-9cec-c67ce94f65c1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f3e04a3f-8f9c-468b-92e2-c86dc67fd590", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1a11ee5a-b965-4591-9cec-c67ce94f65c1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1a11ee5a-b965-4591-9cec-c67ce94f65c1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1a11ee5a-b965-4591-9cec-c67ce94f65c1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3e3517f-e0ee-42c3-8e9c-063f79dbb93b" + } + ] + }, + { + "label": { + "@none": [ + "221v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08be2da0-b456-4f58-83dd-d26636312512.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/13c66547-d79a-48ef-8698-72028e5397de", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/08be2da0-b456-4f58-83dd-d26636312512.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/08be2da0-b456-4f58-83dd-d26636312512", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/08be2da0-b456-4f58-83dd-d26636312512/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9552c1d-80dc-42f2-8ed5-7c52ec264ea7" + } + ] + }, + { + "label": { + "@none": [ + "222r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9f32fc9-3f62-4352-acb3-f41918f78811.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b3e74f9b-05da-4abd-867a-31b2cf650f0e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f9f32fc9-3f62-4352-acb3-f41918f78811.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9f32fc9-3f62-4352-acb3-f41918f78811", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f9f32fc9-3f62-4352-acb3-f41918f78811/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cd427eef-6dd0-43ea-8127-56b07ad0d840" + } + ] + }, + { + "label": { + "@none": [ + "222v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46637303-db5c-4f5c-a62e-776f7a96cf4b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8b5daa8a-6274-488c-a69f-271f4b3f85da", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/46637303-db5c-4f5c-a62e-776f7a96cf4b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/46637303-db5c-4f5c-a62e-776f7a96cf4b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/46637303-db5c-4f5c-a62e-776f7a96cf4b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51de3ba8-8134-4cd4-90ca-871488c30124" + } + ] + }, + { + "label": { + "@none": [ + "223r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d7161165-f474-4ae2-b2eb-1f76ce1c3481.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/79672906-6a26-41a6-b37b-bdc441c52790", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d7161165-f474-4ae2-b2eb-1f76ce1c3481.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d7161165-f474-4ae2-b2eb-1f76ce1c3481", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d7161165-f474-4ae2-b2eb-1f76ce1c3481/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07ec40c4-04cd-4f35-ae7c-58bcf688069e" + } + ] + }, + { + "label": { + "@none": [ + "223v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/181530f3-678f-4e4e-9344-5c41e9a17b3b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/76608b46-9a6e-4046-bd01-5d607560f863", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/181530f3-678f-4e4e-9344-5c41e9a17b3b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/181530f3-678f-4e4e-9344-5c41e9a17b3b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/181530f3-678f-4e4e-9344-5c41e9a17b3b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9779e3ea-41ae-48a6-b3f1-4b962bbcfea8" + } + ] + }, + { + "label": { + "@none": [ + "224r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/159961f2-68f3-4072-8553-521fe57091f3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/12cd07a4-9277-4393-8e0f-9503bf23cd53", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/159961f2-68f3-4072-8553-521fe57091f3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/159961f2-68f3-4072-8553-521fe57091f3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/159961f2-68f3-4072-8553-521fe57091f3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a22b385f-bc34-4f21-8d3f-c5ba3e457fd6" + } + ] + }, + { + "label": { + "@none": [ + "224v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/57fb9a56-5702-492f-9a6c-9b84b1bc23a1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1c7f0b23-4504-49a7-a62b-d7ccde1b0d69", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/57fb9a56-5702-492f-9a6c-9b84b1bc23a1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/57fb9a56-5702-492f-9a6c-9b84b1bc23a1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/57fb9a56-5702-492f-9a6c-9b84b1bc23a1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/af007a69-ec4f-4528-814c-26d2a9a99734" + } + ] + }, + { + "label": { + "@none": [ + "225r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d5611036-f13c-4dd2-859c-702ec16721b2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8b8eae3d-4b6d-4e8f-8b2b-43a346ec5437/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c2ddaeb9-6d76-458f-a592-822bc1a4ae40" + } + ] + }, + { + "label": { + "@none": [ + "225v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c22b962-3f90-4c3b-9b84-4f53444cad18.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd256f4a-e98c-41af-9598-0ea1d2c43f9c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c22b962-3f90-4c3b-9b84-4f53444cad18.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c22b962-3f90-4c3b-9b84-4f53444cad18", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c22b962-3f90-4c3b-9b84-4f53444cad18/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00199edd-d78e-452f-b0df-85821a7305b3" + } + ] + }, + { + "label": { + "@none": [ + "226r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/252a097b-2e29-432a-91db-b984346a2d5d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e97683e8-85aa-4b30-8cd0-49280fa63040", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/252a097b-2e29-432a-91db-b984346a2d5d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/252a097b-2e29-432a-91db-b984346a2d5d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/252a097b-2e29-432a-91db-b984346a2d5d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1075d94e-136c-4ecb-a7cf-399ad499abac" + } + ] + }, + { + "label": { + "@none": [ + "226v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d08de2e9-67c2-426c-ab67-2cfb19315f6a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/73c1073b-4b54-4581-85d4-263e67e3237f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d08de2e9-67c2-426c-ab67-2cfb19315f6a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d08de2e9-67c2-426c-ab67-2cfb19315f6a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d08de2e9-67c2-426c-ab67-2cfb19315f6a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e56ac02-76af-46d5-b396-2d8f129906d6" + } + ] + }, + { + "label": { + "@none": [ + "227r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/03ab8381-8ead-4127-9703-025258a6a5c5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f7f3daa6-5b85-4617-ae11-6c34a4c6dd29/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/de9f9254-d948-407f-8478-7cebfa1c4077" + } + ] + }, + { + "label": { + "@none": [ + "227v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9b8b251-07ee-4514-95ad-222cc07f1395.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/db8dc845-d586-40e8-b4ff-3aecae6e690f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d9b8b251-07ee-4514-95ad-222cc07f1395.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d9b8b251-07ee-4514-95ad-222cc07f1395", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d9b8b251-07ee-4514-95ad-222cc07f1395/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19a36448-4d58-4b77-8ff5-0916cf2c7139" + } + ] + }, + { + "label": { + "@none": [ + "228r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bee06a76-44c6-41a6-b9ac-575aac2f3f42", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cb1c6b0e-2086-4d86-9626-ef3fc65ca78d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5f8d4d86-c696-4974-a1d5-9257ec28e3ed" + } + ] + }, + { + "label": { + "@none": [ + "228v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ae40103-7423-4720-87f6-f004a3c1003c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0bfe3b51-c6d4-4590-b2bd-b4cf8a9fe15b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0ae40103-7423-4720-87f6-f004a3c1003c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ae40103-7423-4720-87f6-f004a3c1003c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0ae40103-7423-4720-87f6-f004a3c1003c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2cdccb30-77e2-483c-bf4e-0db707c710a2" + } + ] + }, + { + "label": { + "@none": [ + "229r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebe237d0-726d-4f40-af59-a22b0aa33162.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0642d6d6-3595-48cc-9f04-3c287060ebe7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ebe237d0-726d-4f40-af59-a22b0aa33162.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ebe237d0-726d-4f40-af59-a22b0aa33162", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ebe237d0-726d-4f40-af59-a22b0aa33162/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12526d86-2169-4560-8cd0-12e79d70f46d" + } + ] + }, + { + "label": { + "@none": [ + "229v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdc7366-7dc6-48c8-a9f5-9f443fc82344.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/24a2564b-3cf6-4970-9bd7-d88b15ec2c7c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/acdc7366-7dc6-48c8-a9f5-9f443fc82344.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/acdc7366-7dc6-48c8-a9f5-9f443fc82344", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/acdc7366-7dc6-48c8-a9f5-9f443fc82344/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35a9ea22-0311-43eb-a625-b7991be352e1" + } + ] + }, + { + "label": { + "@none": [ + "230r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1290d5c-d329-4ac6-9207-e727828aad02.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9add05d-bc5b-4389-8143-94a106048ee3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f1290d5c-d329-4ac6-9207-e727828aad02.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1290d5c-d329-4ac6-9207-e727828aad02", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f1290d5c-d329-4ac6-9207-e727828aad02/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/26927fb2-6cab-4137-8277-877f79ac7e2d" + } + ] + }, + { + "label": { + "@none": [ + "230v" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88e9c3c8-dc28-41b2-aacc-84501a0ba950.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/309a9f82-5ac7-4064-bcdd-9b8edc031fd8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/88e9c3c8-dc28-41b2-aacc-84501a0ba950.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/88e9c3c8-dc28-41b2-aacc-84501a0ba950", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/88e9c3c8-dc28-41b2-aacc-84501a0ba950/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7908e93e-f047-454a-8186-03ea7be6b453" + } + ] + }, + { + "label": { + "@none": [ + "231r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1e05c89-3146-4707-a113-2177cd2d7721.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0425f93f-240e-42ce-9e72-1f820b5a5b6f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a1e05c89-3146-4707-a113-2177cd2d7721.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a1e05c89-3146-4707-a113-2177cd2d7721", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a1e05c89-3146-4707-a113-2177cd2d7721/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e786600c-15e2-4760-bfc6-668e3dc2cc4e" + } + ] + }, + { + "label": { + "@none": [ + "231v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30765071-bfad-403f-82e9-6054e29cd0f6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b3a6bebf-a739-4e64-b4a4-ac69721f7438", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/30765071-bfad-403f-82e9-6054e29cd0f6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/30765071-bfad-403f-82e9-6054e29cd0f6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/30765071-bfad-403f-82e9-6054e29cd0f6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1e95bbc-1b79-4898-aea4-d7e2f6d3ab51" + } + ] + }, + { + "label": { + "@none": [ + "232r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4292fcef-5b16-4db7-965e-ec1000981e36.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bbba8af7-5ed1-419b-a52d-2e5d63ed6c4c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4292fcef-5b16-4db7-965e-ec1000981e36.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4292fcef-5b16-4db7-965e-ec1000981e36", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4292fcef-5b16-4db7-965e-ec1000981e36/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50fc7eec-8fc6-432a-b881-aac4d7a5d68e" + } + ] + }, + { + "label": { + "@none": [ + "232v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fb308b92-4133-4537-a7ae-6a29932e7e7e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5999c548-3f90-40dd-b9bb-67466d932e31", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/fb308b92-4133-4537-a7ae-6a29932e7e7e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fb308b92-4133-4537-a7ae-6a29932e7e7e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/fb308b92-4133-4537-a7ae-6a29932e7e7e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2be79486-7684-4eb0-bfb7-f1d29d4767b3" + } + ] + }, + { + "label": { + "@none": [ + "233r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fed2cb4-6388-488a-bae4-2cc79d50b999.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e2789dba-5045-42d9-be4c-07cff34b277c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7fed2cb4-6388-488a-bae4-2cc79d50b999.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7fed2cb4-6388-488a-bae4-2cc79d50b999", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7fed2cb4-6388-488a-bae4-2cc79d50b999/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fcec37ec-de72-4aee-896b-b9c56e51c75a" + } + ] + }, + { + "label": { + "@none": [ + "233v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/116da7b6-2529-4213-a6bc-957324894cc7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/99633cfa-6ff7-4809-8868-df189a32bd27", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/116da7b6-2529-4213-a6bc-957324894cc7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/116da7b6-2529-4213-a6bc-957324894cc7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/116da7b6-2529-4213-a6bc-957324894cc7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bafb0955-9742-434f-8c98-272b7d6ae1a5" + } + ] + }, + { + "label": { + "@none": [ + "234r" + ] + }, + "height": 7496, + "width": 5436, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e566db5-2055-4b47-bed1-8cc702dce658.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6529dd6e-2f76-4340-a099-0183a022f958", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2e566db5-2055-4b47-bed1-8cc702dce658.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7496, + "width": 5436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e566db5-2055-4b47-bed1-8cc702dce658", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2e566db5-2055-4b47-bed1-8cc702dce658/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1bade997-a076-4cba-baee-62559207fecf" + } + ] + }, + { + "label": { + "@none": [ + "234v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c3d4877b-f955-4245-8638-1ffb57e2b538.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/19c3ceec-97be-44ab-b691-269698efdd8c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c3d4877b-f955-4245-8638-1ffb57e2b538.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c3d4877b-f955-4245-8638-1ffb57e2b538", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c3d4877b-f955-4245-8638-1ffb57e2b538/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92c76c0b-7692-4cb5-9741-7d351e955053" + } + ] + }, + { + "label": { + "@none": [ + "235r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7af47469-7596-4686-9690-eefedd61b71b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1b4749c2-80e7-428c-bb8e-8b28a6a9e8b1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88ed6255-1f91-4da5-93df-e38ee653654e" + } + ] + }, + { + "label": { + "@none": [ + "235v" + ] + }, + "height": 7520, + "width": 5280, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbecf64d-e37b-4601-9797-d631a04335b6.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a7dab62d-1b0b-4428-a8ce-2e58c19754c6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/dbecf64d-e37b-4601-9797-d631a04335b6.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5280, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dbecf64d-e37b-4601-9797-d631a04335b6", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/dbecf64d-e37b-4601-9797-d631a04335b6/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b7282e2-937d-45dd-86c8-59120d893ae8" + } + ] + }, + { + "label": { + "@none": [ + "236r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77073d61-71a4-47c6-b322-8a29db67cb44.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a4e83a11-d310-4366-ab0e-dd6a531a99ad", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/77073d61-71a4-47c6-b322-8a29db67cb44.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77073d61-71a4-47c6-b322-8a29db67cb44", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/77073d61-71a4-47c6-b322-8a29db67cb44/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/260b1d79-b58b-4a95-83bc-9b42757e57a5" + } + ] + }, + { + "label": { + "@none": [ + "236v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/503f6921-6b38-46f2-bc5a-30a2001da52a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/778722eb-1256-4d59-872b-b78600cef57c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/503f6921-6b38-46f2-bc5a-30a2001da52a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/503f6921-6b38-46f2-bc5a-30a2001da52a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/503f6921-6b38-46f2-bc5a-30a2001da52a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1bf76ce5-0d9f-44c0-8cb4-34e92a3afe65" + } + ] + }, + { + "label": { + "@none": [ + "237r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bc1a0fce-2804-4700-b367-e2ae2a6bafac.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aae1ba90-4390-4444-9ab5-c14a46f01e58", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bc1a0fce-2804-4700-b367-e2ae2a6bafac.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bc1a0fce-2804-4700-b367-e2ae2a6bafac", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bc1a0fce-2804-4700-b367-e2ae2a6bafac/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c128c1d-d966-472a-b296-5d55a16649a1" + } + ] + }, + { + "label": { + "@none": [ + "237v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9a7ae841-f0b0-4ed6-b618-a564bd043086.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ad1b74e4-0020-4b5e-9e4f-87f983a4808d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9a7ae841-f0b0-4ed6-b618-a564bd043086.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9a7ae841-f0b0-4ed6-b618-a564bd043086", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9a7ae841-f0b0-4ed6-b618-a564bd043086/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85b24d0b-5022-452a-bec4-8028936877aa" + } + ] + }, + { + "label": { + "@none": [ + "238r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/97899448-2c9d-4b93-b3e7-d90d09d22539", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ed3738d8-72a9-45b5-8a8b-150cd5cd9c0d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3affc9af-5251-4805-b77f-20dbd651ed2c" + } + ] + }, + { + "label": { + "@none": [ + "238v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c03701e6-722e-4f4a-b779-8860fb0185bc.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d45afbd8-9b55-467b-b445-ef5d77716ea7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c03701e6-722e-4f4a-b779-8860fb0185bc.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c03701e6-722e-4f4a-b779-8860fb0185bc", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c03701e6-722e-4f4a-b779-8860fb0185bc/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53cbc525-d8e6-4d06-826f-f7e0ac642558" + } + ] + }, + { + "label": { + "@none": [ + "239r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bda32605-ed71-45b9-b3df-8816dd6d2665.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/586964bb-bf4d-4317-bbe0-4800bbc6b4c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/bda32605-ed71-45b9-b3df-8816dd6d2665.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bda32605-ed71-45b9-b3df-8816dd6d2665", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/bda32605-ed71-45b9-b3df-8816dd6d2665/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63c90f89-eaa1-4d2c-bd70-e99c096c8a68" + } + ] + }, + { + "label": { + "@none": [ + "239v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a16f7b6d-3d86-452e-bb33-9e660259b39b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/60373125-36ef-47b1-9d48-2b9a05361501", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a16f7b6d-3d86-452e-bb33-9e660259b39b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a16f7b6d-3d86-452e-bb33-9e660259b39b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a16f7b6d-3d86-452e-bb33-9e660259b39b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e6721c67-3620-4b18-8623-55ec3a74f950" + } + ] + }, + { + "label": { + "@none": [ + "240r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c8773604-9b45-4b67-adbd-827b68292616.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3b8d9a08-7733-4694-839d-62e741afe30c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c8773604-9b45-4b67-adbd-827b68292616.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c8773604-9b45-4b67-adbd-827b68292616", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c8773604-9b45-4b67-adbd-827b68292616/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ffa7dd29-f60d-4af3-b97a-2c1653968139" + } + ] + }, + { + "label": { + "@none": [ + "240v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f0d2fc41-40a9-4b00-b95c-54f044e95e49.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ef463bdf-3550-485e-a626-398a743375c9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f0d2fc41-40a9-4b00-b95c-54f044e95e49.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f0d2fc41-40a9-4b00-b95c-54f044e95e49", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f0d2fc41-40a9-4b00-b95c-54f044e95e49/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8dcbb626-3490-44e5-8a1f-60a58f451ef4" + } + ] + }, + { + "label": { + "@none": [ + "241r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cc69ec01-fe98-4775-ac0c-e7472208fa62.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8e06fa2e-15e1-4184-acfa-336993c85e5a", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cc69ec01-fe98-4775-ac0c-e7472208fa62.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cc69ec01-fe98-4775-ac0c-e7472208fa62", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cc69ec01-fe98-4775-ac0c-e7472208fa62/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2296c85-dda3-4d85-99ef-560d994c45d3" + } + ] + }, + { + "label": { + "@none": [ + "241v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bcb2f8-1b00-4f4c-967a-fd940bac809f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7b203313-0076-427e-be71-82d0de252039", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bcb2f8-1b00-4f4c-967a-fd940bac809f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5bcb2f8-1b00-4f4c-967a-fd940bac809f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5bcb2f8-1b00-4f4c-967a-fd940bac809f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a10c265-21e5-46c6-8f71-a90ac8ef9646" + } + ] + }, + { + "label": { + "@none": [ + "242r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d10b5245-bb78-4eb6-9810-315608be3953.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/78e7bfa0-fae3-4751-a58e-79c4a0d68b6b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d10b5245-bb78-4eb6-9810-315608be3953.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d10b5245-bb78-4eb6-9810-315608be3953", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d10b5245-bb78-4eb6-9810-315608be3953/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f399d818-4800-4e54-bafd-5b2c3bada578" + } + ] + }, + { + "label": { + "@none": [ + "242v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/70fd247a-bf34-40bc-bfd1-58e5fdf6afbc", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8cc0d8e7-608d-4563-bf6b-fa1f0b69be35/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d4bdf190-91e6-48ca-917e-1f0038dc1471" + } + ] + }, + { + "label": { + "@none": [ + "243r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/39d39514-1e31-4774-9a5a-3919fa03eede", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d9da27b-ef65-4fab-99f0-1ad42a8a3cde/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3930268b-b2b5-4b24-b619-e58842f8a849" + } + ] + }, + { + "label": { + "@none": [ + "243v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f28c09fa-0ae5-4712-86f9-0daf58b63014.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/07372991-e472-40ea-9819-f4a1b660e959", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f28c09fa-0ae5-4712-86f9-0daf58b63014.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f28c09fa-0ae5-4712-86f9-0daf58b63014", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f28c09fa-0ae5-4712-86f9-0daf58b63014/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42feb079-4a7d-439b-8f19-4a0eba529ac0" + } + ] + }, + { + "label": { + "@none": [ + "244r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c181e317-a69b-471e-ba21-35bfa4e2d428.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/73716210-7ae1-4761-8ea5-e49deb277d9f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c181e317-a69b-471e-ba21-35bfa4e2d428.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c181e317-a69b-471e-ba21-35bfa4e2d428", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c181e317-a69b-471e-ba21-35bfa4e2d428/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3957b8b-3318-4aee-9299-732f852549af" + } + ] + }, + { + "label": { + "@none": [ + "244v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a36e35a-eeaf-4838-9fcd-7d52971380b2.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f1c7879d-6f36-47f0-b629-e780935fd111", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2a36e35a-eeaf-4838-9fcd-7d52971380b2.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2a36e35a-eeaf-4838-9fcd-7d52971380b2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2a36e35a-eeaf-4838-9fcd-7d52971380b2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c63da07-3af4-430e-a219-d14cde992423" + } + ] + }, + { + "label": { + "@none": [ + "245r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f6f9900-d545-45ec-8de4-edaefe02d4a5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b1c68eac-0a3c-426c-9ad6-e311a0094cc3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3f6f9900-d545-45ec-8de4-edaefe02d4a5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f6f9900-d545-45ec-8de4-edaefe02d4a5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3f6f9900-d545-45ec-8de4-edaefe02d4a5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0c829f25-029c-4c8f-b43e-99f679669cb0" + } + ] + }, + { + "label": { + "@none": [ + "245v" + ] + }, + "height": 7520, + "width": 5268, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b9d8c875-6781-47fe-8b19-0970a5952042.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b0961b62-0be3-4b3e-b38e-7f473336350d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/b9d8c875-6781-47fe-8b19-0970a5952042.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5268, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b9d8c875-6781-47fe-8b19-0970a5952042", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/b9d8c875-6781-47fe-8b19-0970a5952042/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b572ea17-3c83-4688-92a7-027c88263983" + } + ] + }, + { + "label": { + "@none": [ + "246r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869c2862-ef20-47c4-bdce-e405112d5252.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/56d1e964-febe-40a5-a1a1-596b10a67248", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/869c2862-ef20-47c4-bdce-e405112d5252.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/869c2862-ef20-47c4-bdce-e405112d5252", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/869c2862-ef20-47c4-bdce-e405112d5252/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d86643d7-374b-4ce9-bc8a-cdbf4b97249d" + } + ] + }, + { + "label": { + "@none": [ + "246v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e629071-081c-4471-9b72-29528a28f540.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4b8786a3-9a6a-4ef4-90fe-9a1fa942e01d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9e629071-081c-4471-9b72-29528a28f540.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e629071-081c-4471-9b72-29528a28f540", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9e629071-081c-4471-9b72-29528a28f540/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3f39faa-fbf3-4986-8bfd-de179738aca6" + } + ] + }, + { + "label": { + "@none": [ + "247r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/097fa97b-f7a5-47de-81ff-0a01d6a9528d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8a2cf0b1-d65c-426f-b311-2c3cf20e48c4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f228a1c-c049-4db4-9473-c99cfb9b078e" + } + ] + }, + { + "label": { + "@none": [ + "247v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3495c593-7ef2-4dba-b3cd-77387a9c4c90.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1323234b-81c8-4bb0-9e14-3c82d1ee31bd", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3495c593-7ef2-4dba-b3cd-77387a9c4c90.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3495c593-7ef2-4dba-b3cd-77387a9c4c90", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3495c593-7ef2-4dba-b3cd-77387a9c4c90/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90e40277-7586-46a6-b53a-ba17d1cbd120" + } + ] + }, + { + "label": { + "@none": [ + "248r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d25edbc-81fb-4b9d-9753-1afb13f78792.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/97b71577-b815-4fa4-8fec-0326fe2cecff", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6d25edbc-81fb-4b9d-9753-1afb13f78792.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6d25edbc-81fb-4b9d-9753-1afb13f78792", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6d25edbc-81fb-4b9d-9753-1afb13f78792/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/009de28e-aa48-4cdd-868a-d99eb3d9417b" + } + ] + }, + { + "label": { + "@none": [ + "248v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/51dd98f9-0119-4d27-84f3-c5a3af58a351.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0730c490-06d5-4a36-8283-3f429dbe7311", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/51dd98f9-0119-4d27-84f3-c5a3af58a351.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/51dd98f9-0119-4d27-84f3-c5a3af58a351", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/51dd98f9-0119-4d27-84f3-c5a3af58a351/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a35eb6da-9f06-439d-b324-aaf700609b70" + } + ] + }, + { + "label": { + "@none": [ + "249r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25618087-9133-4458-96ff-2e9f0061be04.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3abab422-4ad9-4918-86ca-cb1510b2be0c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/25618087-9133-4458-96ff-2e9f0061be04.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25618087-9133-4458-96ff-2e9f0061be04", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/25618087-9133-4458-96ff-2e9f0061be04/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60f92516-a514-41eb-a899-75a142b535e5" + } + ] + }, + { + "label": { + "@none": [ + "249v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ccbe16a6-b3c0-4833-aecd-099ab8f2374d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8aa9002f-f07f-4de6-a8cf-9bd2cdca1ed9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ccbe16a6-b3c0-4833-aecd-099ab8f2374d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ccbe16a6-b3c0-4833-aecd-099ab8f2374d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ccbe16a6-b3c0-4833-aecd-099ab8f2374d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ac0bb07-a2d0-4097-8ba3-f7fe0683e00e" + } + ] + }, + { + "label": { + "@none": [ + "250r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c34addf3-27bd-4020-bdbd-0a2fa86caab1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e9853685-ac0a-4050-801e-e88a3768aa9b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c34addf3-27bd-4020-bdbd-0a2fa86caab1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c34addf3-27bd-4020-bdbd-0a2fa86caab1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c34addf3-27bd-4020-bdbd-0a2fa86caab1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d7d5644c-3176-46f2-8a70-555787164467" + } + ] + }, + { + "label": { + "@none": [ + "250v" + ] + }, + "height": 7520, + "width": 5316, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9921e86-e105-487a-a653-f36984b65d3c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/06e3229f-0023-4b18-886e-61c61d705b36", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/c9921e86-e105-487a-a653-f36984b65d3c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c9921e86-e105-487a-a653-f36984b65d3c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/c9921e86-e105-487a-a653-f36984b65d3c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35b753ab-4ec9-4ca5-9f01-73d37eb1e5a6" + } + ] + }, + { + "label": { + "@none": [ + "251r" + ] + }, + "height": 7520, + "width": 5424, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fef3b68-0865-453e-a990-80fb1f705f85.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9306fde5-2af2-4205-8a90-088939e1ebe5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2fef3b68-0865-453e-a990-80fb1f705f85.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fef3b68-0865-453e-a990-80fb1f705f85", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2fef3b68-0865-453e-a990-80fb1f705f85/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f213229c-fb77-4cbe-912f-3580c5f8de42" + } + ] + }, + { + "label": { + "@none": [ + "251v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671db830-87cc-4d55-af40-cffeea4d888b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/5f418a0f-344a-437e-bbf2-14a203972118", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/671db830-87cc-4d55-af40-cffeea4d888b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/671db830-87cc-4d55-af40-cffeea4d888b", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/671db830-87cc-4d55-af40-cffeea4d888b/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cbf02d5f-d15f-489c-a21a-33a8ba093e70" + } + ] + }, + { + "label": { + "@none": [ + "252r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8becdf13-471c-4378-b78a-4a4603d7d3ea.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9f16d388-25e1-4222-939d-9eeebbd19904", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8becdf13-471c-4378-b78a-4a4603d7d3ea.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8becdf13-471c-4378-b78a-4a4603d7d3ea", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8becdf13-471c-4378-b78a-4a4603d7d3ea/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/af1408ba-5683-4b03-8b72-87c4439990a7" + } + ] + }, + { + "label": { + "@none": [ + "252v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e61cdb8-9060-4330-85bb-1292e19c1495.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e52a56b2-8666-4495-8ee2-ffaca58418b9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e61cdb8-9060-4330-85bb-1292e19c1495.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e61cdb8-9060-4330-85bb-1292e19c1495", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e61cdb8-9060-4330-85bb-1292e19c1495/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53ddc289-7745-404a-8966-9d91621bc8fb" + } + ] + }, + { + "label": { + "@none": [ + "253r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/625bdf36-92db-4693-bb68-62146b6dc16c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/3c57cd56-3b3e-4cb5-9f4d-9125d5f375ef/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb24282c-9b88-429c-90ed-98e40844e31e" + } + ] + }, + { + "label": { + "@none": [ + "253v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a0093055-cff0-40b7-96d7-237402d1597e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2eb2a1b1-9d2d-42c5-b7de-2601dd28f827", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a0093055-cff0-40b7-96d7-237402d1597e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a0093055-cff0-40b7-96d7-237402d1597e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a0093055-cff0-40b7-96d7-237402d1597e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e379ae0-5001-4687-83cb-ce07b7104a6d" + } + ] + }, + { + "label": { + "@none": [ + "254r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4930ff2c-a826-475d-81c5-bfe978620f81.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c7ff6f25-f66d-41b0-af14-1f35859ec38f", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4930ff2c-a826-475d-81c5-bfe978620f81.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4930ff2c-a826-475d-81c5-bfe978620f81", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4930ff2c-a826-475d-81c5-bfe978620f81/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5dd5848-d81f-49e3-8154-3c8756ff705d" + } + ] + }, + { + "label": { + "@none": [ + "254v" + ] + }, + "height": 7048, + "width": 5072, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/71881d1b-a237-48bc-912b-dce43fedbaa0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/edb0cce9-524d-48fa-8548-406406feb5c4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/71881d1b-a237-48bc-912b-dce43fedbaa0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7048, + "width": 5072, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/71881d1b-a237-48bc-912b-dce43fedbaa0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/71881d1b-a237-48bc-912b-dce43fedbaa0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e49c9db-ea46-42ab-97a3-fbfbc336f653" + } + ] + }, + { + "label": { + "@none": [ + "255r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91c4c10f-f472-4d95-a565-71c8b99d93be.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/d0c22121-2072-426b-8493-24ddc1f8d34e", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/91c4c10f-f472-4d95-a565-71c8b99d93be.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91c4c10f-f472-4d95-a565-71c8b99d93be", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/91c4c10f-f472-4d95-a565-71c8b99d93be/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34088498-7787-42c0-beb1-fb75851017dc" + } + ] + }, + { + "label": { + "@none": [ + "255v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96b70e87-c3ce-4548-9b49-be5e62acb87e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b2ad8cec-bd60-4a60-acf9-e0b76c5a2e44", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/96b70e87-c3ce-4548-9b49-be5e62acb87e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96b70e87-c3ce-4548-9b49-be5e62acb87e", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/96b70e87-c3ce-4548-9b49-be5e62acb87e/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3968b3e8-8fb6-42b1-aa76-74b622faaf47" + } + ] + }, + { + "label": { + "@none": [ + "256r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/def50125-781c-40f0-b1e8-746df4304f27.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/248e41fd-ed5e-42c1-99e5-7cfba41d57f6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/def50125-781c-40f0-b1e8-746df4304f27.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/def50125-781c-40f0-b1e8-746df4304f27", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/def50125-781c-40f0-b1e8-746df4304f27/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8393c830-4556-4bda-931d-06275b792381" + } + ] + }, + { + "label": { + "@none": [ + "256v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf6176cf-0e99-410c-8346-23769b40253f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/70e2fb83-60cd-4655-a855-7a7fc09f2c6c", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/cf6176cf-0e99-410c-8346-23769b40253f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cf6176cf-0e99-410c-8346-23769b40253f", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/cf6176cf-0e99-410c-8346-23769b40253f/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23ef2152-8b9d-472f-a696-36b70bcdb15f" + } + ] + }, + { + "label": { + "@none": [ + "257r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89819d69-bfea-4407-adb5-e1b026b2b950.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/23fbfd28-36f8-4dea-8740-42bdc83cc933", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/89819d69-bfea-4407-adb5-e1b026b2b950.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89819d69-bfea-4407-adb5-e1b026b2b950", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/89819d69-bfea-4407-adb5-e1b026b2b950/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bda9aa5e-0964-4117-9bbe-79da5e7f7e64" + } + ] + }, + { + "label": { + "@none": [ + "257v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d2f88-8df0-498d-9796-8eb2b23f3366.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/a9b1b7fa-08f3-412f-8bc5-a2665bf9bcee", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e01d2f88-8df0-498d-9796-8eb2b23f3366.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e01d2f88-8df0-498d-9796-8eb2b23f3366", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e01d2f88-8df0-498d-9796-8eb2b23f3366/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1639ee3-f2a3-43b4-95fc-e8285fe11114" + } + ] + }, + { + "label": { + "@none": [ + "258r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4f8e3a98-1984-4a85-a777-849b20834d1d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c9449e97-5a85-426b-be2d-bb1c4963ad65", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4f8e3a98-1984-4a85-a777-849b20834d1d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4f8e3a98-1984-4a85-a777-849b20834d1d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4f8e3a98-1984-4a85-a777-849b20834d1d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/470832c9-a953-4f90-b21f-a35862525cf7" + } + ] + }, + { + "label": { + "@none": [ + "258v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/078955ff-cd88-40ce-bfb5-721b3ea11eab.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/445428f0-4fe9-4178-afcf-451921ea7a26", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/078955ff-cd88-40ce-bfb5-721b3ea11eab.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/078955ff-cd88-40ce-bfb5-721b3ea11eab", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/078955ff-cd88-40ce-bfb5-721b3ea11eab/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6749ccd0-37fb-4b54-a3db-848d3c8a9c90" + } + ] + }, + { + "label": { + "@none": [ + "259r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f2b54aac-549d-4488-a777-06814ac9a05a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b17507b9-c0f1-49f4-961a-a2ec872eea30", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f2b54aac-549d-4488-a777-06814ac9a05a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f2b54aac-549d-4488-a777-06814ac9a05a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f2b54aac-549d-4488-a777-06814ac9a05a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2d3ad20-e485-4c6d-9aae-7ad9e01b039d" + } + ] + }, + { + "label": { + "@none": [ + "259v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12a4ff98-e887-4278-8f96-d40418dbc1d0.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/79bf6d24-53d9-49ae-b467-e78ac92da3b6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/12a4ff98-e887-4278-8f96-d40418dbc1d0.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/12a4ff98-e887-4278-8f96-d40418dbc1d0", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/12a4ff98-e887-4278-8f96-d40418dbc1d0/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39077d2a-e989-4352-b90b-0f8bbbec691a" + } + ] + }, + { + "label": { + "@none": [ + "260r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6ff8721f-9517-463d-a191-66ddc3199b79.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b392278e-8bd3-49c1-8a9d-cb6a7cafb0f4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/6ff8721f-9517-463d-a191-66ddc3199b79.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6ff8721f-9517-463d-a191-66ddc3199b79", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/6ff8721f-9517-463d-a191-66ddc3199b79/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7805a396-5ac4-4e16-9c84-43f9d55584c5" + } + ] + }, + { + "label": { + "@none": [ + "260v" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e5a98636-d568-440e-8da1-2dbac46fe7c8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/84221d59-3576-4284-9b38-6f261225f458", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e5a98636-d568-440e-8da1-2dbac46fe7c8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e5a98636-d568-440e-8da1-2dbac46fe7c8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e5a98636-d568-440e-8da1-2dbac46fe7c8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b6443860-2542-4632-88f8-ad4319358f5e" + } + ] + }, + { + "label": { + "@none": [ + "261r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/81f408b0-b34b-43cd-9da8-33a08957e08a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/59ed6960-ec40-4867-a90b-33f4ab94e370", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/81f408b0-b34b-43cd-9da8-33a08957e08a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/81f408b0-b34b-43cd-9da8-33a08957e08a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/81f408b0-b34b-43cd-9da8-33a08957e08a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/044af487-b90c-4439-b31d-a7c1e0a76e10" + } + ] + }, + { + "label": { + "@none": [ + "261v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0b54715c-33a8-4799-8814-8868084863c1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/552d556a-ffb0-444a-8678-4ffd3dae9480", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/0b54715c-33a8-4799-8814-8868084863c1.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0b54715c-33a8-4799-8814-8868084863c1", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/0b54715c-33a8-4799-8814-8868084863c1/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2933ce7-0789-4245-a84d-f05cb11801ea" + } + ] + }, + { + "label": { + "@none": [ + "262r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ad9f3ece-0ca4-41b2-b54c-b163005bc376.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2b64b395-bdb1-4526-8482-0125b1cf4cb9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ad9f3ece-0ca4-41b2-b54c-b163005bc376.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ad9f3ece-0ca4-41b2-b54c-b163005bc376", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ad9f3ece-0ca4-41b2-b54c-b163005bc376/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb6bc7d3-5e91-4289-acd5-05f4bb6672aa" + } + ] + }, + { + "label": { + "@none": [ + "262v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7edd2c6d-dd23-43ef-8fb1-836b5a784c23.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1af0de61-2966-47a6-ad2b-e5755eef6626", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7edd2c6d-dd23-43ef-8fb1-836b5a784c23.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7edd2c6d-dd23-43ef-8fb1-836b5a784c23", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7edd2c6d-dd23-43ef-8fb1-836b5a784c23/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/508d326a-278b-48e4-921c-e1e942041c81" + } + ] + }, + { + "label": { + "@none": [ + "263r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c01fb38-abc6-491b-b42b-3fd26b656d46.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9b287dd5-48ab-40fc-b0d1-b707882149c6", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/9c01fb38-abc6-491b-b42b-3fd26b656d46.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c01fb38-abc6-491b-b42b-3fd26b656d46", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/9c01fb38-abc6-491b-b42b-3fd26b656d46/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ec5226f9-50ae-4a58-b722-416d52fffb19" + } + ] + }, + { + "label": { + "@none": [ + "263v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c774e77-2d95-4e32-80cd-810750e41221.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6b3b2d84-d73c-452d-b0e9-ced94573ce3d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7c774e77-2d95-4e32-80cd-810750e41221.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7c774e77-2d95-4e32-80cd-810750e41221", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7c774e77-2d95-4e32-80cd-810750e41221/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43d13f9f-17cd-4279-b4cd-59e2ba88d9a6" + } + ] + }, + { + "label": { + "@none": [ + "264r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5b51996-fffb-44b1-ac4c-168bb4ecc94c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb83adbc-7486-4763-9a32-54bd8f6e231b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d5b51996-fffb-44b1-ac4c-168bb4ecc94c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5b51996-fffb-44b1-ac4c-168bb4ecc94c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d5b51996-fffb-44b1-ac4c-168bb4ecc94c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9376b3da-c5b5-472f-ad89-6057f7d9bea7" + } + ] + }, + { + "label": { + "@none": [ + "264v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f76bc3bf-9608-4015-98f3-69bf3af6edf4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f2771b86-2ef8-441e-ab40-98275e9bc095", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f76bc3bf-9608-4015-98f3-69bf3af6edf4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f76bc3bf-9608-4015-98f3-69bf3af6edf4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f76bc3bf-9608-4015-98f3-69bf3af6edf4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/27dde14a-d86b-4ca1-9466-69583f15c8db" + } + ] + }, + { + "label": { + "@none": [ + "265r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a76a4cd9-5857-4b80-9ef5-cf20f474ea46.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/022e4c1c-a6b9-4253-8813-23f5653a06a9", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a76a4cd9-5857-4b80-9ef5-cf20f474ea46.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a76a4cd9-5857-4b80-9ef5-cf20f474ea46", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a76a4cd9-5857-4b80-9ef5-cf20f474ea46/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fa5f731-622f-4e66-a830-b9db7403f196" + } + ] + }, + { + "label": { + "@none": [ + "265v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/543fd15c-d644-41e3-b735-d611e33b899a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/6421345b-3177-40db-b48a-67fb65858ee8", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/543fd15c-d644-41e3-b735-d611e33b899a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/543fd15c-d644-41e3-b735-d611e33b899a", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/543fd15c-d644-41e3-b735-d611e33b899a/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1e34e88-25c9-4d7f-8b94-43c40e92a6bc" + } + ] + }, + { + "label": { + "@none": [ + "266r" + ] + }, + "height": 7520, + "width": 5364, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4020b107-ab09-4959-b911-e150d33cd042.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1b92e957-464d-4f04-95ce-520bbcac8f10", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/4020b107-ab09-4959-b911-e150d33cd042.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4020b107-ab09-4959-b911-e150d33cd042", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/4020b107-ab09-4959-b911-e150d33cd042/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04667ab2-4f73-4e11-985b-ef71aa401b19" + } + ] + }, + { + "label": { + "@none": [ + "266v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff2e43bd-b9c1-4d32-b736-bf7ec8057471.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b8e33b89-bde8-429e-8546-84e11de00741", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ff2e43bd-b9c1-4d32-b736-bf7ec8057471.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff2e43bd-b9c1-4d32-b736-bf7ec8057471", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ff2e43bd-b9c1-4d32-b736-bf7ec8057471/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0d770b3-648e-4be2-b881-f033db28b697" + } + ] + }, + { + "label": { + "@none": [ + "267r" + ] + }, + "height": 7520, + "width": 5328, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e731b9d3-3f31-4a2b-8b89-2192d75b2466.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/046ae14d-8665-444f-a1cb-57aedb0936da", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e731b9d3-3f31-4a2b-8b89-2192d75b2466.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5328, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e731b9d3-3f31-4a2b-8b89-2192d75b2466", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e731b9d3-3f31-4a2b-8b89-2192d75b2466/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7f28f30f-c2ee-4f59-a88d-014913cb62c2" + } + ] + }, + { + "label": { + "@none": [ + "267v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a299b3dc-032b-42fd-8597-440a6180e2d7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/76c792bf-0bb0-4cb3-aedb-3ad7bf9615f4", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/a299b3dc-032b-42fd-8597-440a6180e2d7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a299b3dc-032b-42fd-8597-440a6180e2d7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/a299b3dc-032b-42fd-8597-440a6180e2d7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8529a754-8fd8-4fbc-8f27-36534d021a14" + } + ] + }, + { + "label": { + "@none": [ + "268r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/164a74ea-a50f-4db1-a114-2b0d90f010c4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3c27471b-24e5-4f9b-8b22-c7a36b5c05b5", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/164a74ea-a50f-4db1-a114-2b0d90f010c4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/164a74ea-a50f-4db1-a114-2b0d90f010c4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/164a74ea-a50f-4db1-a114-2b0d90f010c4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b76394d3-2caa-4598-8036-67d9c92d8b98" + } + ] + }, + { + "label": { + "@none": [ + "268v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1348a6ff-1324-4813-bf5e-292d3ae19c5c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7860675c-f541-42df-aae0-9eab9022d90b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/1348a6ff-1324-4813-bf5e-292d3ae19c5c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1348a6ff-1324-4813-bf5e-292d3ae19c5c", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/1348a6ff-1324-4813-bf5e-292d3ae19c5c/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce73f5a0-1548-4603-8012-e9513af8fab3" + } + ] + }, + { + "label": { + "@none": [ + "269r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ffe79fbc-1229-415e-a461-7cf6c0bb42f5.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/60696b0a-de36-4b0b-904f-2be50402f810", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/ffe79fbc-1229-415e-a461-7cf6c0bb42f5.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ffe79fbc-1229-415e-a461-7cf6c0bb42f5", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/ffe79fbc-1229-415e-a461-7cf6c0bb42f5/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9d807d8-4871-44cb-aa03-9c15d1309706" + } + ] + }, + { + "label": { + "@none": [ + "269v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07263c2d-5742-485d-a5e2-e442f9a28bf3.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/76b79d74-820a-484e-8276-08170472b763", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/07263c2d-5742-485d-a5e2-e442f9a28bf3.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07263c2d-5742-485d-a5e2-e442f9a28bf3", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/07263c2d-5742-485d-a5e2-e442f9a28bf3/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb627355-c303-4dae-be9f-191c827de960" + } + ] + }, + { + "label": { + "@none": [ + "270r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb2a300e-554c-4e47-be28-0768cfb7cae2", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2b31d5bb-cf66-45cf-b5cc-9e33724ed1e8/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69c0e0b1-6cb2-4841-9bd2-d180ed320121" + } + ] + }, + { + "label": { + "@none": [ + "270v" + ] + }, + "height": 7520, + "width": 5400, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d28069d9-d72a-4a26-8a4b-3bca3e636845.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/be147daa-22f1-4a6c-a8c1-2434530bb1a7", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/d28069d9-d72a-4a26-8a4b-3bca3e636845.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d28069d9-d72a-4a26-8a4b-3bca3e636845", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/d28069d9-d72a-4a26-8a4b-3bca3e636845/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbcc5395-a475-4ffd-8e4a-0da960a1897c" + } + ] + }, + { + "label": { + "@none": [ + "271r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bc1255-721b-4072-a442-595e603e71e7.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/61c1df3b-4457-4a13-b086-d025bd603f16", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/f5bc1255-721b-4072-a442-595e603e71e7.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5bc1255-721b-4072-a442-595e603e71e7", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/f5bc1255-721b-4072-a442-595e603e71e7/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81d9488a-bef7-459c-869c-895f1436c460" + } + ] + }, + { + "label": { + "@none": [ + "271v" + ] + }, + "height": 7520, + "width": 5496, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bf8b8a31-57d1-4230-ac2d-7b9972eecc81", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2d8e8a14-29b9-41a6-a63d-cedb4bec86f4/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c0b0b4f-eabf-4a91-aaaa-cbf24afbf973" + } + ] + }, + { + "label": { + "@none": [ + "272r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2618f8e6-99cd-4113-80d9-ecfbef0a293d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f9e8a164-07c3-43cb-9a57-92e422b12d08", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/2618f8e6-99cd-4113-80d9-ecfbef0a293d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2618f8e6-99cd-4113-80d9-ecfbef0a293d", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/2618f8e6-99cd-4113-80d9-ecfbef0a293d/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d578746-c946-4fe9-a4c2-b8dc510262be" + } + ] + }, + { + "label": { + "@none": [ + "272v" + ] + }, + "height": 7520, + "width": 5496, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d01bc1d-f89b-44a9-9a04-901ad2d62f68.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1cf6ace1-90dd-4db0-89b7-951f2caea911", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/7d01bc1d-f89b-44a9-9a04-901ad2d62f68.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7d01bc1d-f89b-44a9-9a04-901ad2d62f68", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/7d01bc1d-f89b-44a9-9a04-901ad2d62f68/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5d4cb5d-233a-4ded-a9cd-3ad9460490fa" + } + ] + }, + { + "label": { + "@none": [ + "273r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e774645-6049-4539-87ac-f6e91fca6514.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b438c6eb-c8e0-403d-87d3-738f6c00437b", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/8e774645-6049-4539-87ac-f6e91fca6514.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e774645-6049-4539-87ac-f6e91fca6514", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/8e774645-6049-4539-87ac-f6e91fca6514/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b1644c5-cb4a-4b89-b65e-0bf92e095525" + } + ] + }, + { + "label": { + "@none": [ + "273v" + ] + }, + "height": 7520, + "width": 5496, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4f131c6-7148-4f5a-a8d7-9df13e56d494.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e5e3f692-d491-4f3b-9813-3e5e3003ad36", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e4f131c6-7148-4f5a-a8d7-9df13e56d494.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e4f131c6-7148-4f5a-a8d7-9df13e56d494", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e4f131c6-7148-4f5a-a8d7-9df13e56d494/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e169f3bf-7635-4ad9-b18f-754725ff2a93" + } + ] + }, + { + "label": { + "@none": [ + "274r" + ] + }, + "height": 7520, + "width": 5412, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48dc2f6e-f4c4-4fb2-b44d-41277dbed078.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c0d8c2f9-0fdd-4b04-91a7-c4d58a93609d", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/48dc2f6e-f4c4-4fb2-b44d-41277dbed078.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5412, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48dc2f6e-f4c4-4fb2-b44d-41277dbed078", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/48dc2f6e-f4c4-4fb2-b44d-41277dbed078/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a0c56a2-7650-46de-a030-7b2a40f6bc95" + } + ] + }, + { + "label": { + "@none": [ + "274v" + ] + }, + "height": 7520, + "width": 5496, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e17b0ea5-bafd-4aff-8f43-49fec921ba73.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8341250b-f967-490b-a62f-bd289259bde3", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/e17b0ea5-bafd-4aff-8f43-49fec921ba73.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e17b0ea5-bafd-4aff-8f43-49fec921ba73", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/e17b0ea5-bafd-4aff-8f43-49fec921ba73/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7c63b22-4ac7-421f-aaef-2d60656646ce" + } + ] + }, + { + "label": { + "@none": [ + "Inside lower cover" + ] + }, + "height": 7520, + "width": 5664, + "type": "Canvas", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ee99bc22-b582-4544-9a23-f43e87006f65", + "target": [ + { + "id": "http://iiif.bodleian.ox.ac.uk/iiif/canvas/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 7520, + "width": 5664, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://iiif.bodleian.ox.ac.uk/iiif/image/481bc4a3-f8b6-4ea1-955b-53a8d97f2f18/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa99ff2f-5274-4abb-8909-63e925027db1" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.harvardartmuseums.org__manifests__object__299843.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.harvardartmuseums.org__manifests__object__299843.json new file mode 100644 index 0000000..9c8e9a2 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.harvardartmuseums.org__manifests__object__299843.json @@ -0,0 +1,518 @@ +{ + "label": { + "@none": [ + "Self-Portrait Dedicated to Paul Gauguin" + ] + }, + "logo": [ + { + "id": "https://www.harvardartmuseums.org/assets/images/logo.png", + "type": "Image" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1888" + ] + } + }, + { + "label": { + "@none": [ + "Classification" + ] + }, + "value": { + "@none": [ + "Paintings" + ] + } + }, + { + "label": { + "@none": [ + "Credit Line" + ] + }, + "value": { + "@none": [ + "Harvard Art Museums/Fogg Museum, Bequest from the Collection of Maurice Wertheim, Class of 1906" + ] + } + }, + { + "label": { + "@none": [ + "Object Number" + ] + }, + "value": { + "@none": [ + "1951.65" + ] + } + }, + { + "label": { + "@none": [ + "People" + ] + }, + "value": { + "@none": [ + "Artist: Vincent van Gogh, Dutch, 1853 - 1890" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Oil on canvas" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "61.5 x 50.3 cm (24 3/16 x 19 13/16 in.)\r\nframed: 90.4 x 79.7 x 8.3 cm (35 9/16 x 31 3/8 x 3 1/4 in.)" + ] + } + }, + { + "label": { + "@none": [ + "Provenance" + ] + }, + "value": { + "@none": [ + "Vincent van Gogh, Arles, (1888,) gift; to Paul Gauguin, (1888-1897) sold. [Ambroise Vollard, Paris.] [Paul Cassirer Gallery, Berlin.] Dr. Hugo von Tschudi, Berlin, (1906-1911), by descent; to his widow, Angela von Tschudi, Munich (1911-1919), to Neue Staatsgalerie, Munich (1919-1938); removed from the collection by the National Socialist (Nazi) authorities in 1938, consigned; to [Theodor Fischer Gallery, Lucerne, Switzerland, for sale June 30, 1939, lot 45]; to Maurice Wertheim (1939-1951) bequest; to Fogg Art Museum, 1951.\r\n\r\n \r\n\r\nNotes:\r\nGauguin sold the painting for Fr 300\r\nHugo von Tschudi bought the painting for the Nationalgalerie, Berlin, with funds from sponsors, but did not submit it to the Kaiser for pre-approval. He took the painting to Munich when he assumed a post there.\r\nAccording to Stephanie Barron, the van Gogh was removed from the Neue Staatsgalerie on March 27, 1938 and stored at Schloss Niederschönhausen in August of that year. (Barron, 1990,pp. 135-146)\r\n" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "" + ] + } + } + ], + "rendering": [ + { + "format": "text/html", + "label": { + "@none": [ + "Full record view" + ] + }, + "type": "Text", + "id": "https://www.harvardartmuseums.org/collections/object/299843" + } + ], + "type": "Manifest", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Harvard Art Museums" + ] + } + }, + "partOf": [ + { + "id": "https://www.harvardartmuseums.org/collections", + "type": "Collection" + } + ], + "items": [ + { + "height": 2550, + "label": { + "@none": [ + "1" + ] + }, + "width": 2087, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174896" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174896", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896", + "type": "ImageService1" + } + ], + "width": 2087, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174896/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9064845-7e07-41f0-bb32-6b7348d79301" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "2" + ] + }, + "width": 2088, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-18737483", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/18737483" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-18737483", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-18737483", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/18737483", + "type": "ImageService1" + } + ], + "width": 2088, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/18737483/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2d02b70-5c3b-4b96-91e9-0e091f49a971" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "3" + ] + }, + "width": 2259, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174892", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/47174892" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-47174892", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174892", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174892", + "type": "ImageService1" + } + ], + "width": 2259, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/47174892/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1482eefd-13db-4120-a171-215132add606" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "4" + ] + }, + "width": 2100, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43182083", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/43182083" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-43182083", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43182083", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/43182083", + "type": "ImageService1" + } + ], + "width": 2100, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/43182083/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f74688bc-7900-45f9-aaac-a83a214fce00" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "5" + ] + }, + "width": 2082, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183405", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/43183405" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-43183405", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183405", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/43183405", + "type": "ImageService1" + } + ], + "width": 2082, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/43183405/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e70d236-f549-4115-950c-da04b0d2eb4e" + } + ] + }, + { + "height": 2550, + "label": { + "@none": [ + "6" + ] + }, + "width": 2093, + "type": "Canvas", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183422", + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/list/43183422" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/annotation/anno-43183422", + "target": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183422", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2550, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/43183422", + "type": "ImageService1" + } + ], + "width": 2093, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/43183422/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90467f9d-9ebc-4dc1-8728-dabb8ea8c953" + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/sequence/normal", + "type": "Range", + "behavior": [ + "sequence", + "individuals" + ], + "items": [ + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174896", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-18737483", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-47174892", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43182083", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183405", + "type": "Canvas" + }, + { + "id": "https://iiif.harvardartmuseums.org/manifests/object/299843/canvas/canvas-43183422", + "type": "Canvas" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.io__api__presentation__2.1__example__fixtures__1__manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.io__api__presentation__2.1__example__fixtures__1__manifest.json new file mode 100644 index 0000000..c4eae84 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.io__api__presentation__2.1__example__fixtures__1__manifest.json @@ -0,0 +1,58 @@ +{ + "label": { + "@none": [ + "Test 1 Manifest: Minimum Required Fields" + ] + }, + "type": "Manifest", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/1/manifest.json", + "partOf": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/collection.json", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "Test 1 Canvas: 1" + ] + }, + "height": 1800, + "width": 1200, + "type": "Canvas", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3644c005-bf7a-48d0-9fa9-1e1757bf8df1", + "target": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/canvas/1/c1.json", + "type": "Canvas" + } + ], + "body": [ + { + "height": 1800, + "width": 1200, + "type": "Image", + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png" + } + ] + } + ], + "id": "https://example.org/uuid/1dad04b3-79c6-4a97-a831-634f2ee50a26" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.lib.harvard.edu__manifests__drs:48309543.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.lib.harvard.edu__manifests__drs:48309543.json new file mode 100644 index 0000000..bf6a3c7 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/iiif.lib.harvard.edu__manifests__drs:48309543.json @@ -0,0 +1,2896 @@ +{ + "structures": [ + { + "label": { + "@none": [ + "Table of Contents" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1.json", + "items": [ + { + "label": { + "@none": [ + "Bibliographic information (seq. 1-20)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1.json", + "items": [ + { + "label": { + "@none": [ + "(seq. 1)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-1.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 2)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-2.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 3)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-3.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 4)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-4.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 5)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-5.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 6)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-6.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 7)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-7.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 8)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-8.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 9)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-9.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 10)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-10.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 11)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-11.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 12)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-12.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 13)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-13.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 14)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-14.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 15)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-15.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 16)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-16.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 17)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-17.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 18)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-18.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 19)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-19.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 20)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-1-20.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "type": "Canvas" + } + ] + } + ] + }, + { + "label": { + "@none": [ + "Recto (seq. 21-40)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2.json", + "items": [ + { + "label": { + "@none": [ + "(seq. 21)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-1.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 22)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-2.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 23)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-3.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 24)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-4.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 25)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-5.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 26)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-6.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 27)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-7.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 28)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-8.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 29)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-9.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 30)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-10.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 31)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-11.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 32)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-12.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 33)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-13.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 34)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-14.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 35)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-15.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 36)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-16.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 37)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-17.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 38)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-18.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 39)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-19.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 40)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-2-20.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "type": "Canvas" + } + ] + } + ] + }, + { + "label": { + "@none": [ + "Scroll view (stitched digital image) (seq. 41)" + ] + }, + "type": "Range", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/range/range-1-3.json", + "items": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "type": "Canvas" + } + ] + } + ] + } + ], + "label": { + "@none": [ + "Chronique du monde depuis la création, et des rois de France et d'Angleterre, jusqu'à l'an 1461: manuscript, [ca. 1461]. MS Typ 41. Houghton Library, Harvard University, Cambridge, Mass." + ] + }, + "logo": [ + { + "id": "https://iiif.lib.harvard.edu/static/manifests/harvard_logo.jpg", + "type": "Image" + } + ], + "type": "Manifest", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543", + "metadata": [ + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://nrs.harvard.edu/urn-3:hul.ois:hlviewerterms" + ] + } + } + ], + "items": [ + { + "label": { + "@none": [ + "(seq. 1)" + ] + }, + "width": 1694, + "height": 2317, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309544.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309544.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 2317, + "width": 1694, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309544/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63d7a009-3671-4518-9b6d-70dd1d4334f7" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 2)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309545/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309545.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309545.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309545", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309545/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5187b3e-4c20-4e3c-8f26-6ba34fe859dc" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 3)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309546/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309546.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309546.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309546", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309546/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0a233b56-8d4e-4062-a812-61ea18a58f5a" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 4)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309547/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309547.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309547.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309547", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309547/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7bdaf80a-e9e0-48e1-a8bd-3e223ab9c156" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 5)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309548/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309548.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309548.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309548", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309548/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51e6a500-8ec0-4cb4-863b-bb8416325a9e" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 6)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309549/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309549.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309549.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309549", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309549/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fd19b72-4602-4b7a-84ab-bbb00e97bebf" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 7)" + ] + }, + "width": 8000, + "height": 5616, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309550/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309550.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309550.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309550", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 5616, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309550/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/af7cd84d-d061-4155-80e8-4516fe6e484f" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 8)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309551/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309551.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309551.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309551", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309551/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b209e63d-90ee-4d8e-a3e2-881b47046ed4" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 9)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309552/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309552.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309552.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309552", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309552/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44b6c480-15e2-41a0-bd71-200e34794d56" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 10)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309553/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309553.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309553.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309553", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309553/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/368b9d6f-27e8-4f42-9ccf-33df96898dc8" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 11)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309554/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309554.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309554.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309554", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309554/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80553e76-a514-4808-93f4-cda265813506" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 12)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309555/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309555.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309555.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309555", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309555/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92c92677-e5e7-41bc-833c-8b36d469c663" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 13)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309556/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309556.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309556.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309556", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309556/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac90c2b8-b93e-4046-8517-1180c4210274" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 14)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309557/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309557.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309557.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309557", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309557/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d3b3d56-0bac-4f48-b714-406c4a10495d" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 15)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309558/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309558.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309558.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309558", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309558/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f43402fb-4231-4b3a-9008-790b11b6b8a4" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 16)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309559/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309559.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309559.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309559", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309559/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9e08aff-3f01-4eef-9718-0135be0c22f3" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 17)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309560/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309560.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309560.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309560", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309560/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8332a055-35dd-40fe-a019-89c6fb1eff27" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 18)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309561/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309561.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309561.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309561", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309561/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8c2b69c-51f0-4e80-b3ab-c732163b31fd" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 19)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309562/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309562.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309562.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309562", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309562/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/384e8b43-37b7-4cee-8664-b1881202aacf" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 20)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309563/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309563.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309563.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309563", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309563/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8b4cc90-93ea-46df-9bd8-061937b52556" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 21)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309564/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309564.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309564.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309564", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309564/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9aab6e3d-45ac-4c08-96f0-a154980960db" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 22)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309565/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309565.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309565.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309565", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309565/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80c4fd77-de67-4894-ae2e-c4814292db72" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 23)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309566/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309566.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309566.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309566", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309566/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3cb55258-8b6c-4f1b-bdb9-255b72468c44" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 24)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309567/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309567.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309567.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309567", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309567/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b058f82b-43be-4a5b-bdb0-1a1d50cf5833" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 25)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309568/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309568.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309568.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309568", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309568/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab9de61e-1b7a-4923-b953-69a6c8977944" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 26)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309569/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309569.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309569.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309569", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309569/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99a193f5-ad24-4a3f-b124-bc7f65f3fc3b" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 27)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309570/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309570.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309570.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309570", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309570/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/091ad20a-14d0-40eb-b733-876bb226fdb2" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 28)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309571/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309571.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309571.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309571", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309571/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7379a562-ac2c-4363-af23-4907ee3da6cf" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 29)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309572/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309572.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309572.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309572", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309572/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86077528-a172-449e-81be-67769721269f" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 30)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309573/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309573.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309573.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309573", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309573/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/79daa74b-fcc5-4529-9d5b-050ebe490c96" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 31)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309574/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309574.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309574.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309574", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309574/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac9102d2-7ecf-414c-a7a6-ffe4f26c8bcf" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 32)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309575/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309575.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309575.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309575", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309575/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c2a43b5-74b5-4e00-9726-e8135fb0465e" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 33)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309576/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309576.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309576.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309576", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309576/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e654d0f-2b4c-4cde-8610-e53c2322c175" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 34)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309577/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309577.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309577.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309577", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309577/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/28ddb974-fbae-4703-acec-80c85fa51796" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 35)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309578/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309578.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309578.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309578", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309578/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d34b18d3-079b-4523-808e-0084319e8ae8" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 36)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309579/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309579.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309579.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309579", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309579/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d569bac7-0312-48d2-9e67-6e119d47a215" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 37)" + ] + }, + "width": 8000, + "height": 5052, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309580/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309580.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309580.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309580", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 5052, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309580/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c5cdf41-71d3-4f0a-9c09-5a2d298bcbae" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 38)" + ] + }, + "width": 8000, + "height": 5412, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309581/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309581.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309581.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309581", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 5412, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309581/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6bb6ae62-b25f-4e3e-8f10-97f23572ad08" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 39)" + ] + }, + "width": 8000, + "height": 6000, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309582/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309582.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309582.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309582", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309582/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/78277260-2fc9-4473-a124-66463498b351" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 40)" + ] + }, + "width": 8000, + "height": 5340, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309583/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48309583.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48309583.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309583", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 5340, + "width": 8000, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48309583/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d349ac2-cf30-450b-be3d-79c0e5761faa" + } + ] + }, + { + "label": { + "@none": [ + "(seq. 41)" + ] + }, + "width": 8154, + "height": 142849, + "thumbnail": [ + { + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48530377/full/,150/0/native.jpg" + } + ], + "type": "Canvas", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/annotation/anno-48530377.json", + "target": [ + { + "id": "https://iiif.lib.harvard.edu/manifests/drs:48309543/canvas/canvas-48530377.json", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://ids.lib.harvard.edu/ids/iiif/48530377", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "height": 142849, + "width": 8154, + "type": "Image", + "id": "https://ids.lib.harvard.edu/ids/iiif/48530377/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e56a1d91-e995-4b45-9ea2-81a669fc3bce" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/lbiiif.riksarkivet.se__arkis!R0000004__manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/lbiiif.riksarkivet.se__arkis!R0000004__manifest.json new file mode 100644 index 0000000..52e8220 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/lbiiif.riksarkivet.se__arkis!R0000004__manifest.json @@ -0,0 +1,1334 @@ +{ + "label": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ], + "en": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Arkiv" + ], + "en-GB": [ + "Archive" + ] + }, + "value": { + "@none": [ + "Originaltraktater med främmande makter (traktater)" + ] + } + }, + { + "label": { + "sv": [ + "Serie" + ], + "en-GB": [ + "Serie" + ] + }, + "value": { + "@none": [ + "Danmark" + ] + } + }, + { + "label": { + "sv": [ + "Referenskod" + ], + "en-GB": [ + "Reference code" + ] + }, + "value": { + "@none": [ + "SE/RA/25.3/1/1" + ] + } + }, + { + "label": { + "sv": [ + "Titel" + ], + "en-GB": [ + "Title" + ] + }, + "value": { + "@none": [ + "18 november 1568" + ] + } + }, + { + "label": { + "sv": [ + "Datering" + ], + "en-GB": [ + "Date" + ] + }, + "value": { + "@none": [ + "1568" + ] + } + }, + { + "label": { + "sv": [ + "Anmärkning" + ], + "en-GB": [ + "Remark" + ] + }, + "value": { + "@none": [ + "Fredsfördrag. Dat. Roskilde" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "@none": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568)" + ] + } + } + ], + "type": "Manifest", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/manifest", + "items": [ + { + "label": { + "sv": [ + "Bild 1" + ], + "en-GB": [ + "Image 1" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00001" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00001" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00001" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00001" + ] + } + } + ], + "height": 5001, + "width": 7022, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p1", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5001, + "width": 7022, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00001/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6bf1c22-dd03-4f63-9a95-54da248c4b7c" + } + ] + }, + { + "label": { + "sv": [ + "Bild 2" + ], + "en-GB": [ + "Image 2" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00002" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00002" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00002" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00002" + ] + } + } + ], + "height": 8926, + "width": 6453, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p2", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8926, + "width": 6453, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00002", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00002/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2a8bd6f-a322-42eb-b7b1-07a25199fad3" + } + ] + }, + { + "label": { + "sv": [ + "Bild 3" + ], + "en-GB": [ + "Image 3" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00003" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00003" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00003" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00003" + ] + } + } + ], + "height": 8874, + "width": 6504, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p3", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8874, + "width": 6504, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00003", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00003/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7765cdb6-4746-4113-9fbb-7e4d21295618" + } + ] + }, + { + "label": { + "sv": [ + "Bild 4" + ], + "en-GB": [ + "Image 4" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00004" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00004" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00004" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00004" + ] + } + } + ], + "height": 8866, + "width": 12873, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p4", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8866, + "width": 12873, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00004", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00004/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cea35819-4951-414d-924c-11d84b56ca09" + } + ] + }, + { + "label": { + "sv": [ + "Bild 5" + ], + "en-GB": [ + "Image 5" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00005" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00005" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00005" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00005" + ] + } + } + ], + "height": 8911, + "width": 12538, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p5", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8911, + "width": 12538, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00005", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00005/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7eb81ad-539a-4910-b6e8-8b34eac824dd" + } + ] + }, + { + "label": { + "sv": [ + "Bild 6" + ], + "en-GB": [ + "Image 6" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00006" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00006" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00006" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00006" + ] + } + } + ], + "height": 8968, + "width": 12921, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p6", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8968, + "width": 12921, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00006", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00006/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/470432fd-61ff-46e5-bd38-cab8c6779b5d" + } + ] + }, + { + "label": { + "sv": [ + "Bild 7" + ], + "en-GB": [ + "Image 7" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00007" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00007" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00007" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00007" + ] + } + } + ], + "height": 8936, + "width": 12909, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p7", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8936, + "width": 12909, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00007", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00007/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17d9571c-3c4b-4b7d-8362-72259d758cb4" + } + ] + }, + { + "label": { + "sv": [ + "Bild 8" + ], + "en-GB": [ + "Image 8" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00008" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00008" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00008" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00008" + ] + } + } + ], + "height": 8914, + "width": 12546, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p8", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8914, + "width": 12546, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00008", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00008/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4faab575-2aa0-402e-a43a-64a20a0934cc" + } + ] + }, + { + "label": { + "sv": [ + "Bild 9" + ], + "en-GB": [ + "Image 9" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00009" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00009" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00009" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00009" + ] + } + } + ], + "height": 8903, + "width": 12541, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p9", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8903, + "width": 12541, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00009", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00009/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/919bd1ff-ef06-412d-b4e3-ecf4fe2e97b9" + } + ] + }, + { + "label": { + "sv": [ + "Bild 10" + ], + "en-GB": [ + "Image 10" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00010" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00010" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00010" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00010" + ] + } + } + ], + "height": 8864, + "width": 12908, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p10", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p10", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8864, + "width": 12908, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00010", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00010/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9c2312a-c869-47a5-bae5-9f90877e9c73" + } + ] + }, + { + "label": { + "sv": [ + "Bild 11" + ], + "en-GB": [ + "Image 11" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00011" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00011" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00011" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00011" + ] + } + } + ], + "height": 8865, + "width": 6539, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p11", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 8865, + "width": 6539, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00011", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00011/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94ed0dd3-44f8-40bf-82ae-503f2455c42e" + } + ] + }, + { + "label": { + "sv": [ + "Bild 12" + ], + "en-GB": [ + "Image 12" + ] + }, + "metadata": [ + { + "label": { + "sv": [ + "Bildid" + ], + "en-GB": [ + "Image ID" + ] + }, + "value": { + "@none": [ + "R0000004_00012" + ] + } + }, + { + "label": { + "sv": [ + "Länk" + ], + "en-GB": [ + "Link" + ] + }, + "value": { + "@none": [ + "https://sok.riksarkivet.se/bildvisning/R0000004_00012" + ] + } + }, + { + "label": { + "sv": [ + "Källhänvisning" + ], + "en-GB": [ + "Source reference" + ] + }, + "value": { + "sv": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), bildid: R0000004_00012" + ], + "en-GB": [ + "Originaltraktater med främmande makter (traktater), Danmark, SE/RA/25.3/1/1 (1568), Image ID: R0000004_00012" + ] + } + } + ], + "height": 5053, + "width": 7105, + "type": "Canvas", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p12", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/annotation/p12", + "target": [ + { + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004/canvas/p12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 5053, + "width": 7105, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00012", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://lbiiif.riksarkivet.se/arkis!R0000004_00012/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95851219-c1ca-468a-bf3f-dea1003fcdfb" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/manifests.britishart.yale.edu__manifest__1474.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/manifests.britishart.yale.edu__manifest__1474.json new file mode 100644 index 0000000..19057eb --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/manifests.britishart.yale.edu__manifest__1474.json @@ -0,0 +1,502 @@ +{ + "label": { + "@none": [ + "Peter Gaspar Scheemakers, 1691–1781, Flemish, active in Britain (from ca. 1720), Alexander Pope, ca. 1740, Marble, Yale Center for British Art, B1977.14.29, Paintings and Sculpture" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Creator(s)" + ] + }, + "value": { + "@none": [ + "Peter Gaspar Scheemakers, 1691–1781, Flemish, active in Britain (from ca. 1720)" + ] + } + }, + { + "label": { + "@none": [ + "Titles" + ] + }, + "value": { + "@none": [ + "Alexander Pope" + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "ca. 1740" + ] + } + }, + { + "label": { + "@none": [ + "Medium" + ] + }, + "value": { + "@none": [ + "Marble" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "Overall: 27 x 18 x 9 inches (68.6 x 45.7 x 22.9 cm)" + ] + } + }, + { + "label": { + "@none": [ + "Inscriptions" + ] + }, + "value": { + "@none": [ + "Chiseled on front of socle: \"POPE.\"" + ] + } + }, + { + "label": { + "@none": [ + "Credit line" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art, Paul Mellon Collection" + ] + } + }, + { + "label": { + "@none": [ + "Institution" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art" + ] + } + }, + { + "label": { + "@none": [ + "Collection" + ] + }, + "value": { + "@none": [ + "Paintings and Sculpture" + ] + } + }, + { + "label": { + "@none": [ + "Accession number" + ] + }, + "value": { + "@none": [ + "B1977.14.29" + ] + } + }, + { + "label": { + "@none": [ + "Bibliography" + ] + }, + "value": { + "@none": [ + "Prof. Maynard Mack, The World of Alexander Pope, Yale University Press, New Haven, no. 20, Z8704 M37", + "Malcolm Baker, Literary Figures, Apollo, 179, June 2014, p. 76, N1 A54+ 179:2" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Overall: 27 x 18 x 9 inches (68.6 x 45.7 x 22.9 cm), Chiseled on front of socle: \"POPE.\"" + ] + } + } + ], + "logo": [ + { + "id": "https://static.britishart.yale.edu/images/ycba_logo.jpg", + "type": "Image" + } + ], + "seeAlso": [ + { + "format": "text/xml", + "profile": "http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd", + "type": "Dataset", + "id": "https://manifests.britishart.yale.edu/xml/1474.xml" + }, + { + "format": "text/rdf+n3", + "type": "Dataset", + "id": "http://collection.britishart.yale.edu/id/data/object/1474" + } + ], + "type": "Manifest", + "id": "https://manifests.britishart.yale.edu/manifest/1474", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Yale Center for British Art, Paul Mellon Collection,
Public Domain
" + ] + } + }, + "homepage": { + "label": { + "@none": [ + "catalog entry at the Yale Center for British Art" + ] + }, + "format": "text/html", + "type": "Text", + "id": "http://collections.britishart.yale.edu/vufind/Record/1666375" + }, + "items": [ + { + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8173, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-pub", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8173, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/1778fd7f-0dd6-4229-b667-fb682255a8f1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad8fecde-2b8a-4760-aaf9-e7a700c6ac41" + } + ] + }, + { + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8955, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-bar", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0001-bar", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-bar", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/915ba5d3-e38a-4d3c-a81a-ca858dc5cdb6", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "front" + ] + }, + "height": 8955, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/915ba5d3-e38a-4d3c-a81a-ca858dc5cdb6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4548bc75-6b36-41b7-b72c-df2bdaa6a397" + } + ] + }, + { + "width": 6127, + "label": { + "@none": [ + "proper left" + ] + }, + "height": 8173, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0002-pub", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0002-pub", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0002-pub", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/2057e87a-de16-4e59-ba15-3bcdaae7d8b0", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "proper left" + ] + }, + "height": 8173, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/2057e87a-de16-4e59-ba15-3bcdaae7d8b0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dad6c14f-17b7-4503-9a44-d384a6ce0937" + } + ] + }, + { + "width": 6127, + "label": { + "@none": [ + "back" + ] + }, + "height": 8173, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0003-pub", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0003-pub", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0003-pub", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/4c630d19-d059-40ca-ba8c-0646bec2ab13", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "back" + ] + }, + "height": 8173, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/4c630d19-d059-40ca-ba8c-0646bec2ab13/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/452f5a8a-56c0-4992-b4a7-11ea06c53129" + } + ] + }, + { + "width": 6127, + "label": { + "@none": [ + "proper right" + ] + }, + "height": 8173, + "type": "Canvas", + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0004-pub", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://manifests.britishart.yale.edu/annotation/ba-obj-1474-0004-pub", + "target": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0004-pub", + "type": "Canvas" + } + ], + "body": [ + { + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "https://images.britishart.yale.edu/iiif/0d02621e-57b7-46c8-9674-2c1e419b8b91", + "type": "ImageService1" + } + ], + "format": "image/jpeg", + "width": 6127, + "label": { + "@none": [ + "proper right" + ] + }, + "height": 8173, + "type": "Image", + "id": "https://images.britishart.yale.edu/iiif/0d02621e-57b7-46c8-9674-2c1e419b8b91/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9949ee68-442c-44d6-9510-426b94bfedc4" + } + ] + } + ], + "structures": [ + { + "id": "https://manifests.britishart.yale.edu/sequence/1474", + "type": "Range", + "behavior": [ + "sequence", + "individuals" + ], + "items": [ + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-pub", + "type": "Canvas" + }, + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0001-bar", + "type": "Canvas" + }, + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0002-pub", + "type": "Canvas" + }, + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0003-pub", + "type": "Canvas" + }, + { + "id": "https://manifests.britishart.yale.edu/canvas/ba-obj-1474-0004-pub", + "type": "Canvas" + } + ], + "label": { + "@none": [ + "default sequence" + ] + } + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/manifests.ydc2.yale.edu__manifest__Admont43.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/manifests.ydc2.yale.edu__manifest__Admont43.json new file mode 100644 index 0000000..224676f --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/manifests.ydc2.yale.edu__manifest__Admont43.json @@ -0,0 +1,19084 @@ +{ + "label": { + "@none": [ + "Aa, Admont, Benediktinerstift Admont Bibliothek & Museum, Admont MS 43" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1160-1180" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Admont MS 43 - Aa 43 (Gratian Decretum)" + ] + } + }, + { + "label": { + "@none": [ + "Number of leaves" + ] + }, + "value": { + "@none": [ + "342" + ] + } + }, + { + "label": { + "@none": [ + "Origin" + ] + }, + "value": { + "@none": [ + "Austria" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "parchment" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Aa, Admont, Benediktinerstift Admont Bibliothek & Museum, Admont 43 IIIF Manifest created for the Digitally Enabled Scholarship with Medieval Manuscripts project at Yale University." + ] + } + } + ], + "type": "Manifest", + "id": "http://manifests.ydc2.yale.edu/manifest/Admont43", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Admont, Stiftsbibliothek" + ] + } + }, + "items": [ + { + "height": 4525, + "label": { + "@none": [ + "1r" + ] + }, + "width": 3115, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5fd274ff-0b1c-47f5-af2a-c0f26a468016", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/95602c94-8dc0-499e-bdea-834b8a00f4c7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4525, + "label": { + "@none": [ + "1r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/", + "type": "ImageService1" + } + ], + "width": 3115, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5fd274ff-0b1c-47f5-af2a-c0f26a468016/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0c1378f-5b20-461a-9b9c-de56579781a2" + } + ] + }, + { + "height": 4072, + "label": { + "@none": [ + "1v" + ] + }, + "width": 2736, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/adc8a547-d3c2-4caa-96b3-e42bc7b539e5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/46d1c4a8-adbb-4fba-85aa-e9a82c0a4f47", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/adc8a547-d3c2-4caa-96b3-e42bc7b539e5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4072, + "label": { + "@none": [ + "1v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/46d1c4a8-adbb-4fba-85aa-e9a82c0a4f47/", + "type": "ImageService1" + } + ], + "width": 2736, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/46d1c4a8-adbb-4fba-85aa-e9a82c0a4f47/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ef42de3-7a4b-4efe-8e3a-37b120c86cd8" + } + ] + }, + { + "height": 4652, + "label": { + "@none": [ + "2r" + ] + }, + "width": 3131, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b0118c8f-ac6d-4ddf-b2dd-5c6123ff8c27", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b9849e35-6d34-492d-835a-1cf924271ab3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b0118c8f-ac6d-4ddf-b2dd-5c6123ff8c27", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4652, + "label": { + "@none": [ + "2r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b9849e35-6d34-492d-835a-1cf924271ab3/", + "type": "ImageService1" + } + ], + "width": 3131, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b9849e35-6d34-492d-835a-1cf924271ab3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5cd93faa-b08c-4924-92c9-98831f32eb54" + } + ] + }, + { + "height": 4030, + "label": { + "@none": [ + "2v" + ] + }, + "width": 2738, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/239207e1-925f-42bb-b75d-f0b1e5bed79a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a2f7569a-6319-4367-8f7e-75921bde2b69", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/239207e1-925f-42bb-b75d-f0b1e5bed79a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4030, + "label": { + "@none": [ + "2v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a2f7569a-6319-4367-8f7e-75921bde2b69/", + "type": "ImageService1" + } + ], + "width": 2738, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a2f7569a-6319-4367-8f7e-75921bde2b69/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1222299f-6f64-4aae-a0ba-898e7e6ee165" + } + ] + }, + { + "height": 4676, + "label": { + "@none": [ + "3r" + ] + }, + "width": 3007, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/28f8e99f-b80d-4eea-8506-7d2716fee953", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d60e09ca-0dcb-407b-bcb8-f5f2cfd1ed65", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/28f8e99f-b80d-4eea-8506-7d2716fee953", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4676, + "label": { + "@none": [ + "3r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d60e09ca-0dcb-407b-bcb8-f5f2cfd1ed65/", + "type": "ImageService1" + } + ], + "width": 3007, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d60e09ca-0dcb-407b-bcb8-f5f2cfd1ed65/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5f95a766-16ac-471f-9cfa-b150239ca65b" + } + ] + }, + { + "height": 4064, + "label": { + "@none": [ + "3v" + ] + }, + "width": 2750, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bab74636-b2ca-4a63-abcf-f8bae1490d0c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/207b6a68-1e4c-440b-ab91-e868f2afa393", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bab74636-b2ca-4a63-abcf-f8bae1490d0c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4064, + "label": { + "@none": [ + "3v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/207b6a68-1e4c-440b-ab91-e868f2afa393/", + "type": "ImageService1" + } + ], + "width": 2750, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/207b6a68-1e4c-440b-ab91-e868f2afa393/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85004993-a942-43a6-8365-61b546c5db6c" + } + ] + }, + { + "height": 4666, + "label": { + "@none": [ + "4r" + ] + }, + "width": 3081, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/de3cf018-1db8-4b5e-bb67-1b093eec85d7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5f213689-faa1-4510-b4a3-571376932ff7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/de3cf018-1db8-4b5e-bb67-1b093eec85d7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4666, + "label": { + "@none": [ + "4r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5f213689-faa1-4510-b4a3-571376932ff7/", + "type": "ImageService1" + } + ], + "width": 3081, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5f213689-faa1-4510-b4a3-571376932ff7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9d0386f-6284-4427-bc22-9fd23a8204ae" + } + ] + }, + { + "height": 4036, + "label": { + "@none": [ + "4v" + ] + }, + "width": 2748, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8a057755-a141-45ff-9302-ddc0df164d58", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c6e2e3b6-42b1-457e-8a15-a7e6cc616e52", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8a057755-a141-45ff-9302-ddc0df164d58", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4036, + "label": { + "@none": [ + "4v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c6e2e3b6-42b1-457e-8a15-a7e6cc616e52/", + "type": "ImageService1" + } + ], + "width": 2748, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c6e2e3b6-42b1-457e-8a15-a7e6cc616e52/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d96573d-7dc9-4fc0-8305-f0a295af39df" + } + ] + }, + { + "height": 4664, + "label": { + "@none": [ + "5r" + ] + }, + "width": 3042, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b86be1b8-b27d-4f13-a0f1-ba145f679096", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b1414b3d-b11b-43a2-9f3f-a0953ce45660", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b86be1b8-b27d-4f13-a0f1-ba145f679096", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4664, + "label": { + "@none": [ + "5r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b1414b3d-b11b-43a2-9f3f-a0953ce45660/", + "type": "ImageService1" + } + ], + "width": 3042, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b1414b3d-b11b-43a2-9f3f-a0953ce45660/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/627fc3e7-2cf2-40dc-bb02-506b86e8f319" + } + ] + }, + { + "height": 4078, + "label": { + "@none": [ + "5v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2b5bcd39-0649-49d4-aabe-9f613f54da11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/45685c39-93f1-4284-a48f-3a88346f23cd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2b5bcd39-0649-49d4-aabe-9f613f54da11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4078, + "label": { + "@none": [ + "5v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/45685c39-93f1-4284-a48f-3a88346f23cd/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/45685c39-93f1-4284-a48f-3a88346f23cd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5906130-4377-4a86-87e4-d52a87a1c0dd" + } + ] + }, + { + "height": 4652, + "label": { + "@none": [ + "6r" + ] + }, + "width": 3064, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/33d390af-2d10-43eb-8aff-32c66985543c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2b01671d-0286-4abd-95ea-cd57407369ff", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/33d390af-2d10-43eb-8aff-32c66985543c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4652, + "label": { + "@none": [ + "6r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2b01671d-0286-4abd-95ea-cd57407369ff/", + "type": "ImageService1" + } + ], + "width": 3064, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2b01671d-0286-4abd-95ea-cd57407369ff/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8c22d223-18a9-42c3-9365-4f29dbb1f325" + } + ] + }, + { + "height": 4069, + "label": { + "@none": [ + "6v" + ] + }, + "width": 2753, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b511cb3-f6c3-467a-9fca-30570c0be4ee", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8c331573-b246-45ce-ba8d-b71c3905e9c2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b511cb3-f6c3-467a-9fca-30570c0be4ee", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4069, + "label": { + "@none": [ + "6v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8c331573-b246-45ce-ba8d-b71c3905e9c2/", + "type": "ImageService1" + } + ], + "width": 2753, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8c331573-b246-45ce-ba8d-b71c3905e9c2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2aba77c1-3e30-4a7b-9607-b00c06ef3f64" + } + ] + }, + { + "height": 4582, + "label": { + "@none": [ + "7r" + ] + }, + "width": 3030, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/22cc8b54-974f-4d2e-91ca-6255f8c60b34", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e595e28c-5b35-4979-a423-468f9330292c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/22cc8b54-974f-4d2e-91ca-6255f8c60b34", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4582, + "label": { + "@none": [ + "7r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e595e28c-5b35-4979-a423-468f9330292c/", + "type": "ImageService1" + } + ], + "width": 3030, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e595e28c-5b35-4979-a423-468f9330292c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8ba9788c-0360-4222-9ff0-c6b1a929ec3b" + } + ] + }, + { + "height": 4054, + "label": { + "@none": [ + "7v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d87c2491-5866-4041-90da-e058906ce5e2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/aad28332-8c38-4b23-8a83-e3cd5ec8c80d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d87c2491-5866-4041-90da-e058906ce5e2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4054, + "label": { + "@none": [ + "7v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/aad28332-8c38-4b23-8a83-e3cd5ec8c80d/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/aad28332-8c38-4b23-8a83-e3cd5ec8c80d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70fe13eb-ecdf-435a-bb0f-a6b979ec364a" + } + ] + }, + { + "height": 4638, + "label": { + "@none": [ + "8r" + ] + }, + "width": 3131, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b71d843-fb0b-4fba-a93a-7686543e8596", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/616cbd69-a065-46b8-9b4d-84f9d7ab07f2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b71d843-fb0b-4fba-a93a-7686543e8596", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4638, + "label": { + "@none": [ + "8r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/616cbd69-a065-46b8-9b4d-84f9d7ab07f2/", + "type": "ImageService1" + } + ], + "width": 3131, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/616cbd69-a065-46b8-9b4d-84f9d7ab07f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63fca134-6fd4-44ff-bd3e-643e7a1b8da6" + } + ] + }, + { + "height": 4036, + "label": { + "@none": [ + "8v" + ] + }, + "width": 2806, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7a9e7356-1546-478a-8227-62580b1fcda7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/766dc1a3-9feb-4cdf-b922-d8624783f06e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7a9e7356-1546-478a-8227-62580b1fcda7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4036, + "label": { + "@none": [ + "8v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/766dc1a3-9feb-4cdf-b922-d8624783f06e/", + "type": "ImageService1" + } + ], + "width": 2806, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/766dc1a3-9feb-4cdf-b922-d8624783f06e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d5a7bdb-7f99-42e5-aad7-a730af80aa9e" + } + ] + }, + { + "height": 4637, + "label": { + "@none": [ + "9r" + ] + }, + "width": 3126, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b76834fd-514c-4733-a8ce-40233bdc8dc9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e19f6f51-f60e-4141-8c19-55f527934105", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b76834fd-514c-4733-a8ce-40233bdc8dc9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4637, + "label": { + "@none": [ + "9r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e19f6f51-f60e-4141-8c19-55f527934105/", + "type": "ImageService1" + } + ], + "width": 3126, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e19f6f51-f60e-4141-8c19-55f527934105/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb1d34b4-c666-44af-a0cf-9bdc9ce3b310" + } + ] + }, + { + "height": 4030, + "label": { + "@none": [ + "9v" + ] + }, + "width": 2788, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bb14bcdc-def9-4f72-8c40-c5a37b550bf6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6a790e97-d6b1-4504-9a42-c3ded8d08eb7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bb14bcdc-def9-4f72-8c40-c5a37b550bf6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4030, + "label": { + "@none": [ + "9v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6a790e97-d6b1-4504-9a42-c3ded8d08eb7/", + "type": "ImageService1" + } + ], + "width": 2788, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6a790e97-d6b1-4504-9a42-c3ded8d08eb7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/afe27bdd-ea99-42be-9563-1267667a5eb7" + } + ] + }, + { + "height": 4652, + "label": { + "@none": [ + "10r" + ] + }, + "width": 3026, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5f910bc5-c1ac-4ccf-b31e-b41e7ec82e79", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0d3e83ea-0f25-417c-9d83-e2d8c2d03b0c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5f910bc5-c1ac-4ccf-b31e-b41e7ec82e79", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4652, + "label": { + "@none": [ + "10r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0d3e83ea-0f25-417c-9d83-e2d8c2d03b0c/", + "type": "ImageService1" + } + ], + "width": 3026, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0d3e83ea-0f25-417c-9d83-e2d8c2d03b0c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d36895d-1d43-4b56-ad3a-f634cca9bd9d" + } + ] + }, + { + "height": 4045, + "label": { + "@none": [ + "10v" + ] + }, + "width": 2725, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/40694da6-c0d0-4afd-b36f-e9782e897af0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/57650176-11d0-4497-85cc-2a5dfb75a769", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/40694da6-c0d0-4afd-b36f-e9782e897af0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4045, + "label": { + "@none": [ + "10v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/57650176-11d0-4497-85cc-2a5dfb75a769/", + "type": "ImageService1" + } + ], + "width": 2725, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/57650176-11d0-4497-85cc-2a5dfb75a769/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0a0ffa5-25b6-427c-b02a-5c530586a504" + } + ] + }, + { + "height": 4685, + "label": { + "@none": [ + "11r" + ] + }, + "width": 3088, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1747771b-3435-4e11-b3ae-95d74a4acdce", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/14e9ed83-637f-4acb-9d93-91d3eb29eba5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1747771b-3435-4e11-b3ae-95d74a4acdce", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4685, + "label": { + "@none": [ + "11r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/14e9ed83-637f-4acb-9d93-91d3eb29eba5/", + "type": "ImageService1" + } + ], + "width": 3088, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/14e9ed83-637f-4acb-9d93-91d3eb29eba5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/868b63d2-1522-4096-b6d7-5d46ddf092b8" + } + ] + }, + { + "height": 4060, + "label": { + "@none": [ + "11v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/61536335-18e1-4cbc-80bf-ab1fbd3c28f7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/faed1213-f116-4d25-8c77-1ce93ab68e87", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/61536335-18e1-4cbc-80bf-ab1fbd3c28f7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4060, + "label": { + "@none": [ + "11v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/faed1213-f116-4d25-8c77-1ce93ab68e87/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/faed1213-f116-4d25-8c77-1ce93ab68e87/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c328eb5e-8fc5-4929-afce-1aff1b859b17" + } + ] + }, + { + "height": 4617, + "label": { + "@none": [ + "12r" + ] + }, + "width": 3078, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/58d17284-89ec-44fa-848c-30635adf9b0d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cb7400c5-4ff5-41d0-82e2-fa8b6aec837a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/58d17284-89ec-44fa-848c-30635adf9b0d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4617, + "label": { + "@none": [ + "12r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cb7400c5-4ff5-41d0-82e2-fa8b6aec837a/", + "type": "ImageService1" + } + ], + "width": 3078, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cb7400c5-4ff5-41d0-82e2-fa8b6aec837a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24a2d621-d6b7-4eb0-a739-3ea4432230be" + } + ] + }, + { + "height": 4045, + "label": { + "@none": [ + "12v" + ] + }, + "width": 2726, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e2b1c5aa-a1a7-4942-a07f-77ac29cbeeb6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/84dd1a79-68e7-45d7-8bb5-b9f0381428ba", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e2b1c5aa-a1a7-4942-a07f-77ac29cbeeb6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4045, + "label": { + "@none": [ + "12v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/84dd1a79-68e7-45d7-8bb5-b9f0381428ba/", + "type": "ImageService1" + } + ], + "width": 2726, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/84dd1a79-68e7-45d7-8bb5-b9f0381428ba/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34adc963-bd34-44b8-abaa-235ba8a83a7b" + } + ] + }, + { + "height": 4642, + "label": { + "@none": [ + "13r" + ] + }, + "width": 3116, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f7c3a817-afef-4514-a403-2de4d05e63e5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9adb1621-c248-46eb-a9ad-282e11f0abeb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f7c3a817-afef-4514-a403-2de4d05e63e5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4642, + "label": { + "@none": [ + "13r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9adb1621-c248-46eb-a9ad-282e11f0abeb/", + "type": "ImageService1" + } + ], + "width": 3116, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9adb1621-c248-46eb-a9ad-282e11f0abeb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19a64e3e-3ff0-4427-95b0-46ff137a157d" + } + ] + }, + { + "height": 4055, + "label": { + "@none": [ + "13v" + ] + }, + "width": 2719, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a5a0120a-6f9b-4f1c-ba0c-4a92d8de362d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cbbe5bab-6297-4261-b01d-660f5319aa78", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a5a0120a-6f9b-4f1c-ba0c-4a92d8de362d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4055, + "label": { + "@none": [ + "13v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cbbe5bab-6297-4261-b01d-660f5319aa78/", + "type": "ImageService1" + } + ], + "width": 2719, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cbbe5bab-6297-4261-b01d-660f5319aa78/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fa015b3-b965-41b1-bd4f-10db015a2986" + } + ] + }, + { + "height": 4658, + "label": { + "@none": [ + "14r" + ] + }, + "width": 3050, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/994bcb88-ad63-4908-9a97-dc8001bde106", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/acd4a52f-c9cf-4c62-9efe-a8f7d105232b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/994bcb88-ad63-4908-9a97-dc8001bde106", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4658, + "label": { + "@none": [ + "14r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/acd4a52f-c9cf-4c62-9efe-a8f7d105232b/", + "type": "ImageService1" + } + ], + "width": 3050, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/acd4a52f-c9cf-4c62-9efe-a8f7d105232b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11d1faa5-8381-4e36-8b7b-710f1f8b77e0" + } + ] + }, + { + "height": 4045, + "label": { + "@none": [ + "14v" + ] + }, + "width": 2724, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c7c88d3f-4d77-4487-8c51-26b5fa27b24d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ad4cb063-f777-4af1-a91e-8c208e20f7b3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c7c88d3f-4d77-4487-8c51-26b5fa27b24d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4045, + "label": { + "@none": [ + "14v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ad4cb063-f777-4af1-a91e-8c208e20f7b3/", + "type": "ImageService1" + } + ], + "width": 2724, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ad4cb063-f777-4af1-a91e-8c208e20f7b3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dffb737e-47e2-469a-b684-45e81700094c" + } + ] + }, + { + "height": 4652, + "label": { + "@none": [ + "15r" + ] + }, + "width": 3069, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d4cb58a9-8b5a-4fee-afbf-797ebd1b9acf", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9fb26577-681e-464a-9d5c-4f71f82163a4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d4cb58a9-8b5a-4fee-afbf-797ebd1b9acf", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4652, + "label": { + "@none": [ + "15r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9fb26577-681e-464a-9d5c-4f71f82163a4/", + "type": "ImageService1" + } + ], + "width": 3069, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9fb26577-681e-464a-9d5c-4f71f82163a4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e130fe00-d148-4700-97b7-7c0db33b28b8" + } + ] + }, + { + "height": 4060, + "label": { + "@none": [ + "15v" + ] + }, + "width": 2753, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b45c3088-7062-4df8-8587-7d8b8da5ae9f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b0384604-8e39-4b01-b75c-e15dfc1f47a1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b45c3088-7062-4df8-8587-7d8b8da5ae9f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4060, + "label": { + "@none": [ + "15v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b0384604-8e39-4b01-b75c-e15dfc1f47a1/", + "type": "ImageService1" + } + ], + "width": 2753, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b0384604-8e39-4b01-b75c-e15dfc1f47a1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bc549d8-3492-4f16-9f2e-42afd5d90c49" + } + ] + }, + { + "height": 4614, + "label": { + "@none": [ + "16r" + ] + }, + "width": 3102, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a9567b70-5ded-4869-8f1d-aa842bdf133c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/09055fd5-d9ea-4820-a8d1-17cab7c06763", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a9567b70-5ded-4869-8f1d-aa842bdf133c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4614, + "label": { + "@none": [ + "16r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/09055fd5-d9ea-4820-a8d1-17cab7c06763/", + "type": "ImageService1" + } + ], + "width": 3102, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/09055fd5-d9ea-4820-a8d1-17cab7c06763/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c04ac8ac-79c7-4f7d-b6b2-f3092efe89fc" + } + ] + }, + { + "height": 4056, + "label": { + "@none": [ + "16v" + ] + }, + "width": 2773, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a7fade6d-5661-4739-bfeb-10e70a521f62", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/81c1f271-3e1c-4cec-87ff-c5f97fb99b86", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a7fade6d-5661-4739-bfeb-10e70a521f62", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4056, + "label": { + "@none": [ + "16v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/81c1f271-3e1c-4cec-87ff-c5f97fb99b86/", + "type": "ImageService1" + } + ], + "width": 2773, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/81c1f271-3e1c-4cec-87ff-c5f97fb99b86/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f9146f97-efda-4875-8c69-0343ddc65b7e" + } + ] + }, + { + "height": 4609, + "label": { + "@none": [ + "17r" + ] + }, + "width": 3126, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/53875476-8f20-4486-9f6c-33d39bbab76d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/764ddf87-5e42-414a-8b8a-4fc4876a907f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/53875476-8f20-4486-9f6c-33d39bbab76d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4609, + "label": { + "@none": [ + "17r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/764ddf87-5e42-414a-8b8a-4fc4876a907f/", + "type": "ImageService1" + } + ], + "width": 3126, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/764ddf87-5e42-414a-8b8a-4fc4876a907f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8abfb5c-eddb-4705-8b68-d2f1668dffc2" + } + ] + }, + { + "height": 4084, + "label": { + "@none": [ + "17v" + ] + }, + "width": 2757, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2cb656ef-be26-48ad-8047-2f299f8b518c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a7ee88f6-e4a2-48f6-8a4f-3690f0b83dd7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2cb656ef-be26-48ad-8047-2f299f8b518c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4084, + "label": { + "@none": [ + "17v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a7ee88f6-e4a2-48f6-8a4f-3690f0b83dd7/", + "type": "ImageService1" + } + ], + "width": 2757, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a7ee88f6-e4a2-48f6-8a4f-3690f0b83dd7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e368bbf-4be3-4a7e-9f46-d7cd5ed30622" + } + ] + }, + { + "height": 4605, + "label": { + "@none": [ + "18r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c4335d30-8d07-4921-bfd8-10604fd69fd3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/76c92bc4-fb1f-4198-905c-5474d6b023f2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c4335d30-8d07-4921-bfd8-10604fd69fd3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4605, + "label": { + "@none": [ + "18r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/76c92bc4-fb1f-4198-905c-5474d6b023f2/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/76c92bc4-fb1f-4198-905c-5474d6b023f2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e95c35dd-3f4e-4b1d-8483-9e4ca0fff19f" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "18v" + ] + }, + "width": 2725, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7848f0d2-00f4-42bf-8016-4dd67d3c05a6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a254c275-85eb-41c2-986d-4d1f03f3e5f9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7848f0d2-00f4-42bf-8016-4dd67d3c05a6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "18v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a254c275-85eb-41c2-986d-4d1f03f3e5f9/", + "type": "ImageService1" + } + ], + "width": 2725, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a254c275-85eb-41c2-986d-4d1f03f3e5f9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6cf8a0f-0d5b-4cd1-8466-08b91d0672c4" + } + ] + }, + { + "height": 4615, + "label": { + "@none": [ + "19r" + ] + }, + "width": 2978, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2abe28b3-0ab8-4307-9a7f-1656d326ea60", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/87c969ce-b796-421e-8aaf-cae26b3bca08", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2abe28b3-0ab8-4307-9a7f-1656d326ea60", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4615, + "label": { + "@none": [ + "19r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/87c969ce-b796-421e-8aaf-cae26b3bca08/", + "type": "ImageService1" + } + ], + "width": 2978, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/87c969ce-b796-421e-8aaf-cae26b3bca08/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e168e6c-e3fe-4e6c-baa4-93651f3e6d2c" + } + ] + }, + { + "height": 4097, + "label": { + "@none": [ + "19v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d034e2b9-415f-4aee-9d4d-bcba59fd6476", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/414f8718-24b6-46e3-9d61-a9b70e799c7a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d034e2b9-415f-4aee-9d4d-bcba59fd6476", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4097, + "label": { + "@none": [ + "19v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/414f8718-24b6-46e3-9d61-a9b70e799c7a/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/414f8718-24b6-46e3-9d61-a9b70e799c7a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58eb1dad-27a3-4774-9699-f7a57a585726" + } + ] + }, + { + "height": 4579, + "label": { + "@none": [ + "20r" + ] + }, + "width": 3052, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ed80a4c1-35d1-4dfb-85c3-15b1274f321d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0f9c0325-79d2-4e1d-b5b1-a94035a1cff0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ed80a4c1-35d1-4dfb-85c3-15b1274f321d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4579, + "label": { + "@none": [ + "20r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0f9c0325-79d2-4e1d-b5b1-a94035a1cff0/", + "type": "ImageService1" + } + ], + "width": 3052, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0f9c0325-79d2-4e1d-b5b1-a94035a1cff0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f427911e-02b9-41eb-acd6-593aeb3e381a" + } + ] + }, + { + "height": 4089, + "label": { + "@none": [ + "20v" + ] + }, + "width": 2697, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b3f8bc98-a044-47ce-a2fb-db56adcac244", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c8e4d61b-dc32-4ca1-87f5-d9b12dc1a533", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b3f8bc98-a044-47ce-a2fb-db56adcac244", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4089, + "label": { + "@none": [ + "20v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c8e4d61b-dc32-4ca1-87f5-d9b12dc1a533/", + "type": "ImageService1" + } + ], + "width": 2697, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c8e4d61b-dc32-4ca1-87f5-d9b12dc1a533/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d501bed2-530f-4908-bec0-182b696708f8" + } + ] + }, + { + "height": 4621, + "label": { + "@none": [ + "21r" + ] + }, + "width": 3019, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/734a2ad8-4aa9-4b2d-b90c-d2360e692d90", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ccb11167-c62e-405a-a55e-fac50b6e2c4e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/734a2ad8-4aa9-4b2d-b90c-d2360e692d90", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4621, + "label": { + "@none": [ + "21r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ccb11167-c62e-405a-a55e-fac50b6e2c4e/", + "type": "ImageService1" + } + ], + "width": 3019, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ccb11167-c62e-405a-a55e-fac50b6e2c4e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53362851-87bf-456a-badf-cda967a34c27" + } + ] + }, + { + "height": 4089, + "label": { + "@none": [ + "21v" + ] + }, + "width": 2672, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6a2a7e50-931b-414b-98e4-90cd7a31e875", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dde46824-43b6-4659-9463-2ba660503312", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6a2a7e50-931b-414b-98e4-90cd7a31e875", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4089, + "label": { + "@none": [ + "21v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dde46824-43b6-4659-9463-2ba660503312/", + "type": "ImageService1" + } + ], + "width": 2672, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dde46824-43b6-4659-9463-2ba660503312/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58919a7d-b017-4326-867d-ae7607ab03ba" + } + ] + }, + { + "height": 4612, + "label": { + "@none": [ + "22r" + ] + }, + "width": 3019, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/89e05127-263c-4607-ba5b-78f64ace061b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b25ca442-1b0b-4f63-a6bd-4c6b421f359c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/89e05127-263c-4607-ba5b-78f64ace061b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4612, + "label": { + "@none": [ + "22r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b25ca442-1b0b-4f63-a6bd-4c6b421f359c/", + "type": "ImageService1" + } + ], + "width": 3019, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b25ca442-1b0b-4f63-a6bd-4c6b421f359c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/497d3118-a405-4e23-b472-a9ca66e90005" + } + ] + }, + { + "height": 4127, + "label": { + "@none": [ + "22v" + ] + }, + "width": 2754, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b25ef3ac-2e15-4982-ada0-490afdeaa6a6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/531f13bb-520f-464c-b9ed-6343c10a6e17", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b25ef3ac-2e15-4982-ada0-490afdeaa6a6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4127, + "label": { + "@none": [ + "22v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/531f13bb-520f-464c-b9ed-6343c10a6e17/", + "type": "ImageService1" + } + ], + "width": 2754, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/531f13bb-520f-464c-b9ed-6343c10a6e17/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7428cf0-8415-48c4-9057-55a497e5f985" + } + ] + }, + { + "height": 4602, + "label": { + "@none": [ + "23r" + ] + }, + "width": 3043, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ae915386-2882-4215-8737-66dac0999a93", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ef8e92db-6dd5-4314-884d-94a80cbda87a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ae915386-2882-4215-8737-66dac0999a93", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4602, + "label": { + "@none": [ + "23r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ef8e92db-6dd5-4314-884d-94a80cbda87a/", + "type": "ImageService1" + } + ], + "width": 3043, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ef8e92db-6dd5-4314-884d-94a80cbda87a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e695179-7d50-4539-90f9-168219fa5965" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "23v" + ] + }, + "width": 2748, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/35410476-da03-4d42-ae76-0caf1a41cf1b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/380d8e4a-6fe3-467a-929c-4fc343a58074", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/35410476-da03-4d42-ae76-0caf1a41cf1b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "23v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/380d8e4a-6fe3-467a-929c-4fc343a58074/", + "type": "ImageService1" + } + ], + "width": 2748, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/380d8e4a-6fe3-467a-929c-4fc343a58074/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69f42e79-1154-477f-bec8-ee675f59051e" + } + ] + }, + { + "height": 4606, + "label": { + "@none": [ + "24r" + ] + }, + "width": 3087, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f7c2cbc4-46b6-4b60-83a1-2b65edafd0f7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b90dd44d-62c1-4d52-b6fc-884abc062922", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f7c2cbc4-46b6-4b60-83a1-2b65edafd0f7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4606, + "label": { + "@none": [ + "24r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b90dd44d-62c1-4d52-b6fc-884abc062922/", + "type": "ImageService1" + } + ], + "width": 3087, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b90dd44d-62c1-4d52-b6fc-884abc062922/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1be0d5a1-55d8-4559-b233-889b74ce552d" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "24v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4e163fff-0b86-4f7b-979f-7dc0bf09ff71", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0268a649-0754-462f-a053-7640907477ed", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4e163fff-0b86-4f7b-979f-7dc0bf09ff71", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "24v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0268a649-0754-462f-a053-7640907477ed/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0268a649-0754-462f-a053-7640907477ed/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f0a21dd-9716-4f96-aa44-a5fee4c0a49a" + } + ] + }, + { + "height": 4613, + "label": { + "@none": [ + "25r" + ] + }, + "width": 3054, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c10269eb-76c6-4438-adb6-22f609e90e64", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/80d96a01-5989-43db-a470-ab97d39fe629", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c10269eb-76c6-4438-adb6-22f609e90e64", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4613, + "label": { + "@none": [ + "25r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/80d96a01-5989-43db-a470-ab97d39fe629/", + "type": "ImageService1" + } + ], + "width": 3054, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/80d96a01-5989-43db-a470-ab97d39fe629/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e6bb76a-2c89-40fb-b8f4-aa62e33e1d7c" + } + ] + }, + { + "height": 4106, + "label": { + "@none": [ + "25v" + ] + }, + "width": 2739, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cc7c7c1d-e544-476c-8fb8-26770e7df89f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dbae596d-14d7-40fe-9aa1-c6eee87eb37e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cc7c7c1d-e544-476c-8fb8-26770e7df89f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4106, + "label": { + "@none": [ + "25v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dbae596d-14d7-40fe-9aa1-c6eee87eb37e/", + "type": "ImageService1" + } + ], + "width": 2739, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dbae596d-14d7-40fe-9aa1-c6eee87eb37e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e1ff8e0-ac9b-42ec-8ce1-890c8f3b5ba9" + } + ] + }, + { + "height": 4613, + "label": { + "@none": [ + "26r" + ] + }, + "width": 3064, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/17000274-e76c-43f9-928f-b4947a086e6e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/80dba3be-530f-4db5-b01b-85f9c0fd0721", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/17000274-e76c-43f9-928f-b4947a086e6e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4613, + "label": { + "@none": [ + "26r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/80dba3be-530f-4db5-b01b-85f9c0fd0721/", + "type": "ImageService1" + } + ], + "width": 3064, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/80dba3be-530f-4db5-b01b-85f9c0fd0721/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1586d79-e894-40dd-8614-3139eb0a75f6" + } + ] + }, + { + "height": 4106, + "label": { + "@none": [ + "26v" + ] + }, + "width": 2739, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a6b6ee73-0ebb-42f6-b8bc-d61836ac4012", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/34798f74-b7d4-4fba-be73-1d1aea5264da", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a6b6ee73-0ebb-42f6-b8bc-d61836ac4012", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4106, + "label": { + "@none": [ + "26v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/34798f74-b7d4-4fba-be73-1d1aea5264da/", + "type": "ImageService1" + } + ], + "width": 2739, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/34798f74-b7d4-4fba-be73-1d1aea5264da/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f984559-454c-49ce-926c-b0ce9d84ac81" + } + ] + }, + { + "height": 4628, + "label": { + "@none": [ + "27r" + ] + }, + "width": 3040, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/60d69a54-7a9f-4a08-8e9b-6242f4c88240", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9a0d59eb-f140-4628-8864-b88f9ef7e8b4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/60d69a54-7a9f-4a08-8e9b-6242f4c88240", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4628, + "label": { + "@none": [ + "27r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9a0d59eb-f140-4628-8864-b88f9ef7e8b4/", + "type": "ImageService1" + } + ], + "width": 3040, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9a0d59eb-f140-4628-8864-b88f9ef7e8b4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32f0681e-dcd7-47c8-914d-b085dc8eaa12" + } + ] + }, + { + "height": 4087, + "label": { + "@none": [ + "27v" + ] + }, + "width": 2734, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2be6bcd2-f4e5-4bc1-a147-47d368c02e04", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b2545a2f-4de7-40d1-b69a-83c70323c780", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2be6bcd2-f4e5-4bc1-a147-47d368c02e04", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4087, + "label": { + "@none": [ + "27v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b2545a2f-4de7-40d1-b69a-83c70323c780/", + "type": "ImageService1" + } + ], + "width": 2734, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b2545a2f-4de7-40d1-b69a-83c70323c780/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/21a61f90-89dc-4ca3-858f-f6b2cf21f82c" + } + ] + }, + { + "height": 4604, + "label": { + "@none": [ + "28r" + ] + }, + "width": 3054, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e3481b9d-0c32-4439-9ca1-2bd53fe8358e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c7ff9f62-4554-43d5-b672-5cf58f7d98e1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e3481b9d-0c32-4439-9ca1-2bd53fe8358e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4604, + "label": { + "@none": [ + "28r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c7ff9f62-4554-43d5-b672-5cf58f7d98e1/", + "type": "ImageService1" + } + ], + "width": 3054, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c7ff9f62-4554-43d5-b672-5cf58f7d98e1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/662500b3-2cd5-42e6-95aa-18f7c63d7ff3" + } + ] + }, + { + "height": 4097, + "label": { + "@none": [ + "28v" + ] + }, + "width": 2701, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/590fe1f2-7797-4271-8bf5-ee69d000a70e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/12c3427a-d039-41c5-b143-540f7a17a092", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/590fe1f2-7797-4271-8bf5-ee69d000a70e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4097, + "label": { + "@none": [ + "28v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/12c3427a-d039-41c5-b143-540f7a17a092/", + "type": "ImageService1" + } + ], + "width": 2701, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/12c3427a-d039-41c5-b143-540f7a17a092/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/517184f9-22cb-4a70-9389-aa5833c01005" + } + ] + }, + { + "height": 4609, + "label": { + "@none": [ + "29r" + ] + }, + "width": 3040, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8bc1b1bb-63c4-4917-8ac2-bccc8b3815fb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ae262145-5d52-4596-a68f-0ee73af1de19", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8bc1b1bb-63c4-4917-8ac2-bccc8b3815fb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4609, + "label": { + "@none": [ + "29r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ae262145-5d52-4596-a68f-0ee73af1de19/", + "type": "ImageService1" + } + ], + "width": 3040, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ae262145-5d52-4596-a68f-0ee73af1de19/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb795099-4203-41d8-a754-b8ab5a5fbc89" + } + ] + }, + { + "height": 4070, + "label": { + "@none": [ + "29v" + ] + }, + "width": 2672, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/935f471d-377b-464e-b040-c7899b26d2a9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dc9b1c87-b3c1-4247-b117-01515c8bfbfe", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/935f471d-377b-464e-b040-c7899b26d2a9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4070, + "label": { + "@none": [ + "29v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dc9b1c87-b3c1-4247-b117-01515c8bfbfe/", + "type": "ImageService1" + } + ], + "width": 2672, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dc9b1c87-b3c1-4247-b117-01515c8bfbfe/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36791717-96ce-465d-85e1-6c044e6fbd1d" + } + ] + }, + { + "height": 4613, + "label": { + "@none": [ + "30r" + ] + }, + "width": 3045, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d8539f54-142e-416c-9cc6-9dcb9a092002", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dc85f125-24eb-4a5e-b01b-27188eb06e81", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d8539f54-142e-416c-9cc6-9dcb9a092002", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4613, + "label": { + "@none": [ + "30r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dc85f125-24eb-4a5e-b01b-27188eb06e81/", + "type": "ImageService1" + } + ], + "width": 3045, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dc85f125-24eb-4a5e-b01b-27188eb06e81/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94aa0e20-ff4d-4eb8-a6b0-fce7d26dadc7" + } + ] + }, + { + "height": 4087, + "label": { + "@none": [ + "30v" + ] + }, + "width": 2761, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2a5a6a82-a817-4f24-99cf-a8a3414ad621", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/06e5dff9-3e86-4e71-a07f-c675217b4a3f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2a5a6a82-a817-4f24-99cf-a8a3414ad621", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4087, + "label": { + "@none": [ + "30v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/06e5dff9-3e86-4e71-a07f-c675217b4a3f/", + "type": "ImageService1" + } + ], + "width": 2761, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/06e5dff9-3e86-4e71-a07f-c675217b4a3f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/523400a1-d183-4193-8df2-6960fa0c5e50" + } + ] + }, + { + "height": 4623, + "label": { + "@none": [ + "31r" + ] + }, + "width": 3083, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0028d3b7-42fe-41aa-ac84-1cf144d2b847", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c6be41d2-a840-4dd7-b037-e1122e10b0bf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0028d3b7-42fe-41aa-ac84-1cf144d2b847", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4623, + "label": { + "@none": [ + "31r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c6be41d2-a840-4dd7-b037-e1122e10b0bf/", + "type": "ImageService1" + } + ], + "width": 3083, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c6be41d2-a840-4dd7-b037-e1122e10b0bf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b3902006-b229-4d9d-aa59-519a423dfbe7" + } + ] + }, + { + "height": 4097, + "label": { + "@none": [ + "31v" + ] + }, + "width": 2706, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2c6f0369-4ab7-4b20-8ec7-f0ec4b295270", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6e33c00c-6ac9-4d74-9e62-6ad534d1931f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2c6f0369-4ab7-4b20-8ec7-f0ec4b295270", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4097, + "label": { + "@none": [ + "31v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6e33c00c-6ac9-4d74-9e62-6ad534d1931f/", + "type": "ImageService1" + } + ], + "width": 2706, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6e33c00c-6ac9-4d74-9e62-6ad534d1931f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bde9a06a-f628-46cb-9224-4dee2f18429c" + } + ] + }, + { + "height": 4642, + "label": { + "@none": [ + "32r" + ] + }, + "width": 3073, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/89f1af93-5ea1-4181-b24c-05e51f0b31fa", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/68a9367c-909b-4d2e-a006-710749108b1c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/89f1af93-5ea1-4181-b24c-05e51f0b31fa", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4642, + "label": { + "@none": [ + "32r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/68a9367c-909b-4d2e-a006-710749108b1c/", + "type": "ImageService1" + } + ], + "width": 3073, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/68a9367c-909b-4d2e-a006-710749108b1c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d6222ee-8940-459d-900d-053403ba6fff" + } + ] + }, + { + "height": 4102, + "label": { + "@none": [ + "32v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/52d9ee3a-3433-493c-a9be-13d4e5fc16ae", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/93756f58-4ec3-4b90-b437-db563ff4551a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/52d9ee3a-3433-493c-a9be-13d4e5fc16ae", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4102, + "label": { + "@none": [ + "32v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/93756f58-4ec3-4b90-b437-db563ff4551a/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/93756f58-4ec3-4b90-b437-db563ff4551a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8197876-f809-4609-81d8-1236a36d72dd" + } + ] + }, + { + "height": 4589, + "label": { + "@none": [ + "33r" + ] + }, + "width": 3073, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/29ff2350-e4bc-4061-b5dc-1ec4fe51b259", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a289fb8c-9d46-45d7-9c02-e80a3b1ecfe6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/29ff2350-e4bc-4061-b5dc-1ec4fe51b259", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4589, + "label": { + "@none": [ + "33r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a289fb8c-9d46-45d7-9c02-e80a3b1ecfe6/", + "type": "ImageService1" + } + ], + "width": 3073, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a289fb8c-9d46-45d7-9c02-e80a3b1ecfe6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dc48c44f-f835-4228-82ef-4deac2c73cb3" + } + ] + }, + { + "height": 4101, + "label": { + "@none": [ + "33v" + ] + }, + "width": 2711, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9ef8537f-c4a1-415a-b2b7-3940892a9f1b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/af241a22-275c-4c44-bc68-a90d2d96a033", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9ef8537f-c4a1-415a-b2b7-3940892a9f1b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4101, + "label": { + "@none": [ + "33v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/af241a22-275c-4c44-bc68-a90d2d96a033/", + "type": "ImageService1" + } + ], + "width": 2711, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/af241a22-275c-4c44-bc68-a90d2d96a033/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0a1bb447-b858-47cc-8b4d-e1b32cdb4033" + } + ] + }, + { + "height": 4628, + "label": { + "@none": [ + "34r" + ] + }, + "width": 3049, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f560f395-10ee-4700-9c8f-01b09eddd9c5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/22eb77b6-56e8-4513-98a7-211449e4c62d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f560f395-10ee-4700-9c8f-01b09eddd9c5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4628, + "label": { + "@none": [ + "34r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/22eb77b6-56e8-4513-98a7-211449e4c62d/", + "type": "ImageService1" + } + ], + "width": 3049, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/22eb77b6-56e8-4513-98a7-211449e4c62d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1606f07f-8d48-4b31-9aec-145bbccae67e" + } + ] + }, + { + "height": 4106, + "label": { + "@none": [ + "34v" + ] + }, + "width": 2701, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ec8ba49e-3976-4a78-aa10-860851dcab8b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e3f823c6-b66c-4338-9f6b-e213189021fd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ec8ba49e-3976-4a78-aa10-860851dcab8b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4106, + "label": { + "@none": [ + "34v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e3f823c6-b66c-4338-9f6b-e213189021fd/", + "type": "ImageService1" + } + ], + "width": 2701, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e3f823c6-b66c-4338-9f6b-e213189021fd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8aa760f-d1e2-4553-990d-2c21a8c57613" + } + ] + }, + { + "height": 4614, + "label": { + "@none": [ + "35r" + ] + }, + "width": 3107, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2e764dc7-2dc7-496c-9519-ec34c76e8765", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/631b2cbf-6eea-4594-a085-81a8222045bd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2e764dc7-2dc7-496c-9519-ec34c76e8765", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4614, + "label": { + "@none": [ + "35r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/631b2cbf-6eea-4594-a085-81a8222045bd/", + "type": "ImageService1" + } + ], + "width": 3107, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/631b2cbf-6eea-4594-a085-81a8222045bd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/562434b9-bb4d-4c2b-8dd2-6c4d8a156a2c" + } + ] + }, + { + "height": 4089, + "label": { + "@none": [ + "35v" + ] + }, + "width": 2717, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b986c9e9-289a-4595-9644-ede22efbf7bc", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/06fe8d88-9883-4224-b3f3-a79edd735795", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b986c9e9-289a-4595-9644-ede22efbf7bc", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4089, + "label": { + "@none": [ + "35v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/06fe8d88-9883-4224-b3f3-a79edd735795/", + "type": "ImageService1" + } + ], + "width": 2717, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/06fe8d88-9883-4224-b3f3-a79edd735795/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a4b9f56-d248-44f9-9022-f0b8608c7c9c" + } + ] + }, + { + "height": 4600, + "label": { + "@none": [ + "36r" + ] + }, + "width": 3107, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a57bb850-7c05-440c-a4fa-515441bab09d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8004ff84-f87e-4906-9ab5-a4d54b037589", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a57bb850-7c05-440c-a4fa-515441bab09d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4600, + "label": { + "@none": [ + "36r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8004ff84-f87e-4906-9ab5-a4d54b037589/", + "type": "ImageService1" + } + ], + "width": 3107, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8004ff84-f87e-4906-9ab5-a4d54b037589/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37868f09-64c9-4d7e-b87e-53b53bb9261e" + } + ] + }, + { + "height": 4109, + "label": { + "@none": [ + "36v" + ] + }, + "width": 2731, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bd34a4d4-f376-4c04-a2d1-0465bfab30fc", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b83c69e5-cf41-401e-9262-452bbf73ced6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bd34a4d4-f376-4c04-a2d1-0465bfab30fc", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4109, + "label": { + "@none": [ + "36v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b83c69e5-cf41-401e-9262-452bbf73ced6/", + "type": "ImageService1" + } + ], + "width": 2731, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b83c69e5-cf41-401e-9262-452bbf73ced6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b355ae4-ac38-4e4c-8c46-f8f7cc28fea8" + } + ] + }, + { + "height": 4642, + "label": { + "@none": [ + "37r" + ] + }, + "width": 3097, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3a65d95c-6439-420d-8c41-81781dbd7f29", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0ad10eba-4eeb-4b5d-9853-20443adaa46d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3a65d95c-6439-420d-8c41-81781dbd7f29", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4642, + "label": { + "@none": [ + "37r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0ad10eba-4eeb-4b5d-9853-20443adaa46d/", + "type": "ImageService1" + } + ], + "width": 3097, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0ad10eba-4eeb-4b5d-9853-20443adaa46d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ec23d075-41bf-47af-934a-7d0a2e4a5480" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "37v" + ] + }, + "width": 2737, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cf33aac3-dc32-49f1-b8cb-baa972e07578", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/76cbddd4-1b05-4ee6-a6bd-0a8e4e78cb41", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cf33aac3-dc32-49f1-b8cb-baa972e07578", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "37v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/76cbddd4-1b05-4ee6-a6bd-0a8e4e78cb41/", + "type": "ImageService1" + } + ], + "width": 2737, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/76cbddd4-1b05-4ee6-a6bd-0a8e4e78cb41/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fc4fe94-8f8a-48de-ae2b-b4610f87d1c2" + } + ] + }, + { + "height": 4595, + "label": { + "@none": [ + "38r" + ] + }, + "width": 3131, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e1e02786-26df-4c94-addc-38cbf9f088a4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4be24c76-e01b-4680-a6b0-097b5b3d8a3f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e1e02786-26df-4c94-addc-38cbf9f088a4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4595, + "label": { + "@none": [ + "38r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4be24c76-e01b-4680-a6b0-097b5b3d8a3f/", + "type": "ImageService1" + } + ], + "width": 3131, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4be24c76-e01b-4680-a6b0-097b5b3d8a3f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea21b9a9-c53d-42f9-a89f-845673184024" + } + ] + }, + { + "height": 4094, + "label": { + "@none": [ + "38v" + ] + }, + "width": 2751, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/766e8aa6-c85d-4528-9837-8c3000c5c65d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/615bcc3f-69d1-4059-aefb-7f96a97dd00f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/766e8aa6-c85d-4528-9837-8c3000c5c65d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4094, + "label": { + "@none": [ + "38v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/615bcc3f-69d1-4059-aefb-7f96a97dd00f/", + "type": "ImageService1" + } + ], + "width": 2751, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/615bcc3f-69d1-4059-aefb-7f96a97dd00f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed583a0a-9181-489e-ae0e-d5c436ac58ce" + } + ] + }, + { + "height": 4608, + "label": { + "@none": [ + "39r" + ] + }, + "width": 3126, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7f562135-8d15-4ad0-b541-abc252350902", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6256571e-a145-4281-9c71-11b1371a1dbf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7f562135-8d15-4ad0-b541-abc252350902", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4608, + "label": { + "@none": [ + "39r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6256571e-a145-4281-9c71-11b1371a1dbf/", + "type": "ImageService1" + } + ], + "width": 3126, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6256571e-a145-4281-9c71-11b1371a1dbf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/174bbcdd-16f5-45f6-a391-d926c66c6d60" + } + ] + }, + { + "height": 4099, + "label": { + "@none": [ + "39v" + ] + }, + "width": 2755, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f3a16388-19db-4385-aeb0-47b198d8e0a1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f0f2ca26-b714-4087-ad00-f5c1bb7e4a84", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f3a16388-19db-4385-aeb0-47b198d8e0a1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4099, + "label": { + "@none": [ + "39v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f0f2ca26-b714-4087-ad00-f5c1bb7e4a84/", + "type": "ImageService1" + } + ], + "width": 2755, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f0f2ca26-b714-4087-ad00-f5c1bb7e4a84/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca87e985-8670-49e4-a679-49c04868b9a2" + } + ] + }, + { + "height": 4547, + "label": { + "@none": [ + "40r" + ] + }, + "width": 3060, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/18a3fbc9-e80c-4d68-8373-819e618b00ea", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/32b4617d-4088-48d3-922a-ae1f14b8adf6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/18a3fbc9-e80c-4d68-8373-819e618b00ea", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4547, + "label": { + "@none": [ + "40r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/32b4617d-4088-48d3-922a-ae1f14b8adf6/", + "type": "ImageService1" + } + ], + "width": 3060, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/32b4617d-4088-48d3-922a-ae1f14b8adf6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/837f47a7-bfd4-400e-95e1-10d9fb3b7199" + } + ] + }, + { + "height": 4125, + "label": { + "@none": [ + "40v" + ] + }, + "width": 2780, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7d21786f-ae96-41dc-aa70-eecd664a915f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3224b687-746a-4486-8d67-dde326c3f8ce", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7d21786f-ae96-41dc-aa70-eecd664a915f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4125, + "label": { + "@none": [ + "40v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3224b687-746a-4486-8d67-dde326c3f8ce/", + "type": "ImageService1" + } + ], + "width": 2780, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3224b687-746a-4486-8d67-dde326c3f8ce/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/324a47b6-2d9c-49f7-b669-be4c22218eb5" + } + ] + }, + { + "height": 4600, + "label": { + "@none": [ + "41r" + ] + }, + "width": 3055, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bc078587-5650-4629-a6a3-661d7b0f6acf", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7405855d-b1dd-4f8f-a33e-8a7eecfa5f2c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bc078587-5650-4629-a6a3-661d7b0f6acf", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4600, + "label": { + "@none": [ + "41r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7405855d-b1dd-4f8f-a33e-8a7eecfa5f2c/", + "type": "ImageService1" + } + ], + "width": 3055, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7405855d-b1dd-4f8f-a33e-8a7eecfa5f2c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/961a85c7-c073-4a9a-a3f3-b7895480bab6" + } + ] + }, + { + "height": 4112, + "label": { + "@none": [ + "41v" + ] + }, + "width": 2730, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/04e921e9-9853-46ce-b948-a928c4361a7c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6fc9fa2a-2fdf-438f-8fb9-c48aa7149e4c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/04e921e9-9853-46ce-b948-a928c4361a7c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4112, + "label": { + "@none": [ + "41v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6fc9fa2a-2fdf-438f-8fb9-c48aa7149e4c/", + "type": "ImageService1" + } + ], + "width": 2730, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6fc9fa2a-2fdf-438f-8fb9-c48aa7149e4c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a35cd57e-e764-478b-818d-086c18849a75" + } + ] + }, + { + "height": 4629, + "label": { + "@none": [ + "42r" + ] + }, + "width": 3082, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2344e76c-5087-4370-b94c-b8798f7e0d10", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/67694ede-c312-41a9-a41c-24fe53192c75", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2344e76c-5087-4370-b94c-b8798f7e0d10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4629, + "label": { + "@none": [ + "42r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/67694ede-c312-41a9-a41c-24fe53192c75/", + "type": "ImageService1" + } + ], + "width": 3082, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/67694ede-c312-41a9-a41c-24fe53192c75/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee804600-912b-4654-9898-289d2fe7035b" + } + ] + }, + { + "height": 4126, + "label": { + "@none": [ + "42v" + ] + }, + "width": 2753, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7171cc13-8fe1-478e-a00c-8a738c767975", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/91350e7f-5bcc-438f-84ad-589912860846", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7171cc13-8fe1-478e-a00c-8a738c767975", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4126, + "label": { + "@none": [ + "42v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/91350e7f-5bcc-438f-84ad-589912860846/", + "type": "ImageService1" + } + ], + "width": 2753, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/91350e7f-5bcc-438f-84ad-589912860846/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4ed1d42-5ecb-4427-8e35-4b1b7c8f1eca" + } + ] + }, + { + "height": 4575, + "label": { + "@none": [ + "43r" + ] + }, + "width": 3059, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bb9c84c7-9198-439c-a4a5-cd891a472f77", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/85e9c4b0-ff14-4f40-9556-06f1965ba7d5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bb9c84c7-9198-439c-a4a5-cd891a472f77", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4575, + "label": { + "@none": [ + "43r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/85e9c4b0-ff14-4f40-9556-06f1965ba7d5/", + "type": "ImageService1" + } + ], + "width": 3059, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/85e9c4b0-ff14-4f40-9556-06f1965ba7d5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/429b0ad7-181a-4fe0-a6a6-44647ddfbb29" + } + ] + }, + { + "height": 4088, + "label": { + "@none": [ + "43v" + ] + }, + "width": 2787, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5f0e779e-64f3-4207-9a42-325ca6f086e2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5d762b46-b898-4cf8-b993-f8d7e8010e46", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5f0e779e-64f3-4207-9a42-325ca6f086e2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4088, + "label": { + "@none": [ + "43v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5d762b46-b898-4cf8-b993-f8d7e8010e46/", + "type": "ImageService1" + } + ], + "width": 2787, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5d762b46-b898-4cf8-b993-f8d7e8010e46/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72b5df88-cd7c-49e1-b069-03ac38a1de9f" + } + ] + }, + { + "height": 4594, + "label": { + "@none": [ + "44r" + ] + }, + "width": 3054, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d650f079-42c3-4289-b322-c2af8ffe913b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/86f8b118-0bbe-4e3e-bbd3-b75e94d382e0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d650f079-42c3-4289-b322-c2af8ffe913b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4594, + "label": { + "@none": [ + "44r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/86f8b118-0bbe-4e3e-bbd3-b75e94d382e0/", + "type": "ImageService1" + } + ], + "width": 3054, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/86f8b118-0bbe-4e3e-bbd3-b75e94d382e0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03b365e6-367a-40ca-bb72-fffe0903a1ec" + } + ] + }, + { + "height": 4150, + "label": { + "@none": [ + "44v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/22fabac2-0349-4bc0-bf64-281ae6eb12d6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b1dcb324-8d98-43d1-9b31-8f2d212aeaba", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/22fabac2-0349-4bc0-bf64-281ae6eb12d6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4150, + "label": { + "@none": [ + "44v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b1dcb324-8d98-43d1-9b31-8f2d212aeaba/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b1dcb324-8d98-43d1-9b31-8f2d212aeaba/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52ef6257-79d3-4a65-8ad5-d05641f6df1f" + } + ] + }, + { + "height": 4570, + "label": { + "@none": [ + "45r" + ] + }, + "width": 3068, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1528ce23-45ac-4648-8dfa-96c931071dd0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/40c8f5fb-de0c-4a51-830d-08384b0c994c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1528ce23-45ac-4648-8dfa-96c931071dd0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4570, + "label": { + "@none": [ + "45r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/40c8f5fb-de0c-4a51-830d-08384b0c994c/", + "type": "ImageService1" + } + ], + "width": 3068, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/40c8f5fb-de0c-4a51-830d-08384b0c994c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1142511e-2423-4ef8-9c39-85d0e7cbfea2" + } + ] + }, + { + "height": 4098, + "label": { + "@none": [ + "45v" + ] + }, + "width": 2777, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c1bd80b6-cb9d-48ab-a5ac-129195ad34bf", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/937b7a32-4a4e-4414-a87b-fab5c8aa9c7f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c1bd80b6-cb9d-48ab-a5ac-129195ad34bf", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4098, + "label": { + "@none": [ + "45v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/937b7a32-4a4e-4414-a87b-fab5c8aa9c7f/", + "type": "ImageService1" + } + ], + "width": 2777, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/937b7a32-4a4e-4414-a87b-fab5c8aa9c7f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/269d65d2-389f-4037-8dde-c0a131cfc516" + } + ] + }, + { + "height": 4623, + "label": { + "@none": [ + "46r" + ] + }, + "width": 3021, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/82589282-3bfc-44d5-a9da-791d86e19c3b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6c5e8cd4-94ce-4f7c-944a-f46c9c30057f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/82589282-3bfc-44d5-a9da-791d86e19c3b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4623, + "label": { + "@none": [ + "46r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6c5e8cd4-94ce-4f7c-944a-f46c9c30057f/", + "type": "ImageService1" + } + ], + "width": 3021, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6c5e8cd4-94ce-4f7c-944a-f46c9c30057f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/695b4b2b-f43d-4245-a942-a3fca60d62e0" + } + ] + }, + { + "height": 4126, + "label": { + "@none": [ + "46v" + ] + }, + "width": 2744, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/02cfb875-c8fc-41eb-afdf-975853b9051e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9f313329-b581-4870-bf21-d70657af84a5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/02cfb875-c8fc-41eb-afdf-975853b9051e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4126, + "label": { + "@none": [ + "46v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9f313329-b581-4870-bf21-d70657af84a5/", + "type": "ImageService1" + } + ], + "width": 2744, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9f313329-b581-4870-bf21-d70657af84a5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef7b8715-ce82-4b90-a924-9cdc3a3a60af" + } + ] + }, + { + "height": 4585, + "label": { + "@none": [ + "47r" + ] + }, + "width": 3050, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4dd87833-782a-4ec1-a7d8-02247070b7a7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/78d79401-1e84-4ef2-ae30-08ea7e97e393", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4dd87833-782a-4ec1-a7d8-02247070b7a7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4585, + "label": { + "@none": [ + "47r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/78d79401-1e84-4ef2-ae30-08ea7e97e393/", + "type": "ImageService1" + } + ], + "width": 3050, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/78d79401-1e84-4ef2-ae30-08ea7e97e393/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/266936e8-5607-488a-9d71-2146b591493a" + } + ] + }, + { + "height": 4135, + "label": { + "@none": [ + "47v" + ] + }, + "width": 2725, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b00c7a73-925c-4077-a774-6833c71ea42d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a9b9d66d-c9be-4f43-9c36-57601d6a6baa", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b00c7a73-925c-4077-a774-6833c71ea42d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4135, + "label": { + "@none": [ + "47v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a9b9d66d-c9be-4f43-9c36-57601d6a6baa/", + "type": "ImageService1" + } + ], + "width": 2725, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a9b9d66d-c9be-4f43-9c36-57601d6a6baa/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb05c30a-d1c8-4cc7-929e-73c632fc4fd1" + } + ] + }, + { + "height": 4585, + "label": { + "@none": [ + "48r" + ] + }, + "width": 3083, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/08c9c3d4-d075-4ff7-8f92-d88cb90f96c4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e8b3b641-898d-4482-998c-e867cd720eb0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/08c9c3d4-d075-4ff7-8f92-d88cb90f96c4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4585, + "label": { + "@none": [ + "48r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e8b3b641-898d-4482-998c-e867cd720eb0/", + "type": "ImageService1" + } + ], + "width": 3083, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e8b3b641-898d-4482-998c-e867cd720eb0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1db303ba-bee3-46bb-b7c8-2cde8ad5b469" + } + ] + }, + { + "height": 4137, + "label": { + "@none": [ + "48v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7d8b1d13-e9fe-469d-a989-d9eadfa94329", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5e2a3c0d-4222-43b5-bb69-b901ee397600", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7d8b1d13-e9fe-469d-a989-d9eadfa94329", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4137, + "label": { + "@none": [ + "48v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5e2a3c0d-4222-43b5-bb69-b901ee397600/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5e2a3c0d-4222-43b5-bb69-b901ee397600/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2119491-8044-4045-985c-0da427f73330" + } + ] + }, + { + "height": 4592, + "label": { + "@none": [ + "49r" + ] + }, + "width": 3050, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ed965c3a-092b-4e90-b98c-342ce0296098", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b5f4105f-d8f9-44e8-b6e9-2cf7ff792864", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ed965c3a-092b-4e90-b98c-342ce0296098", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4592, + "label": { + "@none": [ + "49r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b5f4105f-d8f9-44e8-b6e9-2cf7ff792864/", + "type": "ImageService1" + } + ], + "width": 3050, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b5f4105f-d8f9-44e8-b6e9-2cf7ff792864/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a6320724-bd72-4c47-b544-89cf66ace654" + } + ] + }, + { + "height": 4141, + "label": { + "@none": [ + "49v" + ] + }, + "width": 2735, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8574160e-a9b6-4d00-ad2a-ba1f00a2da6b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6d944b36-44c7-42b7-aed6-1e6cdde66f45", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8574160e-a9b6-4d00-ad2a-ba1f00a2da6b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4141, + "label": { + "@none": [ + "49v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6d944b36-44c7-42b7-aed6-1e6cdde66f45/", + "type": "ImageService1" + } + ], + "width": 2735, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6d944b36-44c7-42b7-aed6-1e6cdde66f45/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d37223e1-3e05-45f9-9ede-0d38d3dde756" + } + ] + }, + { + "height": 4589, + "label": { + "@none": [ + "50r" + ] + }, + "width": 3040, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1fcfb9f2-f196-4592-b4b0-e77400feee5a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/18a1d9f1-3f5f-4952-9ccb-60665cc99e57", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1fcfb9f2-f196-4592-b4b0-e77400feee5a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4589, + "label": { + "@none": [ + "50r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/18a1d9f1-3f5f-4952-9ccb-60665cc99e57/", + "type": "ImageService1" + } + ], + "width": 3040, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/18a1d9f1-3f5f-4952-9ccb-60665cc99e57/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8d438ab-af47-474a-8a33-9a12f467beab" + } + ] + }, + { + "height": 4124, + "label": { + "@none": [ + "50v" + ] + }, + "width": 2728, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4a5635da-51df-4963-a752-45150be95d14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c51f424f-742f-43ea-9e4c-ba10aa9ea2dc", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4a5635da-51df-4963-a752-45150be95d14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4124, + "label": { + "@none": [ + "50v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c51f424f-742f-43ea-9e4c-ba10aa9ea2dc/", + "type": "ImageService1" + } + ], + "width": 2728, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c51f424f-742f-43ea-9e4c-ba10aa9ea2dc/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34ebacb0-3855-4f58-b2d2-5ab38c0e4185" + } + ] + }, + { + "height": 4566, + "label": { + "@none": [ + "51r" + ] + }, + "width": 2997, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0058de20-cc39-466d-9697-c7c97afc18aa", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1df0e844-d18d-49e0-9813-db2c4f60d756", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0058de20-cc39-466d-9697-c7c97afc18aa", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4566, + "label": { + "@none": [ + "51r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1df0e844-d18d-49e0-9813-db2c4f60d756/", + "type": "ImageService1" + } + ], + "width": 2997, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1df0e844-d18d-49e0-9813-db2c4f60d756/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c53ad1a8-4862-4de0-b3d0-cda24b13622b" + } + ] + }, + { + "height": 4080, + "label": { + "@none": [ + "51v" + ] + }, + "width": 2692, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1bb6fd79-b98d-484d-a524-05b82dd41a62", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c9f3fe0a-58fb-4628-94a2-05f1113dded1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1bb6fd79-b98d-484d-a524-05b82dd41a62", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4080, + "label": { + "@none": [ + "51v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c9f3fe0a-58fb-4628-94a2-05f1113dded1/", + "type": "ImageService1" + } + ], + "width": 2692, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c9f3fe0a-58fb-4628-94a2-05f1113dded1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8533a13b-68c2-4204-bc46-9437631901ba" + } + ] + }, + { + "height": 4585, + "label": { + "@none": [ + "52r" + ] + }, + "width": 2993, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d4914ba4-846d-44ad-9cea-493efa0dc655", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/38fb6550-7104-4216-bcf3-4263198faa3b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d4914ba4-846d-44ad-9cea-493efa0dc655", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4585, + "label": { + "@none": [ + "52r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/38fb6550-7104-4216-bcf3-4263198faa3b/", + "type": "ImageService1" + } + ], + "width": 2993, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/38fb6550-7104-4216-bcf3-4263198faa3b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee1cc96f-e626-49eb-b332-2a7f4d1d7f76" + } + ] + }, + { + "height": 4140, + "label": { + "@none": [ + "52v" + ] + }, + "width": 2721, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/94e68335-50bc-48b3-bfd6-9487d12d7725", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5e3c9e77-7897-4692-b8f6-1c156bdae3a5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/94e68335-50bc-48b3-bfd6-9487d12d7725", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4140, + "label": { + "@none": [ + "52v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5e3c9e77-7897-4692-b8f6-1c156bdae3a5/", + "type": "ImageService1" + } + ], + "width": 2721, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5e3c9e77-7897-4692-b8f6-1c156bdae3a5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fb107541-491d-431a-9e49-3b0d90128a86" + } + ] + }, + { + "height": 4580, + "label": { + "@none": [ + "53r" + ] + }, + "width": 3022, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0cae9d48-4ea9-42ba-ac26-e233362f08a1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/65a62be3-7827-45d9-951c-7dda15bbcded", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0cae9d48-4ea9-42ba-ac26-e233362f08a1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4580, + "label": { + "@none": [ + "53r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/65a62be3-7827-45d9-951c-7dda15bbcded/", + "type": "ImageService1" + } + ], + "width": 3022, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/65a62be3-7827-45d9-951c-7dda15bbcded/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e64a5b13-4329-4bb1-8a9a-e27fdec24bb8" + } + ] + }, + { + "height": 4159, + "label": { + "@none": [ + "53v" + ] + }, + "width": 2772, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/fe5a74bb-36a0-48a2-a1cc-702b4da46775", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a96a3b91-ee52-4016-ba6c-f56f4f413e76", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/fe5a74bb-36a0-48a2-a1cc-702b4da46775", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4159, + "label": { + "@none": [ + "53v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a96a3b91-ee52-4016-ba6c-f56f4f413e76/", + "type": "ImageService1" + } + ], + "width": 2772, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a96a3b91-ee52-4016-ba6c-f56f4f413e76/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/887c74d1-78b6-4331-a227-8ee72b446ca0" + } + ] + }, + { + "height": 4503, + "label": { + "@none": [ + "54r" + ] + }, + "width": 3059, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/26d7585d-35f7-448e-9ccb-569104aceeb6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f0ddeeaf-1d9b-4bef-9e95-701b9b868531", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/26d7585d-35f7-448e-9ccb-569104aceeb6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4503, + "label": { + "@none": [ + "54r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f0ddeeaf-1d9b-4bef-9e95-701b9b868531/", + "type": "ImageService1" + } + ], + "width": 3059, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f0ddeeaf-1d9b-4bef-9e95-701b9b868531/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/28b38f86-5377-4a6a-908d-8075feb4bcc8" + } + ] + }, + { + "height": 4164, + "label": { + "@none": [ + "54v" + ] + }, + "width": 2720, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/93cdac5e-15ac-4a6e-841e-8828248f008b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b0b29977-8170-4dcf-8499-d8937646e30e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/93cdac5e-15ac-4a6e-841e-8828248f008b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4164, + "label": { + "@none": [ + "54v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b0b29977-8170-4dcf-8499-d8937646e30e/", + "type": "ImageService1" + } + ], + "width": 2720, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b0b29977-8170-4dcf-8499-d8937646e30e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7df322f-cdbf-4cd4-9c0f-b8c0c1bb46d9" + } + ] + }, + { + "height": 4566, + "label": { + "@none": [ + "55r" + ] + }, + "width": 3012, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/dec35c41-54b2-46a8-b141-c5129626e0f6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e7e4f62a-35e0-49fe-b8be-5b32123b3bd2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/dec35c41-54b2-46a8-b141-c5129626e0f6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4566, + "label": { + "@none": [ + "55r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e7e4f62a-35e0-49fe-b8be-5b32123b3bd2/", + "type": "ImageService1" + } + ], + "width": 3012, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e7e4f62a-35e0-49fe-b8be-5b32123b3bd2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04dc6766-ac2e-4abf-a368-42ea4bd3333e" + } + ] + }, + { + "height": 4145, + "label": { + "@none": [ + "55v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/60c5d9df-2697-4a13-a690-a6fac8d996f3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7e0c9c85-12e7-4042-b881-9ccfc965b322", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/60c5d9df-2697-4a13-a690-a6fac8d996f3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4145, + "label": { + "@none": [ + "55v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7e0c9c85-12e7-4042-b881-9ccfc965b322/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7e0c9c85-12e7-4042-b881-9ccfc965b322/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a72cebb8-83e2-4bec-90f2-3a57d6462457" + } + ] + }, + { + "height": 4494, + "label": { + "@none": [ + "56r" + ] + }, + "width": 3017, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c4d07c51-cf4f-4070-a0e3-cde10b7929f9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e22fb5a2-5064-451c-b6c1-356bfdafb929", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c4d07c51-cf4f-4070-a0e3-cde10b7929f9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4494, + "label": { + "@none": [ + "56r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e22fb5a2-5064-451c-b6c1-356bfdafb929/", + "type": "ImageService1" + } + ], + "width": 3017, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e22fb5a2-5064-451c-b6c1-356bfdafb929/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0694f31-89a2-4b71-a5bc-b1c9d04603b1" + } + ] + }, + { + "height": 4156, + "label": { + "@none": [ + "56v" + ] + }, + "width": 2796, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0dd2110c-bcc6-472d-91a3-e834f9165efb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/db668867-4907-449a-bd40-4d0ffc73b189", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0dd2110c-bcc6-472d-91a3-e834f9165efb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4156, + "label": { + "@none": [ + "56v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/db668867-4907-449a-bd40-4d0ffc73b189/", + "type": "ImageService1" + } + ], + "width": 2796, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/db668867-4907-449a-bd40-4d0ffc73b189/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98c597a3-b84b-43c9-9f89-3ce38d2614b9" + } + ] + }, + { + "height": 4532, + "label": { + "@none": [ + "57r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b9d68a9-4474-45bc-aa96-b39060291d4d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2c68c417-5694-481a-a860-95c09de35060", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b9d68a9-4474-45bc-aa96-b39060291d4d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4532, + "label": { + "@none": [ + "57r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2c68c417-5694-481a-a860-95c09de35060/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2c68c417-5694-481a-a860-95c09de35060/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d592e8fb-637a-4963-bfaa-2e6c88e3fc2e" + } + ] + }, + { + "height": 4135, + "label": { + "@none": [ + "57v" + ] + }, + "width": 2767, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ef3b5e43-dff1-45af-8297-867bc84deec4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/93e4916c-a16e-45bd-bc1d-369886976601", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ef3b5e43-dff1-45af-8297-867bc84deec4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4135, + "label": { + "@none": [ + "57v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/93e4916c-a16e-45bd-bc1d-369886976601/", + "type": "ImageService1" + } + ], + "width": 2767, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/93e4916c-a16e-45bd-bc1d-369886976601/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bda07db4-a3d1-4cf5-b7a4-dcf5cd7df437" + } + ] + }, + { + "height": 4570, + "label": { + "@none": [ + "58r" + ] + }, + "width": 3026, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4e4d1d4b-1d99-4c3d-9444-3efc92cdadc2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/13a610d2-22e6-4bb4-a1d4-caad3bbf8b57", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4e4d1d4b-1d99-4c3d-9444-3efc92cdadc2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4570, + "label": { + "@none": [ + "58r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/13a610d2-22e6-4bb4-a1d4-caad3bbf8b57/", + "type": "ImageService1" + } + ], + "width": 3026, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/13a610d2-22e6-4bb4-a1d4-caad3bbf8b57/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1978761-6aa2-4b4e-af07-90b564d46082" + } + ] + }, + { + "height": 4117, + "label": { + "@none": [ + "58v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ca036e22-dc7b-4f26-8564-5ffda1056af3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/46a9090d-bca7-4791-aacc-725017b7ea95", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ca036e22-dc7b-4f26-8564-5ffda1056af3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4117, + "label": { + "@none": [ + "58v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/46a9090d-bca7-4791-aacc-725017b7ea95/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/46a9090d-bca7-4791-aacc-725017b7ea95/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/843634c8-525f-4c00-814d-43f779d0ac3d" + } + ] + }, + { + "height": 4578, + "label": { + "@none": [ + "59r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ba5784d9-707f-471d-ace0-e122f04cc6c5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ec6d4f97-1ccc-42e4-a624-f9f351ca4836", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ba5784d9-707f-471d-ace0-e122f04cc6c5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4578, + "label": { + "@none": [ + "59r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ec6d4f97-1ccc-42e4-a624-f9f351ca4836/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ec6d4f97-1ccc-42e4-a624-f9f351ca4836/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/115b9dd2-647b-4631-8add-0bda1d62b7ba" + } + ] + }, + { + "height": 4135, + "label": { + "@none": [ + "59v" + ] + }, + "width": 2748, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e3714ae0-ea88-4474-b8e1-93c1100448d9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c6afad87-2659-43fb-b2b0-88623f56fdc9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e3714ae0-ea88-4474-b8e1-93c1100448d9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4135, + "label": { + "@none": [ + "59v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c6afad87-2659-43fb-b2b0-88623f56fdc9/", + "type": "ImageService1" + } + ], + "width": 2748, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c6afad87-2659-43fb-b2b0-88623f56fdc9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b884281-7fa8-471a-9076-ee47e09236e9" + } + ] + }, + { + "height": 4584, + "label": { + "@none": [ + "60r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/23ecdea3-7ef5-4fa1-8ce9-db00fb27f38b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3b163db9-47d2-46e2-8899-f2c825fa8d87", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/23ecdea3-7ef5-4fa1-8ce9-db00fb27f38b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4584, + "label": { + "@none": [ + "60r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3b163db9-47d2-46e2-8899-f2c825fa8d87/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3b163db9-47d2-46e2-8899-f2c825fa8d87/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf8ce46c-da75-4ae8-a11e-0da5c9655385" + } + ] + }, + { + "height": 4165, + "label": { + "@none": [ + "60v" + ] + }, + "width": 2759, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e51e053c-866f-4cdb-aeca-3839c5167b65", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bdff4722-b3e2-40cb-89c6-28b0d9ad676a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e51e053c-866f-4cdb-aeca-3839c5167b65", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4165, + "label": { + "@none": [ + "60v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bdff4722-b3e2-40cb-89c6-28b0d9ad676a/", + "type": "ImageService1" + } + ], + "width": 2759, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bdff4722-b3e2-40cb-89c6-28b0d9ad676a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b256e845-42b2-4b7d-91f0-5bb10b79bba1" + } + ] + }, + { + "height": 4513, + "label": { + "@none": [ + "61r" + ] + }, + "width": 2997, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e8e51623-7364-439a-92c3-7b0da0128dc5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/33b0cecd-8393-4e5c-8eda-ae56f2da466e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e8e51623-7364-439a-92c3-7b0da0128dc5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4513, + "label": { + "@none": [ + "61r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/33b0cecd-8393-4e5c-8eda-ae56f2da466e/", + "type": "ImageService1" + } + ], + "width": 2997, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/33b0cecd-8393-4e5c-8eda-ae56f2da466e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d61de10-891f-4858-9238-ed2fc93f75c2" + } + ] + }, + { + "height": 4174, + "label": { + "@none": [ + "61v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2b1e6796-7407-4f99-af2e-3ad32da19140", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dfb65d31-af4d-4443-b0cf-b620341aedcb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2b1e6796-7407-4f99-af2e-3ad32da19140", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4174, + "label": { + "@none": [ + "61v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dfb65d31-af4d-4443-b0cf-b620341aedcb/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dfb65d31-af4d-4443-b0cf-b620341aedcb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b88b828d-22fe-4ee2-8518-0f90a8f383bd" + } + ] + }, + { + "height": 4537, + "label": { + "@none": [ + "62r" + ] + }, + "width": 3027, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4de76df7-1613-4f5b-b68b-04bd57f0a9c6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/578d4588-a5c7-4a60-a9fa-015ff0d8822f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4de76df7-1613-4f5b-b68b-04bd57f0a9c6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4537, + "label": { + "@none": [ + "62r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/578d4588-a5c7-4a60-a9fa-015ff0d8822f/", + "type": "ImageService1" + } + ], + "width": 3027, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/578d4588-a5c7-4a60-a9fa-015ff0d8822f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08b4519e-ee00-4e45-a984-c458dbec74b6" + } + ] + }, + { + "height": 4154, + "label": { + "@none": [ + "62v" + ] + }, + "width": 2777, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1d3eb66e-0933-4992-a4b2-b3b6a855a83b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cdd5a4b5-77e3-4964-810c-9c06545820fa", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1d3eb66e-0933-4992-a4b2-b3b6a855a83b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4154, + "label": { + "@none": [ + "62v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cdd5a4b5-77e3-4964-810c-9c06545820fa/", + "type": "ImageService1" + } + ], + "width": 2777, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cdd5a4b5-77e3-4964-810c-9c06545820fa/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa24115a-ae50-418b-b607-2194e5048c51" + } + ] + }, + { + "height": 4546, + "label": { + "@none": [ + "63r" + ] + }, + "width": 3002, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b04f174-3de5-4c33-bb97-b254c63203b1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0db1c25c-9183-4cba-a1ec-fa7d973f16f6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b04f174-3de5-4c33-bb97-b254c63203b1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4546, + "label": { + "@none": [ + "63r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0db1c25c-9183-4cba-a1ec-fa7d973f16f6/", + "type": "ImageService1" + } + ], + "width": 3002, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0db1c25c-9183-4cba-a1ec-fa7d973f16f6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1970c413-19a7-4d31-84d9-9274c44eae7d" + } + ] + }, + { + "height": 4145, + "label": { + "@none": [ + "63v" + ] + }, + "width": 2748, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2d426098-fe8c-40ab-836c-34e34598415a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b1493d06-b2c7-4086-b14d-1020b08efec9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2d426098-fe8c-40ab-836c-34e34598415a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4145, + "label": { + "@none": [ + "63v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b1493d06-b2c7-4086-b14d-1020b08efec9/", + "type": "ImageService1" + } + ], + "width": 2748, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b1493d06-b2c7-4086-b14d-1020b08efec9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0de64e95-9dc5-4488-a362-eb0513f8d570" + } + ] + }, + { + "height": 4557, + "label": { + "@none": [ + "64r" + ] + }, + "width": 3017, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b09f7b22-167c-4b9e-8b76-70b057ed36a2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b19a3fd6-30b0-4aca-ae99-0e3898a7cec5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b09f7b22-167c-4b9e-8b76-70b057ed36a2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4557, + "label": { + "@none": [ + "64r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b19a3fd6-30b0-4aca-ae99-0e3898a7cec5/", + "type": "ImageService1" + } + ], + "width": 3017, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b19a3fd6-30b0-4aca-ae99-0e3898a7cec5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2b23a77b-ac3b-4fec-9980-6e5f7162f045" + } + ] + }, + { + "height": 4159, + "label": { + "@none": [ + "64v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/26714d77-7c1e-4522-8ea8-e236dd0c9b6d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1c2c2bd9-bf9b-423c-96bc-ef23b6c5fba7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/26714d77-7c1e-4522-8ea8-e236dd0c9b6d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4159, + "label": { + "@none": [ + "64v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1c2c2bd9-bf9b-423c-96bc-ef23b6c5fba7/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1c2c2bd9-bf9b-423c-96bc-ef23b6c5fba7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df560e4d-36c1-4083-b7f5-c9effc84a1ef" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "65r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/778862a9-2f6b-4ecb-b9b8-f86059bd8e19", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/280f34bf-0a98-4271-942c-461b54aefc80", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/778862a9-2f6b-4ecb-b9b8-f86059bd8e19", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "65r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/280f34bf-0a98-4271-942c-461b54aefc80/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/280f34bf-0a98-4271-942c-461b54aefc80/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d344d20-748b-4c38-a83d-495cd911a97d" + } + ] + }, + { + "height": 4150, + "label": { + "@none": [ + "65v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/57fc9da2-0334-4fdf-8f24-4c98d9d6b06b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/153938a8-abaa-4f3b-96ec-02773c838b8d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/57fc9da2-0334-4fdf-8f24-4c98d9d6b06b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4150, + "label": { + "@none": [ + "65v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/153938a8-abaa-4f3b-96ec-02773c838b8d/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/153938a8-abaa-4f3b-96ec-02773c838b8d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3331e4b1-98a3-47e4-9c35-52fb3f1586fe" + } + ] + }, + { + "height": 4557, + "label": { + "@none": [ + "66r" + ] + }, + "width": 2983, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/66cf66ad-4275-4458-a166-3dfb79487796", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3d56b6fc-3940-4d2d-bac3-730b97932684", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/66cf66ad-4275-4458-a166-3dfb79487796", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4557, + "label": { + "@none": [ + "66r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3d56b6fc-3940-4d2d-bac3-730b97932684/", + "type": "ImageService1" + } + ], + "width": 2983, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3d56b6fc-3940-4d2d-bac3-730b97932684/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5020dcf5-b85e-4815-a244-68af398b44c3" + } + ] + }, + { + "height": 4187, + "label": { + "@none": [ + "66v" + ] + }, + "width": 2729, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/62618bfd-ace9-43ed-a87f-d47fd2d549a9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/612c0b98-01d8-4a0d-b8df-c62234e1b51a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/62618bfd-ace9-43ed-a87f-d47fd2d549a9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4187, + "label": { + "@none": [ + "66v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/612c0b98-01d8-4a0d-b8df-c62234e1b51a/", + "type": "ImageService1" + } + ], + "width": 2729, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/612c0b98-01d8-4a0d-b8df-c62234e1b51a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3fcd6b4-36fc-4e39-9b81-b53584306f76" + } + ] + }, + { + "height": 4565, + "label": { + "@none": [ + "67r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1e1e8a26-be99-4c3b-9fb1-e1a3ad974ef4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/80a402f2-4fa8-4f82-9950-3c18effe15ba", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1e1e8a26-be99-4c3b-9fb1-e1a3ad974ef4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4565, + "label": { + "@none": [ + "67r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/80a402f2-4fa8-4f82-9950-3c18effe15ba/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/80a402f2-4fa8-4f82-9950-3c18effe15ba/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d860542-9c06-4e0a-8299-7a04f33cbf84" + } + ] + }, + { + "height": 4169, + "label": { + "@none": [ + "67v" + ] + }, + "width": 2725, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4877a58b-9276-4423-88e3-09bede27be14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/452ec42e-91fb-4d3d-b66f-a8392b7de4f6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4877a58b-9276-4423-88e3-09bede27be14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4169, + "label": { + "@none": [ + "67v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/452ec42e-91fb-4d3d-b66f-a8392b7de4f6/", + "type": "ImageService1" + } + ], + "width": 2725, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/452ec42e-91fb-4d3d-b66f-a8392b7de4f6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/655fb7a7-4a91-4f2d-add3-464e1b41051a" + } + ] + }, + { + "height": 4585, + "label": { + "@none": [ + "68r" + ] + }, + "width": 3017, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/02898b91-9dd2-4327-aa0f-3a4bb4743e8e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e4f091d6-6e15-44b9-a7a6-7af903b08687", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/02898b91-9dd2-4327-aa0f-3a4bb4743e8e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4585, + "label": { + "@none": [ + "68r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e4f091d6-6e15-44b9-a7a6-7af903b08687/", + "type": "ImageService1" + } + ], + "width": 3017, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e4f091d6-6e15-44b9-a7a6-7af903b08687/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5c81e9d-0172-4857-9d51-9b29f960bd33" + } + ] + }, + { + "height": 4192, + "label": { + "@none": [ + "68v" + ] + }, + "width": 2731, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/10d1044b-19b4-4017-b60a-b991cd08ed2b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c1f7a06b-c547-42ba-a608-76eda239f2ff", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/10d1044b-19b4-4017-b60a-b991cd08ed2b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4192, + "label": { + "@none": [ + "68v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c1f7a06b-c547-42ba-a608-76eda239f2ff/", + "type": "ImageService1" + } + ], + "width": 2731, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c1f7a06b-c547-42ba-a608-76eda239f2ff/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31f28a3f-8168-4326-8530-3571674a6468" + } + ] + }, + { + "height": 4593, + "label": { + "@none": [ + "69r" + ] + }, + "width": 2990, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1f1c58fa-59f2-4ca8-8f22-82a1a2f0db14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a4d47767-39e6-497b-a1d9-076760e636f8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1f1c58fa-59f2-4ca8-8f22-82a1a2f0db14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4593, + "label": { + "@none": [ + "69r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a4d47767-39e6-497b-a1d9-076760e636f8/", + "type": "ImageService1" + } + ], + "width": 2990, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a4d47767-39e6-497b-a1d9-076760e636f8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5125e869-8082-482b-a8e7-e3bfb02e70cd" + } + ] + }, + { + "height": 4169, + "label": { + "@none": [ + "69v" + ] + }, + "width": 2701, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0e6b88c0-b53c-4971-86dc-f3ee8b962173", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/edc8ddf1-9cb8-4596-afd1-68d437ffa200", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0e6b88c0-b53c-4971-86dc-f3ee8b962173", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4169, + "label": { + "@none": [ + "69v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/edc8ddf1-9cb8-4596-afd1-68d437ffa200/", + "type": "ImageService1" + } + ], + "width": 2701, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/edc8ddf1-9cb8-4596-afd1-68d437ffa200/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72bf11bc-99d5-4aca-87bb-2708f647ad5b" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "70r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5587beb0-bb48-4d59-af87-862c054a884e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/22f6803e-5a7b-498e-b3e7-016f3c05fe71", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5587beb0-bb48-4d59-af87-862c054a884e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "70r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/22f6803e-5a7b-498e-b3e7-016f3c05fe71/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/22f6803e-5a7b-498e-b3e7-016f3c05fe71/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8791d033-f13a-4292-94a2-dddb7c5f09f4" + } + ] + }, + { + "height": 4183, + "label": { + "@none": [ + "70v" + ] + }, + "width": 2745, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f8dac05f-1d64-43a1-82cc-59a44972e392", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6f0242c0-a9ee-4510-97ca-c293436b1adf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f8dac05f-1d64-43a1-82cc-59a44972e392", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4183, + "label": { + "@none": [ + "70v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6f0242c0-a9ee-4510-97ca-c293436b1adf/", + "type": "ImageService1" + } + ], + "width": 2745, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6f0242c0-a9ee-4510-97ca-c293436b1adf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0304fe5b-7d69-4157-acf2-4f98cb246607" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "71r" + ] + }, + "width": 2978, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7cab9028-ff34-4b43-9176-c9235c0120e3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/65e5f441-93ee-4011-b280-e8b3baffc6b4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7cab9028-ff34-4b43-9176-c9235c0120e3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "71r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/65e5f441-93ee-4011-b280-e8b3baffc6b4/", + "type": "ImageService1" + } + ], + "width": 2978, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/65e5f441-93ee-4011-b280-e8b3baffc6b4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35d6c01a-dfba-4c15-9c7e-afe48c3be9ff" + } + ] + }, + { + "height": 4179, + "label": { + "@none": [ + "71v" + ] + }, + "width": 2720, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c18e9699-0126-45b3-9ed7-a9dd744c969f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b79782c0-856b-487b-a77d-98432aee8ea4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c18e9699-0126-45b3-9ed7-a9dd744c969f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4179, + "label": { + "@none": [ + "71v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b79782c0-856b-487b-a77d-98432aee8ea4/", + "type": "ImageService1" + } + ], + "width": 2720, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b79782c0-856b-487b-a77d-98432aee8ea4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19c6bdd2-88fc-472e-8b8b-4a32853bbfce" + } + ] + }, + { + "height": 4523, + "label": { + "@none": [ + "72r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7c7fcec4-12dd-4db5-b4c8-6f6f7b7458f6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/df439a8e-e1b5-4a70-abc3-978db64c99f5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7c7fcec4-12dd-4db5-b4c8-6f6f7b7458f6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4523, + "label": { + "@none": [ + "72r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/df439a8e-e1b5-4a70-abc3-978db64c99f5/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/df439a8e-e1b5-4a70-abc3-978db64c99f5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86c68f2d-f787-493e-9328-56a3dc509f72" + } + ] + }, + { + "height": 4168, + "label": { + "@none": [ + "72v" + ] + }, + "width": 2754, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b37b640e-e4f3-4755-ade1-9b04c535517e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e084501d-81f8-41ff-ba40-1a1afc99ba08", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b37b640e-e4f3-4755-ade1-9b04c535517e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4168, + "label": { + "@none": [ + "72v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e084501d-81f8-41ff-ba40-1a1afc99ba08/", + "type": "ImageService1" + } + ], + "width": 2754, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e084501d-81f8-41ff-ba40-1a1afc99ba08/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8fef3a9-dc92-47e3-b3e0-b3042a2de786" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "73r" + ] + }, + "width": 2987, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5608d03b-4d1f-4d04-a4f4-32b426363a62", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8be61ea0-3c96-4fda-a430-65b0ae2dc41d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5608d03b-4d1f-4d04-a4f4-32b426363a62", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "73r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8be61ea0-3c96-4fda-a430-65b0ae2dc41d/", + "type": "ImageService1" + } + ], + "width": 2987, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8be61ea0-3c96-4fda-a430-65b0ae2dc41d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11400bce-158a-4ec4-9260-74238ca49885" + } + ] + }, + { + "height": 4174, + "label": { + "@none": [ + "73v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3dfd306d-022a-44f5-ad37-5184839f4a26", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/843b707f-19b2-4181-8175-b572290f2b6a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3dfd306d-022a-44f5-ad37-5184839f4a26", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4174, + "label": { + "@none": [ + "73v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/843b707f-19b2-4181-8175-b572290f2b6a/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/843b707f-19b2-4181-8175-b572290f2b6a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6db87638-9cfd-4d77-b38f-3655669eaa7e" + } + ] + }, + { + "height": 4509, + "label": { + "@none": [ + "74r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8ecf16dd-0612-4ae9-8362-ead545865f34", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4307adb1-0750-4fb2-94bd-62f8b43553c9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8ecf16dd-0612-4ae9-8362-ead545865f34", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4509, + "label": { + "@none": [ + "74r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4307adb1-0750-4fb2-94bd-62f8b43553c9/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4307adb1-0750-4fb2-94bd-62f8b43553c9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/119593af-6638-4af8-ae01-6d5c96a59972" + } + ] + }, + { + "height": 4198, + "label": { + "@none": [ + "74v" + ] + }, + "width": 2721, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/70ea870e-c549-4b2a-9244-e1e8d40723e9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a0fb8b8d-3f21-4227-902d-06d197dc9b29", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/70ea870e-c549-4b2a-9244-e1e8d40723e9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4198, + "label": { + "@none": [ + "74v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a0fb8b8d-3f21-4227-902d-06d197dc9b29/", + "type": "ImageService1" + } + ], + "width": 2721, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a0fb8b8d-3f21-4227-902d-06d197dc9b29/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44a8ab7f-d292-4c8e-98f2-f6902b22ee1c" + } + ] + }, + { + "height": 4490, + "label": { + "@none": [ + "75r" + ] + }, + "width": 2978, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e9286ff8-0540-4073-9ecd-674ea4b7df0d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a04a4c77-fd64-419a-b99d-72b3918755a6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e9286ff8-0540-4073-9ecd-674ea4b7df0d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4490, + "label": { + "@none": [ + "75r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a04a4c77-fd64-419a-b99d-72b3918755a6/", + "type": "ImageService1" + } + ], + "width": 2978, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a04a4c77-fd64-419a-b99d-72b3918755a6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/501f3815-245a-49ec-a047-99cf876cb474" + } + ] + }, + { + "height": 4164, + "label": { + "@none": [ + "75v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ae96fa64-c3d0-4a9d-b278-119331fe4ed6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/516d8122-6575-4264-b6a0-dcce71736129", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ae96fa64-c3d0-4a9d-b278-119331fe4ed6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4164, + "label": { + "@none": [ + "75v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/516d8122-6575-4264-b6a0-dcce71736129/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/516d8122-6575-4264-b6a0-dcce71736129/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/db95888b-7788-416e-9e46-8c1347d7d448" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "76r" + ] + }, + "width": 2941, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4816f984-4824-44bc-85b3-f581c7f53a8a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f6d42888-3b4f-4a8b-81dc-2b66133bd121", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4816f984-4824-44bc-85b3-f581c7f53a8a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "76r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f6d42888-3b4f-4a8b-81dc-2b66133bd121/", + "type": "ImageService1" + } + ], + "width": 2941, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f6d42888-3b4f-4a8b-81dc-2b66133bd121/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7706231-1fb0-46c6-96c3-ff27a6969a93" + } + ] + }, + { + "height": 4231, + "label": { + "@none": [ + "76v" + ] + }, + "width": 2773, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b4e2cc11-0029-4038-945b-82c74b59301a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/be8e92f4-3372-4c91-8bca-c27dd19a7957", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b4e2cc11-0029-4038-945b-82c74b59301a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4231, + "label": { + "@none": [ + "76v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/be8e92f4-3372-4c91-8bca-c27dd19a7957/", + "type": "ImageService1" + } + ], + "width": 2773, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/be8e92f4-3372-4c91-8bca-c27dd19a7957/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aecaca66-0f90-4431-a22c-30517a8392c2" + } + ] + }, + { + "height": 4470, + "label": { + "@none": [ + "77r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/201bef0b-3792-4520-839a-f152d13ca1db", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5f367b91-01c7-47e8-8f69-ef1bd7a88874", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/201bef0b-3792-4520-839a-f152d13ca1db", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4470, + "label": { + "@none": [ + "77r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5f367b91-01c7-47e8-8f69-ef1bd7a88874/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5f367b91-01c7-47e8-8f69-ef1bd7a88874/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65c28f93-e000-4fdd-9d9e-13b374db27dc" + } + ] + }, + { + "height": 4184, + "label": { + "@none": [ + "77v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3d6b2fce-023d-48c9-b8cf-5836d04e1b8b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/38c4e321-80e2-4c44-bbec-5e91a7063b14", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3d6b2fce-023d-48c9-b8cf-5836d04e1b8b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4184, + "label": { + "@none": [ + "77v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/38c4e321-80e2-4c44-bbec-5e91a7063b14/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/38c4e321-80e2-4c44-bbec-5e91a7063b14/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b959aef5-8891-4081-a75f-a74988757302" + } + ] + }, + { + "height": 4522, + "label": { + "@none": [ + "78r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/377f0962-d264-4fb4-8c83-933b069d0df6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/33c0a7eb-8056-4a7c-a43e-ccdd459e1680", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/377f0962-d264-4fb4-8c83-933b069d0df6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4522, + "label": { + "@none": [ + "78r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/33c0a7eb-8056-4a7c-a43e-ccdd459e1680/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/33c0a7eb-8056-4a7c-a43e-ccdd459e1680/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e21f8d70-4bda-45c4-8e60-9d94aefb2667" + } + ] + }, + { + "height": 4189, + "label": { + "@none": [ + "78v" + ] + }, + "width": 2792, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f2e5ba6c-596c-4f31-a19d-7c5bcce76f97", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4016192c-b74d-4590-a154-6a04c38dfdd9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f2e5ba6c-596c-4f31-a19d-7c5bcce76f97", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4189, + "label": { + "@none": [ + "78v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4016192c-b74d-4590-a154-6a04c38dfdd9/", + "type": "ImageService1" + } + ], + "width": 2792, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4016192c-b74d-4590-a154-6a04c38dfdd9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0f22edb-7b3a-42ff-b992-a0bc0376e056" + } + ] + }, + { + "height": 4480, + "label": { + "@none": [ + "79r" + ] + }, + "width": 3027, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/880f801e-d16b-4b8e-9b42-14c79007fc20", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2bfb29a5-7731-4db7-9049-b9e73be3a36b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/880f801e-d16b-4b8e-9b42-14c79007fc20", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4480, + "label": { + "@none": [ + "79r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2bfb29a5-7731-4db7-9049-b9e73be3a36b/", + "type": "ImageService1" + } + ], + "width": 3027, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2bfb29a5-7731-4db7-9049-b9e73be3a36b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18650734-900a-4df8-bc7d-3952c448d123" + } + ] + }, + { + "height": 4175, + "label": { + "@none": [ + "79v" + ] + }, + "width": 2777, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/95ee93a5-6668-41d3-ba23-d866ea10c675", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8d91de4b-7359-4123-a38c-a9db93e80c28", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/95ee93a5-6668-41d3-ba23-d866ea10c675", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4175, + "label": { + "@none": [ + "79v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8d91de4b-7359-4123-a38c-a9db93e80c28/", + "type": "ImageService1" + } + ], + "width": 2777, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8d91de4b-7359-4123-a38c-a9db93e80c28/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/036c561d-d815-4783-bbaa-efaccc5b58d0" + } + ] + }, + { + "height": 4519, + "label": { + "@none": [ + "80r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c43cfa1f-ebdf-4078-afbb-3c891bcf0995", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ac4f7557-456e-4aa0-a4bf-0669f399ffa7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c43cfa1f-ebdf-4078-afbb-3c891bcf0995", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4519, + "label": { + "@none": [ + "80r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ac4f7557-456e-4aa0-a4bf-0669f399ffa7/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ac4f7557-456e-4aa0-a4bf-0669f399ffa7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0bd2a4d8-1a2b-492f-9027-36b0a2b02e35" + } + ] + }, + { + "height": 4190, + "label": { + "@none": [ + "80v" + ] + }, + "width": 2736, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2ed1b1bb-cc6b-4506-bc29-1d07a8ebcdca", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f2120118-c633-4661-99ab-93ca74e0d0c9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2ed1b1bb-cc6b-4506-bc29-1d07a8ebcdca", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4190, + "label": { + "@none": [ + "80v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f2120118-c633-4661-99ab-93ca74e0d0c9/", + "type": "ImageService1" + } + ], + "width": 2736, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f2120118-c633-4661-99ab-93ca74e0d0c9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a28f744-3f17-4417-befb-1b6cb9dede87" + } + ] + }, + { + "height": 4442, + "label": { + "@none": [ + "81r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b4659a90-b6ff-4a55-a44a-f5dcfdbf2882", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9a3ee0b5-3f9d-4f8b-bf44-36a02ca1fade", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b4659a90-b6ff-4a55-a44a-f5dcfdbf2882", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4442, + "label": { + "@none": [ + "81r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9a3ee0b5-3f9d-4f8b-bf44-36a02ca1fade/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9a3ee0b5-3f9d-4f8b-bf44-36a02ca1fade/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4519aa26-a405-4a7a-bd28-8cc65faf205b" + } + ] + }, + { + "height": 4199, + "label": { + "@none": [ + "81v" + ] + }, + "width": 2759, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/86513669-f032-4d8d-b0a8-753f583d8552", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dd886e45-3666-4903-812f-e1c54e1725a9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/86513669-f032-4d8d-b0a8-753f583d8552", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4199, + "label": { + "@none": [ + "81v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dd886e45-3666-4903-812f-e1c54e1725a9/", + "type": "ImageService1" + } + ], + "width": 2759, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dd886e45-3666-4903-812f-e1c54e1725a9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a6c4efb3-ad95-4a6b-88f3-bf75bedebb03" + } + ] + }, + { + "height": 4466, + "label": { + "@none": [ + "82r" + ] + }, + "width": 2979, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7b3e58fe-8446-4c60-b4ee-ad3aab1dd5c3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7cb16b01-862c-46b3-af04-b920e543a67f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7b3e58fe-8446-4c60-b4ee-ad3aab1dd5c3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4466, + "label": { + "@none": [ + "82r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7cb16b01-862c-46b3-af04-b920e543a67f/", + "type": "ImageService1" + } + ], + "width": 2979, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7cb16b01-862c-46b3-af04-b920e543a67f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7f27dcd5-b265-4f48-b575-51098dc7ae09" + } + ] + }, + { + "height": 4175, + "label": { + "@none": [ + "82v" + ] + }, + "width": 2744, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2d45662c-c524-436f-a598-688923d7f7ad", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a80c9f13-9d99-498f-a2b8-a79198b429d6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2d45662c-c524-436f-a598-688923d7f7ad", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4175, + "label": { + "@none": [ + "82v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a80c9f13-9d99-498f-a2b8-a79198b429d6/", + "type": "ImageService1" + } + ], + "width": 2744, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a80c9f13-9d99-498f-a2b8-a79198b429d6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe3b1409-42a1-4819-a944-876ac2725578" + } + ] + }, + { + "height": 4486, + "label": { + "@none": [ + "83r" + ] + }, + "width": 2926, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e65d7bfd-74c3-4536-8578-468583f7a979", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/83ceabe4-d4d1-4f06-8927-f21e41ba0102", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e65d7bfd-74c3-4536-8578-468583f7a979", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4486, + "label": { + "@none": [ + "83r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/83ceabe4-d4d1-4f06-8927-f21e41ba0102/", + "type": "ImageService1" + } + ], + "width": 2926, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/83ceabe4-d4d1-4f06-8927-f21e41ba0102/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4311d725-58d0-455c-b701-33c1f0cec4b4" + } + ] + }, + { + "height": 4165, + "label": { + "@none": [ + "83v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/daef16eb-b70a-4e64-bb7c-4aeecd67a29b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7d4e941f-79ce-40ed-afa7-b49f6ca8298d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/daef16eb-b70a-4e64-bb7c-4aeecd67a29b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4165, + "label": { + "@none": [ + "83v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7d4e941f-79ce-40ed-afa7-b49f6ca8298d/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7d4e941f-79ce-40ed-afa7-b49f6ca8298d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43b27823-1a94-4f7c-a418-b3d203ea739e" + } + ] + }, + { + "height": 4518, + "label": { + "@none": [ + "84r" + ] + }, + "width": 2949, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3ed0daf5-d48a-4d47-97c2-9fda0bf8f65f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/51eb90ac-5697-4098-8f4d-7bfcbf15c409", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3ed0daf5-d48a-4d47-97c2-9fda0bf8f65f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4518, + "label": { + "@none": [ + "84r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/51eb90ac-5697-4098-8f4d-7bfcbf15c409/", + "type": "ImageService1" + } + ], + "width": 2949, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/51eb90ac-5697-4098-8f4d-7bfcbf15c409/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44cadfd6-5614-44b6-b27b-fddef1af19f3" + } + ] + }, + { + "height": 4189, + "label": { + "@none": [ + "84v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c5e14b37-5b59-4846-a4fe-51772c0693f5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bbac0ba4-1cc3-4cb8-946f-d2d793c26ce1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c5e14b37-5b59-4846-a4fe-51772c0693f5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4189, + "label": { + "@none": [ + "84v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bbac0ba4-1cc3-4cb8-946f-d2d793c26ce1/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bbac0ba4-1cc3-4cb8-946f-d2d793c26ce1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/714ff81e-446d-4f48-b3ea-52fadda84186" + } + ] + }, + { + "height": 4500, + "label": { + "@none": [ + "85r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/dca3638a-c739-416c-9810-3d1c9720bd16", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a7927e19-9f71-4895-969d-610a867587ce", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/dca3638a-c739-416c-9810-3d1c9720bd16", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4500, + "label": { + "@none": [ + "85r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a7927e19-9f71-4895-969d-610a867587ce/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a7927e19-9f71-4895-969d-610a867587ce/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bf17194-98c7-4d4e-aae4-738969267aaa" + } + ] + }, + { + "height": 4212, + "label": { + "@none": [ + "85v" + ] + }, + "width": 2772, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d4733c77-eaed-44bb-8f80-941880f039b4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3bfb2bc2-61df-4187-b984-51b97c99e31b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d4733c77-eaed-44bb-8f80-941880f039b4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4212, + "label": { + "@none": [ + "85v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3bfb2bc2-61df-4187-b984-51b97c99e31b/", + "type": "ImageService1" + } + ], + "width": 2772, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3bfb2bc2-61df-4187-b984-51b97c99e31b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/999a2f48-45c6-4e65-9b2f-e5b291910306" + } + ] + }, + { + "height": 4471, + "label": { + "@none": [ + "86r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4a8880ed-cb9f-4cd3-9372-c3eed99fac3c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/64fdf313-194d-4018-81f7-e3d32bf22c4a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4a8880ed-cb9f-4cd3-9372-c3eed99fac3c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4471, + "label": { + "@none": [ + "86r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/64fdf313-194d-4018-81f7-e3d32bf22c4a/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/64fdf313-194d-4018-81f7-e3d32bf22c4a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/006a385f-49fd-416d-bace-60748c8d05ab" + } + ] + }, + { + "height": 4174, + "label": { + "@none": [ + "86v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4c0823e6-5102-4478-84c7-022f0174bd0e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0fa2b8fe-9f3c-4cdc-a31f-1af2e4ddaba7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4c0823e6-5102-4478-84c7-022f0174bd0e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4174, + "label": { + "@none": [ + "86v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0fa2b8fe-9f3c-4cdc-a31f-1af2e4ddaba7/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0fa2b8fe-9f3c-4cdc-a31f-1af2e4ddaba7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae04d3da-a65c-4413-8570-58500c1d7045" + } + ] + }, + { + "height": 4495, + "label": { + "@none": [ + "87r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6e20982e-25d7-4c48-8eac-d4fed18dd23f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/98083dc5-f636-428a-8678-76926019bcd9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6e20982e-25d7-4c48-8eac-d4fed18dd23f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4495, + "label": { + "@none": [ + "87r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/98083dc5-f636-428a-8678-76926019bcd9/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/98083dc5-f636-428a-8678-76926019bcd9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b2c50d2-1f78-4e48-b928-8c29804b8a99" + } + ] + }, + { + "height": 4132, + "label": { + "@none": [ + "87v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/92cad896-ac24-48ea-926d-ce4863870c42", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fb1a837e-08ab-42a9-9f5f-f61ce1542a05", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/92cad896-ac24-48ea-926d-ce4863870c42", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4132, + "label": { + "@none": [ + "87v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fb1a837e-08ab-42a9-9f5f-f61ce1542a05/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fb1a837e-08ab-42a9-9f5f-f61ce1542a05/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fde60c24-9db0-44e9-95cb-6b953391347d" + } + ] + }, + { + "height": 4490, + "label": { + "@none": [ + "88r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bf5c39c5-d22f-4f6d-963c-4fee383836a3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/eef8d148-ac46-4276-aa72-b27a49882390", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bf5c39c5-d22f-4f6d-963c-4fee383836a3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4490, + "label": { + "@none": [ + "88r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/eef8d148-ac46-4276-aa72-b27a49882390/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/eef8d148-ac46-4276-aa72-b27a49882390/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f620b9dd-80d3-49af-9551-cbeb66ab1d7d" + } + ] + }, + { + "height": 4189, + "label": { + "@none": [ + "88v" + ] + }, + "width": 2778, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c5eb37dc-8446-4cee-a313-88d65f28912a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ef2ba34f-9d2b-46f0-9c07-822b809c97f8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c5eb37dc-8446-4cee-a313-88d65f28912a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4189, + "label": { + "@none": [ + "88v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ef2ba34f-9d2b-46f0-9c07-822b809c97f8/", + "type": "ImageService1" + } + ], + "width": 2778, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ef2ba34f-9d2b-46f0-9c07-822b809c97f8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9433619-9a5b-4f2a-aeb1-b5aaeea1798c" + } + ] + }, + { + "height": 4457, + "label": { + "@none": [ + "89r" + ] + }, + "width": 3043, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/adc161da-dace-404f-a129-5d02ae6ef831", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0f3eacf6-3a22-46e2-9d77-af753ee3f097", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/adc161da-dace-404f-a129-5d02ae6ef831", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4457, + "label": { + "@none": [ + "89r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0f3eacf6-3a22-46e2-9d77-af753ee3f097/", + "type": "ImageService1" + } + ], + "width": 3043, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0f3eacf6-3a22-46e2-9d77-af753ee3f097/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/680d24d4-b510-4567-a980-60f95389f529" + } + ] + }, + { + "height": 4237, + "label": { + "@none": [ + "89v" + ] + }, + "width": 2777, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/05ce306c-cb99-4cea-bff2-f7c8ae07d052", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0b898979-8005-4707-8d62-c308308d1b6c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/05ce306c-cb99-4cea-bff2-f7c8ae07d052", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4237, + "label": { + "@none": [ + "89v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0b898979-8005-4707-8d62-c308308d1b6c/", + "type": "ImageService1" + } + ], + "width": 2777, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0b898979-8005-4707-8d62-c308308d1b6c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f51d8fa-5a61-45e5-a00f-269768dd26ed" + } + ] + }, + { + "height": 4514, + "label": { + "@none": [ + "90r" + ] + }, + "width": 2931, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/70c7143f-3454-455e-ab39-c1e6762b294c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d8bf00a3-ee8a-409f-8a74-0651c250f41a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/70c7143f-3454-455e-ab39-c1e6762b294c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4514, + "label": { + "@none": [ + "90r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d8bf00a3-ee8a-409f-8a74-0651c250f41a/", + "type": "ImageService1" + } + ], + "width": 2931, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d8bf00a3-ee8a-409f-8a74-0651c250f41a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50431705-c93d-4e96-9dc7-cc41944e6b7c" + } + ] + }, + { + "height": 4208, + "label": { + "@none": [ + "90v" + ] + }, + "width": 2691, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/54e1c21a-79ef-4fbb-8758-7e33a301b786", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bb5a5c85-b3ec-40a9-9c5e-2a00ad37cd9f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/54e1c21a-79ef-4fbb-8758-7e33a301b786", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4208, + "label": { + "@none": [ + "90v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bb5a5c85-b3ec-40a9-9c5e-2a00ad37cd9f/", + "type": "ImageService1" + } + ], + "width": 2691, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bb5a5c85-b3ec-40a9-9c5e-2a00ad37cd9f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5aef60eb-287f-4087-8dba-140788ff80c4" + } + ] + }, + { + "height": 4519, + "label": { + "@none": [ + "91r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4ee85d9b-8d26-4518-bb9c-9c11441d3a85", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/21b4226e-de23-432e-ba45-530cdf40ffbb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4ee85d9b-8d26-4518-bb9c-9c11441d3a85", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4519, + "label": { + "@none": [ + "91r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/21b4226e-de23-432e-ba45-530cdf40ffbb/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/21b4226e-de23-432e-ba45-530cdf40ffbb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f20d6c11-dc54-42e3-b5c6-f283472db2b5" + } + ] + }, + { + "height": 4193, + "label": { + "@none": [ + "91v" + ] + }, + "width": 2773, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9f4e682e-8589-4aad-a4a8-4a29e89afb8c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/971ff6f2-7769-4c29-81e0-7e620b28cd67", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9f4e682e-8589-4aad-a4a8-4a29e89afb8c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4193, + "label": { + "@none": [ + "91v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/971ff6f2-7769-4c29-81e0-7e620b28cd67/", + "type": "ImageService1" + } + ], + "width": 2773, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/971ff6f2-7769-4c29-81e0-7e620b28cd67/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2be764a-bbe4-46e5-ae15-a017a7edb2dc" + } + ] + }, + { + "height": 4504, + "label": { + "@none": [ + "92r" + ] + }, + "width": 2983, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c895538a-503a-4f1f-96ea-a908142c0421", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/847f1249-7208-46d2-885c-0960348fef0f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c895538a-503a-4f1f-96ea-a908142c0421", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4504, + "label": { + "@none": [ + "92r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/847f1249-7208-46d2-885c-0960348fef0f/", + "type": "ImageService1" + } + ], + "width": 2983, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/847f1249-7208-46d2-885c-0960348fef0f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ade4df01-24c1-488c-ac57-ea1dd402523b" + } + ] + }, + { + "height": 4235, + "label": { + "@none": [ + "92v" + ] + }, + "width": 2768, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/60371730-4fb5-4c67-a7a6-5b9031da00ae", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d9c33c58-6ec2-4b42-90a5-73e146fd6a8c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/60371730-4fb5-4c67-a7a6-5b9031da00ae", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4235, + "label": { + "@none": [ + "92v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d9c33c58-6ec2-4b42-90a5-73e146fd6a8c/", + "type": "ImageService1" + } + ], + "width": 2768, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d9c33c58-6ec2-4b42-90a5-73e146fd6a8c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2b0a65b-d5e2-436e-8032-daf50bea9676" + } + ] + }, + { + "height": 4519, + "label": { + "@none": [ + "93r" + ] + }, + "width": 2974, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d7fba7c1-81b8-4854-af18-4119f0e2f066", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8dfcaba9-7076-4477-813b-ba7248b88a92", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d7fba7c1-81b8-4854-af18-4119f0e2f066", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4519, + "label": { + "@none": [ + "93r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8dfcaba9-7076-4477-813b-ba7248b88a92/", + "type": "ImageService1" + } + ], + "width": 2974, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8dfcaba9-7076-4477-813b-ba7248b88a92/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9aef4f81-769a-4a30-8fb1-43f573137c10" + } + ] + }, + { + "height": 4169, + "label": { + "@none": [ + "93v" + ] + }, + "width": 2768, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8ce16980-93dd-4c95-9196-058ae2a5ddfb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7f36cc79-8850-4603-93c4-bb61b3fec3eb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8ce16980-93dd-4c95-9196-058ae2a5ddfb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4169, + "label": { + "@none": [ + "93v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7f36cc79-8850-4603-93c4-bb61b3fec3eb/", + "type": "ImageService1" + } + ], + "width": 2768, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7f36cc79-8850-4603-93c4-bb61b3fec3eb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44315e44-01fe-4c3e-b5e8-a7c140d90252" + } + ] + }, + { + "height": 4514, + "label": { + "@none": [ + "94r" + ] + }, + "width": 2992, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2bb4379a-87ff-4e95-b09a-9c9b4c8642d0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1300112b-2828-4e71-ac08-c85d62dd048e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2bb4379a-87ff-4e95-b09a-9c9b4c8642d0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4514, + "label": { + "@none": [ + "94r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1300112b-2828-4e71-ac08-c85d62dd048e/", + "type": "ImageService1" + } + ], + "width": 2992, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1300112b-2828-4e71-ac08-c85d62dd048e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f98030b3-3c6e-4967-900c-a8aeff7380b7" + } + ] + }, + { + "height": 4217, + "label": { + "@none": [ + "94v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/977ff8d0-0073-4a83-a032-b5e1e8eb84b8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2babe8a4-93fa-4931-b8e8-7f9c8057be5d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/977ff8d0-0073-4a83-a032-b5e1e8eb84b8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4217, + "label": { + "@none": [ + "94v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2babe8a4-93fa-4931-b8e8-7f9c8057be5d/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2babe8a4-93fa-4931-b8e8-7f9c8057be5d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a4ce50e2-41f7-44a9-9b0b-03e5d38a3a63" + } + ] + }, + { + "height": 4517, + "label": { + "@none": [ + "95r" + ] + }, + "width": 2995, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/179adb85-03ef-44d7-be7a-023a4b154088", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/29e911a9-3a20-4618-8dcc-ce4433497f5a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/179adb85-03ef-44d7-be7a-023a4b154088", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4517, + "label": { + "@none": [ + "95r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/29e911a9-3a20-4618-8dcc-ce4433497f5a/", + "type": "ImageService1" + } + ], + "width": 2995, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/29e911a9-3a20-4618-8dcc-ce4433497f5a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ddc6c21-30cf-458b-a7eb-e02fd6a5e2fd" + } + ] + }, + { + "height": 4197, + "label": { + "@none": [ + "95v" + ] + }, + "width": 2778, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/31c9d0df-be42-48a5-9ca3-0efec9c40a9b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/628ce3c9-72e7-4b30-a994-5268a5f3cf9e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/31c9d0df-be42-48a5-9ca3-0efec9c40a9b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4197, + "label": { + "@none": [ + "95v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/628ce3c9-72e7-4b30-a994-5268a5f3cf9e/", + "type": "ImageService1" + } + ], + "width": 2778, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/628ce3c9-72e7-4b30-a994-5268a5f3cf9e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3b1e886f-c756-4e35-b8a0-25ea8daf21c6" + } + ] + }, + { + "height": 4485, + "label": { + "@none": [ + "96r" + ] + }, + "width": 2963, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/94bd1db1-7e25-4d0d-b565-1f0a6d7b3113", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/05f02d6f-6e22-410f-a140-4b380d7d9ee5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/94bd1db1-7e25-4d0d-b565-1f0a6d7b3113", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4485, + "label": { + "@none": [ + "96r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/05f02d6f-6e22-410f-a140-4b380d7d9ee5/", + "type": "ImageService1" + } + ], + "width": 2963, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/05f02d6f-6e22-410f-a140-4b380d7d9ee5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9baa97b6-f63a-4873-aac2-2081e6bb400c" + } + ] + }, + { + "height": 4221, + "label": { + "@none": [ + "96v" + ] + }, + "width": 2783, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2d16f2fa-adca-4b00-a7e3-27a64956707e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b942bd85-b80e-4861-bf2f-e18d8deb9708", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2d16f2fa-adca-4b00-a7e3-27a64956707e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4221, + "label": { + "@none": [ + "96v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b942bd85-b80e-4861-bf2f-e18d8deb9708/", + "type": "ImageService1" + } + ], + "width": 2783, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b942bd85-b80e-4861-bf2f-e18d8deb9708/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/358f5216-75ea-42d3-91c1-be60525d7351" + } + ] + }, + { + "height": 4485, + "label": { + "@none": [ + "97r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/679ed008-d675-45f0-87ed-46cecc8718f2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/08794850-cd1b-4b63-936c-b05b559ceb2e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/679ed008-d675-45f0-87ed-46cecc8718f2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4485, + "label": { + "@none": [ + "97r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/08794850-cd1b-4b63-936c-b05b559ceb2e/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/08794850-cd1b-4b63-936c-b05b559ceb2e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d557917-0e66-413a-a441-4efe87882323" + } + ] + }, + { + "height": 4245, + "label": { + "@none": [ + "97v" + ] + }, + "width": 2744, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b054047c-cfb1-4e13-a4f2-be5e9566a315", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7ffc22de-f28c-4a42-bc55-21dac84c7dcd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b054047c-cfb1-4e13-a4f2-be5e9566a315", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4245, + "label": { + "@none": [ + "97v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7ffc22de-f28c-4a42-bc55-21dac84c7dcd/", + "type": "ImageService1" + } + ], + "width": 2744, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7ffc22de-f28c-4a42-bc55-21dac84c7dcd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d0503e0d-d987-4260-ae3f-80f0ad73a956" + } + ] + }, + { + "height": 4480, + "label": { + "@none": [ + "98r" + ] + }, + "width": 2973, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0cbf6f35-6469-42a1-a240-7ee7ff6dc155", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4cf2d7a3-edf3-49b7-a405-9709918730e8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0cbf6f35-6469-42a1-a240-7ee7ff6dc155", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4480, + "label": { + "@none": [ + "98r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4cf2d7a3-edf3-49b7-a405-9709918730e8/", + "type": "ImageService1" + } + ], + "width": 2973, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4cf2d7a3-edf3-49b7-a405-9709918730e8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5a60d83-9832-4f60-94a7-c1b673eae212" + } + ] + }, + { + "height": 4216, + "label": { + "@none": [ + "98v" + ] + }, + "width": 2758, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/393bbbf1-5bce-4254-82f3-bc725a0b8c30", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f3478f43-2bf0-4020-9e82-072eef3b9b32", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/393bbbf1-5bce-4254-82f3-bc725a0b8c30", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4216, + "label": { + "@none": [ + "98v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f3478f43-2bf0-4020-9e82-072eef3b9b32/", + "type": "ImageService1" + } + ], + "width": 2758, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f3478f43-2bf0-4020-9e82-072eef3b9b32/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/489aa7b2-d64c-4c85-b9e0-9a816a2e7e4b" + } + ] + }, + { + "height": 4480, + "label": { + "@none": [ + "99r" + ] + }, + "width": 2990, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/978f01f9-6d52-400c-8687-f725425b0203", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3fba7b2e-1636-4337-9546-6ed459a465e4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/978f01f9-6d52-400c-8687-f725425b0203", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4480, + "label": { + "@none": [ + "99r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3fba7b2e-1636-4337-9546-6ed459a465e4/", + "type": "ImageService1" + } + ], + "width": 2990, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3fba7b2e-1636-4337-9546-6ed459a465e4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea5c89e1-f50f-45e9-899f-5d3831ad9b3f" + } + ] + }, + { + "height": 4190, + "label": { + "@none": [ + "99v" + ] + }, + "width": 2774, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bac01066-4929-49a2-942b-9f9973b08207", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/539a60e1-bd55-409d-ba6f-d756b5707f54", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bac01066-4929-49a2-942b-9f9973b08207", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4190, + "label": { + "@none": [ + "99v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/539a60e1-bd55-409d-ba6f-d756b5707f54/", + "type": "ImageService1" + } + ], + "width": 2774, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/539a60e1-bd55-409d-ba6f-d756b5707f54/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a5bd035-592a-471b-8013-0f9e9f12fe8c" + } + ] + }, + { + "height": 4481, + "label": { + "@none": [ + "100r" + ] + }, + "width": 2949, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2f92a53f-a126-4072-ad4e-40738597d897", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/33e7ecbb-ede7-419e-8188-5fb806ff872b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2f92a53f-a126-4072-ad4e-40738597d897", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4481, + "label": { + "@none": [ + "100r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/33e7ecbb-ede7-419e-8188-5fb806ff872b/", + "type": "ImageService1" + } + ], + "width": 2949, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/33e7ecbb-ede7-419e-8188-5fb806ff872b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3743acbe-100e-4367-a0f4-26b2bd532687" + } + ] + }, + { + "height": 4218, + "label": { + "@none": [ + "100v" + ] + }, + "width": 2760, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/66e1e3e7-5739-47a0-ac14-041312ff3363", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bedc8687-75f1-424e-859e-2c507895abb1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/66e1e3e7-5739-47a0-ac14-041312ff3363", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4218, + "label": { + "@none": [ + "100v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bedc8687-75f1-424e-859e-2c507895abb1/", + "type": "ImageService1" + } + ], + "width": 2760, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bedc8687-75f1-424e-859e-2c507895abb1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67d89dd4-dbb5-41b0-88d1-04c494b01278" + } + ] + }, + { + "height": 4523, + "label": { + "@none": [ + "101r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/008a9393-f0b5-405d-bfb0-69d1152ae18f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e49b6737-2bb3-4bf2-82e1-0106853cb644", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/008a9393-f0b5-405d-bfb0-69d1152ae18f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4523, + "label": { + "@none": [ + "101r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e49b6737-2bb3-4bf2-82e1-0106853cb644/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e49b6737-2bb3-4bf2-82e1-0106853cb644/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/709a503a-506e-4109-9b58-9ea2b2063ed1" + } + ] + }, + { + "height": 4213, + "label": { + "@none": [ + "101v" + ] + }, + "width": 2793, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ad4f8dfc-28be-482b-8c2e-e8d0eece02ca", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c1e34e42-2a78-45f4-b542-d73069fc542c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ad4f8dfc-28be-482b-8c2e-e8d0eece02ca", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4213, + "label": { + "@none": [ + "101v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c1e34e42-2a78-45f4-b542-d73069fc542c/", + "type": "ImageService1" + } + ], + "width": 2793, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c1e34e42-2a78-45f4-b542-d73069fc542c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3fd68767-e887-496b-a373-9c26b266d029" + } + ] + }, + { + "height": 4499, + "label": { + "@none": [ + "102r" + ] + }, + "width": 2973, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c1ea1b67-8719-404f-8bca-242ece776c8b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4fa54b02-3229-4ee5-9d69-ebe6c371196c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c1ea1b67-8719-404f-8bca-242ece776c8b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4499, + "label": { + "@none": [ + "102r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4fa54b02-3229-4ee5-9d69-ebe6c371196c/", + "type": "ImageService1" + } + ], + "width": 2973, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4fa54b02-3229-4ee5-9d69-ebe6c371196c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/db53c0f6-dc9b-4b8b-954d-5568b50a30a7" + } + ] + }, + { + "height": 4230, + "label": { + "@none": [ + "102v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/637ddcad-28a5-490f-be8d-ce335def7e9b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/53c6920c-966b-48ef-8fc1-c176f0e3b03d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/637ddcad-28a5-490f-be8d-ce335def7e9b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4230, + "label": { + "@none": [ + "102v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/53c6920c-966b-48ef-8fc1-c176f0e3b03d/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/53c6920c-966b-48ef-8fc1-c176f0e3b03d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aad33329-6917-46e4-a93c-cf5cdd422875" + } + ] + }, + { + "height": 4495, + "label": { + "@none": [ + "103r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cacc3b7b-b45d-4eb6-8061-7f981c5a0494", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b6c185f1-9742-4b19-90cd-830cb279973f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cacc3b7b-b45d-4eb6-8061-7f981c5a0494", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4495, + "label": { + "@none": [ + "103r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b6c185f1-9742-4b19-90cd-830cb279973f/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b6c185f1-9742-4b19-90cd-830cb279973f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4218b40-c69d-44d5-aedc-95fb3ea671e2" + } + ] + }, + { + "height": 4231, + "label": { + "@none": [ + "103v" + ] + }, + "width": 2811, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c49d8d51-5feb-4531-a586-9eeaf8b5db4c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/eeb7759d-4734-4a83-925f-1159106a41b5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c49d8d51-5feb-4531-a586-9eeaf8b5db4c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4231, + "label": { + "@none": [ + "103v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/eeb7759d-4734-4a83-925f-1159106a41b5/", + "type": "ImageService1" + } + ], + "width": 2811, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/eeb7759d-4734-4a83-925f-1159106a41b5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d526d24-2d41-45df-a63a-fcedfab9f88c" + } + ] + }, + { + "height": 4474, + "label": { + "@none": [ + "104r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/fa20d579-1821-4bf3-9f1a-26e2406d482f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e94c5821-08d2-4f1b-80d6-02813551abaf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/fa20d579-1821-4bf3-9f1a-26e2406d482f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4474, + "label": { + "@none": [ + "104r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e94c5821-08d2-4f1b-80d6-02813551abaf/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e94c5821-08d2-4f1b-80d6-02813551abaf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f41dc0b-9f01-4763-8f21-80ca641e1c19" + } + ] + }, + { + "height": 4226, + "label": { + "@none": [ + "104v" + ] + }, + "width": 2787, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/37aa02fd-41da-49d1-83b7-da8ecaefa9a0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8cdab2be-0bce-4380-8077-c4f63daedc05", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/37aa02fd-41da-49d1-83b7-da8ecaefa9a0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4226, + "label": { + "@none": [ + "104v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8cdab2be-0bce-4380-8077-c4f63daedc05/", + "type": "ImageService1" + } + ], + "width": 2787, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8cdab2be-0bce-4380-8077-c4f63daedc05/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cae17995-2764-4cc8-b0fe-2bb5002604bc" + } + ] + }, + { + "height": 4495, + "label": { + "@none": [ + "105r" + ] + }, + "width": 2979, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1e2d1754-e1fe-40fd-9b7e-d1ac5fbf312c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c08e43a7-a2a2-467d-9a47-4d1f5bb1f4f6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1e2d1754-e1fe-40fd-9b7e-d1ac5fbf312c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4495, + "label": { + "@none": [ + "105r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c08e43a7-a2a2-467d-9a47-4d1f5bb1f4f6/", + "type": "ImageService1" + } + ], + "width": 2979, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c08e43a7-a2a2-467d-9a47-4d1f5bb1f4f6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df40ecfb-4b89-4c6b-a7ef-7e6efdad4f1c" + } + ] + }, + { + "height": 4226, + "label": { + "@none": [ + "105v" + ] + }, + "width": 2815, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/39737150-ba88-44b8-bad3-769ab5e868ef", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5ec6ea81-3052-405c-ac1c-bffc9d565c48", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/39737150-ba88-44b8-bad3-769ab5e868ef", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4226, + "label": { + "@none": [ + "105v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5ec6ea81-3052-405c-ac1c-bffc9d565c48/", + "type": "ImageService1" + } + ], + "width": 2815, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5ec6ea81-3052-405c-ac1c-bffc9d565c48/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/975cd79f-818b-4279-ab18-0811bc593472" + } + ] + }, + { + "height": 4462, + "label": { + "@none": [ + "106r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5cb7e5b0-84d2-4a4b-87b2-14b5fc88d171", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bf64118f-0388-49c1-9a35-69500cf224c6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5cb7e5b0-84d2-4a4b-87b2-14b5fc88d171", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4462, + "label": { + "@none": [ + "106r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bf64118f-0388-49c1-9a35-69500cf224c6/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bf64118f-0388-49c1-9a35-69500cf224c6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32336f32-2cfc-4fae-a236-0568fae2b999" + } + ] + }, + { + "height": 4264, + "label": { + "@none": [ + "106v" + ] + }, + "width": 2759, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1433f1f0-c733-4bc7-8f8f-60619020c814", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5dabcab3-151f-41c3-9f11-429efb7de86e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1433f1f0-c733-4bc7-8f8f-60619020c814", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4264, + "label": { + "@none": [ + "106v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5dabcab3-151f-41c3-9f11-429efb7de86e/", + "type": "ImageService1" + } + ], + "width": 2759, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5dabcab3-151f-41c3-9f11-429efb7de86e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2d3dc7e-46f7-4999-b295-d7c558b765a7" + } + ] + }, + { + "height": 4485, + "label": { + "@none": [ + "107r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/42e6581a-380f-46a8-ad20-481000bb01d1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/01e4cbc3-aab4-4622-974c-14b3d3c64bf0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/42e6581a-380f-46a8-ad20-481000bb01d1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4485, + "label": { + "@none": [ + "107r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/01e4cbc3-aab4-4622-974c-14b3d3c64bf0/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/01e4cbc3-aab4-4622-974c-14b3d3c64bf0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/849cf1fe-864e-4a82-ac28-3e409f0ee95d" + } + ] + }, + { + "height": 4231, + "label": { + "@none": [ + "107v" + ] + }, + "width": 2759, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3eb0127d-0351-4052-8957-04ffa1fc6c41", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/635b16c4-75a3-49c6-a7fa-d9b865a12c33", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3eb0127d-0351-4052-8957-04ffa1fc6c41", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4231, + "label": { + "@none": [ + "107v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/635b16c4-75a3-49c6-a7fa-d9b865a12c33/", + "type": "ImageService1" + } + ], + "width": 2759, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/635b16c4-75a3-49c6-a7fa-d9b865a12c33/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/526efa42-a1b3-42ea-a6b1-29f2147da4f8" + } + ] + }, + { + "height": 4513, + "label": { + "@none": [ + "108r" + ] + }, + "width": 2897, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a12cfe56-0aaf-4ad5-8f9e-9ae5ba98c42b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/583d28ab-b4e1-4061-b150-f7098862f925", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a12cfe56-0aaf-4ad5-8f9e-9ae5ba98c42b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4513, + "label": { + "@none": [ + "108r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/583d28ab-b4e1-4061-b150-f7098862f925/", + "type": "ImageService1" + } + ], + "width": 2897, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/583d28ab-b4e1-4061-b150-f7098862f925/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bb519ae-6aca-4972-b148-432f7c798992" + } + ] + }, + { + "height": 4255, + "label": { + "@none": [ + "108v" + ] + }, + "width": 2730, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9bbbea9e-e1ea-40a7-a4bd-9d4ee63f615f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9522684c-9ca2-4ed1-8be2-4f1cf798e90b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9bbbea9e-e1ea-40a7-a4bd-9d4ee63f615f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4255, + "label": { + "@none": [ + "108v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9522684c-9ca2-4ed1-8be2-4f1cf798e90b/", + "type": "ImageService1" + } + ], + "width": 2730, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9522684c-9ca2-4ed1-8be2-4f1cf798e90b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd835675-18f3-4451-a523-086ea4fadd61" + } + ] + }, + { + "height": 4480, + "label": { + "@none": [ + "109r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1f46a33c-1218-409d-8c71-5629e00970de", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/27febc30-23f6-434c-b5a7-d50de98b4b9a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1f46a33c-1218-409d-8c71-5629e00970de", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4480, + "label": { + "@none": [ + "109r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/27febc30-23f6-434c-b5a7-d50de98b4b9a/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/27febc30-23f6-434c-b5a7-d50de98b4b9a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f0b48945-e35b-4990-b064-fd87fce431b0" + } + ] + }, + { + "height": 4221, + "label": { + "@none": [ + "109v" + ] + }, + "width": 2763, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c25beaa2-a84b-4f61-bcf8-d5ff6b5b433f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7218a86f-bf10-4404-bdd8-fffd4b1834c8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c25beaa2-a84b-4f61-bcf8-d5ff6b5b433f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4221, + "label": { + "@none": [ + "109v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7218a86f-bf10-4404-bdd8-fffd4b1834c8/", + "type": "ImageService1" + } + ], + "width": 2763, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7218a86f-bf10-4404-bdd8-fffd4b1834c8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/751314eb-f9b8-421c-bdf4-239f946a6008" + } + ] + }, + { + "height": 4461, + "label": { + "@none": [ + "110r" + ] + }, + "width": 2970, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/81d67184-d81b-4ee7-a3da-09455b221407", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/50ce1db9-6e94-4a31-a47e-5cb971eb93d1", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/81d67184-d81b-4ee7-a3da-09455b221407", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4461, + "label": { + "@none": [ + "110r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/50ce1db9-6e94-4a31-a47e-5cb971eb93d1/", + "type": "ImageService1" + } + ], + "width": 2970, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/50ce1db9-6e94-4a31-a47e-5cb971eb93d1/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e6cee32c-8063-4f34-9b3b-586fe5686081" + } + ] + }, + { + "height": 4245, + "label": { + "@none": [ + "110v" + ] + }, + "width": 2784, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7c5cba64-5013-4e5a-98bc-8afe91ade02a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a7f7e80d-bac9-4cfc-8f03-e7de25023183", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7c5cba64-5013-4e5a-98bc-8afe91ade02a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4245, + "label": { + "@none": [ + "110v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a7f7e80d-bac9-4cfc-8f03-e7de25023183/", + "type": "ImageService1" + } + ], + "width": 2784, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a7f7e80d-bac9-4cfc-8f03-e7de25023183/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03756cdc-3a4d-4057-9d4b-adbd6fa380e4" + } + ] + }, + { + "height": 4499, + "label": { + "@none": [ + "111r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/76f2bf6e-2b2e-437e-a109-a4365c0f8777", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d52fd80a-4839-46e7-a1c1-b8526cc52adf", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/76f2bf6e-2b2e-437e-a109-a4365c0f8777", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4499, + "label": { + "@none": [ + "111r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d52fd80a-4839-46e7-a1c1-b8526cc52adf/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d52fd80a-4839-46e7-a1c1-b8526cc52adf/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c7ce584-fe72-4a2f-a46f-f37a0e846f20" + } + ] + }, + { + "height": 4236, + "label": { + "@none": [ + "111v" + ] + }, + "width": 2768, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bf048ed9-ab1c-4fec-badd-e19538e89d7f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a8400f1f-2b97-450f-8277-d870adc79825", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bf048ed9-ab1c-4fec-badd-e19538e89d7f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4236, + "label": { + "@none": [ + "111v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a8400f1f-2b97-450f-8277-d870adc79825/", + "type": "ImageService1" + } + ], + "width": 2768, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a8400f1f-2b97-450f-8277-d870adc79825/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/71960275-109d-4d75-a40e-ef03af27cffb" + } + ] + }, + { + "height": 4437, + "label": { + "@none": [ + "112r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0485efa8-e2a6-4fd7-983f-de759b3819ff", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/51c126ad-6f91-4d8c-8ac7-4563a005f2d0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0485efa8-e2a6-4fd7-983f-de759b3819ff", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4437, + "label": { + "@none": [ + "112r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/51c126ad-6f91-4d8c-8ac7-4563a005f2d0/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/51c126ad-6f91-4d8c-8ac7-4563a005f2d0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef3a053f-0efd-4ffe-8e37-bdf95586dcd6" + } + ] + }, + { + "height": 4273, + "label": { + "@none": [ + "112v" + ] + }, + "width": 2769, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/957e8fae-ceed-4f9e-baea-44c412956c9d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a0c181db-ea19-43fa-bdd2-c86e7acaedd7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/957e8fae-ceed-4f9e-baea-44c412956c9d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4273, + "label": { + "@none": [ + "112v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a0c181db-ea19-43fa-bdd2-c86e7acaedd7/", + "type": "ImageService1" + } + ], + "width": 2769, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a0c181db-ea19-43fa-bdd2-c86e7acaedd7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ee10e69-0c04-4502-a9dd-946ac77727a9" + } + ] + }, + { + "height": 4467, + "label": { + "@none": [ + "113r" + ] + }, + "width": 2937, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4c74367f-1aa0-49eb-8dd2-296fa4ce2e76", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2c98c3b1-5a2f-4c14-a3ab-dd1a9d0c158e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4c74367f-1aa0-49eb-8dd2-296fa4ce2e76", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4467, + "label": { + "@none": [ + "113r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2c98c3b1-5a2f-4c14-a3ab-dd1a9d0c158e/", + "type": "ImageService1" + } + ], + "width": 2937, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2c98c3b1-5a2f-4c14-a3ab-dd1a9d0c158e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15ef1263-d67a-4dc1-9f98-383a51a811e6" + } + ] + }, + { + "height": 4261, + "label": { + "@none": [ + "113v" + ] + }, + "width": 2753, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9de4ea93-993d-4a59-a7b9-e59ee812c728", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f1e5ffc3-2a96-4341-a6eb-2eebbe909d87", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9de4ea93-993d-4a59-a7b9-e59ee812c728", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4261, + "label": { + "@none": [ + "113v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f1e5ffc3-2a96-4341-a6eb-2eebbe909d87/", + "type": "ImageService1" + } + ], + "width": 2753, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f1e5ffc3-2a96-4341-a6eb-2eebbe909d87/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d45c811-0b13-4dbf-9981-560e383d84ae" + } + ] + }, + { + "height": 4467, + "label": { + "@none": [ + "114r" + ] + }, + "width": 2927, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b17854ed-60b5-4dea-bd4f-3dc39bc98a63", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c14db4e1-e64d-423e-a6d8-1fef8ae43e3d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b17854ed-60b5-4dea-bd4f-3dc39bc98a63", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4467, + "label": { + "@none": [ + "114r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c14db4e1-e64d-423e-a6d8-1fef8ae43e3d/", + "type": "ImageService1" + } + ], + "width": 2927, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c14db4e1-e64d-423e-a6d8-1fef8ae43e3d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18f2c777-e105-4a2c-8671-f53dd551bfeb" + } + ] + }, + { + "height": 4288, + "label": { + "@none": [ + "114v" + ] + }, + "width": 2767, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/14f227c2-ed6e-429b-a750-c69763af9813", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/832de34a-93d8-4b61-be2e-ff02501dbd49", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/14f227c2-ed6e-429b-a750-c69763af9813", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4288, + "label": { + "@none": [ + "114v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/832de34a-93d8-4b61-be2e-ff02501dbd49/", + "type": "ImageService1" + } + ], + "width": 2767, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/832de34a-93d8-4b61-be2e-ff02501dbd49/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/914ff0cf-eb12-4332-a618-52fd97d9e02e" + } + ] + }, + { + "height": 4423, + "label": { + "@none": [ + "115r" + ] + }, + "width": 2985, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/03de3d1e-42c0-4d4d-821a-5e5f694bc811", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/55b1df75-79d1-4afa-8b12-e2923e5cf15c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/03de3d1e-42c0-4d4d-821a-5e5f694bc811", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4423, + "label": { + "@none": [ + "115r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/55b1df75-79d1-4afa-8b12-e2923e5cf15c/", + "type": "ImageService1" + } + ], + "width": 2985, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/55b1df75-79d1-4afa-8b12-e2923e5cf15c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5985cde-04fb-4874-b3c5-832514ecbc67" + } + ] + }, + { + "height": 4255, + "label": { + "@none": [ + "115v" + ] + }, + "width": 2830, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c67a7846-8c35-4280-baed-ee9b8716ec87", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f843432f-f00f-4ebd-a4b9-a8fa88f00d28", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c67a7846-8c35-4280-baed-ee9b8716ec87", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4255, + "label": { + "@none": [ + "115v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f843432f-f00f-4ebd-a4b9-a8fa88f00d28/", + "type": "ImageService1" + } + ], + "width": 2830, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f843432f-f00f-4ebd-a4b9-a8fa88f00d28/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/254483b3-3963-49b2-a575-e2e76c7a535b" + } + ] + }, + { + "height": 4495, + "label": { + "@none": [ + "116r" + ] + }, + "width": 2950, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/35d11480-f717-4383-ac3e-7b75abe230b2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/793f338d-7544-4cf6-8034-2f3f7c72b6a3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/35d11480-f717-4383-ac3e-7b75abe230b2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4495, + "label": { + "@none": [ + "116r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/793f338d-7544-4cf6-8034-2f3f7c72b6a3/", + "type": "ImageService1" + } + ], + "width": 2950, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/793f338d-7544-4cf6-8034-2f3f7c72b6a3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ef0fadb-87f7-4281-91fc-0f6ab30070f6" + } + ] + }, + { + "height": 4298, + "label": { + "@none": [ + "116v" + ] + }, + "width": 2811, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/95ddfde8-0bd4-49b5-8f39-56fd52d48d41", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/558386b0-9d7f-4ae4-b0a7-29f4210ff4fb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/95ddfde8-0bd4-49b5-8f39-56fd52d48d41", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4298, + "label": { + "@none": [ + "116v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/558386b0-9d7f-4ae4-b0a7-29f4210ff4fb/", + "type": "ImageService1" + } + ], + "width": 2811, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/558386b0-9d7f-4ae4-b0a7-29f4210ff4fb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce681bbd-0813-4a0c-b7cc-fa5cccfddbeb" + } + ] + }, + { + "height": 4471, + "label": { + "@none": [ + "117r" + ] + }, + "width": 2921, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/725d0bbd-fcd7-4976-bf59-09aefdd58a73", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/128f8b1c-5be5-4e0f-8a22-51eb2639ca55", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/725d0bbd-fcd7-4976-bf59-09aefdd58a73", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4471, + "label": { + "@none": [ + "117r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/128f8b1c-5be5-4e0f-8a22-51eb2639ca55/", + "type": "ImageService1" + } + ], + "width": 2921, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/128f8b1c-5be5-4e0f-8a22-51eb2639ca55/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc9f331b-82f2-4705-ac4e-d9d3ff09daa0" + } + ] + }, + { + "height": 4264, + "label": { + "@none": [ + "117v" + ] + }, + "width": 2821, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8a92b306-ac62-4b54-89da-ab73a752dca4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b9c7a046-292e-49f9-8d05-b3563ca88a5c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8a92b306-ac62-4b54-89da-ab73a752dca4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4264, + "label": { + "@none": [ + "117v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b9c7a046-292e-49f9-8d05-b3563ca88a5c/", + "type": "ImageService1" + } + ], + "width": 2821, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b9c7a046-292e-49f9-8d05-b3563ca88a5c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86f3e204-bb3f-4238-a747-bc631d2f7260" + } + ] + }, + { + "height": 4438, + "label": { + "@none": [ + "118r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/816dd843-ba2e-4227-aa03-a9511fbea50c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/86a96629-c02a-45a9-8e3d-0d98a955dd08", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/816dd843-ba2e-4227-aa03-a9511fbea50c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4438, + "label": { + "@none": [ + "118r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/86a96629-c02a-45a9-8e3d-0d98a955dd08/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/86a96629-c02a-45a9-8e3d-0d98a955dd08/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cde7190-bf40-45f7-8f52-4a54c712f949" + } + ] + }, + { + "height": 4269, + "label": { + "@none": [ + "118v" + ] + }, + "width": 2848, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/023e16a6-40bb-40e9-bcd9-74e4caa21ad0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3aeb0b2e-c8bf-4555-aae8-05d798772f06", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/023e16a6-40bb-40e9-bcd9-74e4caa21ad0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4269, + "label": { + "@none": [ + "118v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3aeb0b2e-c8bf-4555-aae8-05d798772f06/", + "type": "ImageService1" + } + ], + "width": 2848, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3aeb0b2e-c8bf-4555-aae8-05d798772f06/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/405ef623-442e-40cc-a259-8923f8b39a84" + } + ] + }, + { + "height": 4419, + "label": { + "@none": [ + "119r" + ] + }, + "width": 2932, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0f7154c8-a417-4afd-9c68-13b6a4a0792e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/00ab4701-4eeb-4396-9e55-b6e807b0d043", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0f7154c8-a417-4afd-9c68-13b6a4a0792e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4419, + "label": { + "@none": [ + "119r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/00ab4701-4eeb-4396-9e55-b6e807b0d043/", + "type": "ImageService1" + } + ], + "width": 2932, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/00ab4701-4eeb-4396-9e55-b6e807b0d043/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2e1c931-290d-4631-8952-c83e85354010" + } + ] + }, + { + "height": 4237, + "label": { + "@none": [ + "119v" + ] + }, + "width": 2831, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ae70763b-6c9e-4a9e-b1d1-d309acb496f2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/01c06d45-9e3b-45e5-8513-b3e6d2520f02", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ae70763b-6c9e-4a9e-b1d1-d309acb496f2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4237, + "label": { + "@none": [ + "119v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/01c06d45-9e3b-45e5-8513-b3e6d2520f02/", + "type": "ImageService1" + } + ], + "width": 2831, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/01c06d45-9e3b-45e5-8513-b3e6d2520f02/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be8895d2-ff2a-4dd2-8258-16afc835bb67" + } + ] + }, + { + "height": 4481, + "label": { + "@none": [ + "120r" + ] + }, + "width": 2921, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ec19ead8-3104-4a01-b522-7d3f719529f2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4b7e45c2-2169-4767-9d3f-2fa4c69b9f82", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ec19ead8-3104-4a01-b522-7d3f719529f2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4481, + "label": { + "@none": [ + "120r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4b7e45c2-2169-4767-9d3f-2fa4c69b9f82/", + "type": "ImageService1" + } + ], + "width": 2921, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4b7e45c2-2169-4767-9d3f-2fa4c69b9f82/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9926135-ba36-49f4-b995-1b7e45457297" + } + ] + }, + { + "height": 4253, + "label": { + "@none": [ + "120v" + ] + }, + "width": 2817, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f55123d2-1815-48af-a7ba-7724ca65891a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d5a9ce6b-5566-4015-8961-701d5b8f4d10", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f55123d2-1815-48af-a7ba-7724ca65891a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4253, + "label": { + "@none": [ + "120v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d5a9ce6b-5566-4015-8961-701d5b8f4d10/", + "type": "ImageService1" + } + ], + "width": 2817, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d5a9ce6b-5566-4015-8961-701d5b8f4d10/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d880ec3-5e43-4158-bad4-130cbbb058ab" + } + ] + }, + { + "height": 4433, + "label": { + "@none": [ + "121r" + ] + }, + "width": 2913, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8b1200f1-0bbd-4416-b580-71c2eb320a56", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9d136296-1244-4d38-a4e4-ea6de89bafe9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8b1200f1-0bbd-4416-b580-71c2eb320a56", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4433, + "label": { + "@none": [ + "121r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9d136296-1244-4d38-a4e4-ea6de89bafe9/", + "type": "ImageService1" + } + ], + "width": 2913, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9d136296-1244-4d38-a4e4-ea6de89bafe9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7c5a223-0573-435a-8cbd-dd36a31e5696" + } + ] + }, + { + "height": 4288, + "label": { + "@none": [ + "121v" + ] + }, + "width": 2862, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d0411890-0802-47d1-acd4-279e1a3da50b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/300bafd9-ed00-43e6-bcba-0b7c8e5ae9d2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d0411890-0802-47d1-acd4-279e1a3da50b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4288, + "label": { + "@none": [ + "121v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/300bafd9-ed00-43e6-bcba-0b7c8e5ae9d2/", + "type": "ImageService1" + } + ], + "width": 2862, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/300bafd9-ed00-43e6-bcba-0b7c8e5ae9d2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/545cd58d-58fe-43fa-8aea-d346e8f0c45a" + } + ] + }, + { + "height": 4428, + "label": { + "@none": [ + "122r" + ] + }, + "width": 2964, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2ceafe8b-aca3-4cb5-8ecf-bb832a02181a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fe5ce623-fd8c-466d-9fa3-875be3f9ac8b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2ceafe8b-aca3-4cb5-8ecf-bb832a02181a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4428, + "label": { + "@none": [ + "122r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fe5ce623-fd8c-466d-9fa3-875be3f9ac8b/", + "type": "ImageService1" + } + ], + "width": 2964, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fe5ce623-fd8c-466d-9fa3-875be3f9ac8b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64feebe5-898e-4da4-b375-701227829fbb" + } + ] + }, + { + "height": 4283, + "label": { + "@none": [ + "122v" + ] + }, + "width": 2837, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/dd00362c-3877-455e-95f8-91aae32cff43", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/143bb35d-a9f6-41cb-bc56-252680fa11b6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/dd00362c-3877-455e-95f8-91aae32cff43", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4283, + "label": { + "@none": [ + "122v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/143bb35d-a9f6-41cb-bc56-252680fa11b6/", + "type": "ImageService1" + } + ], + "width": 2837, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/143bb35d-a9f6-41cb-bc56-252680fa11b6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c92f871f-e44d-4f51-9cf5-767c6aabae28" + } + ] + }, + { + "height": 4465, + "label": { + "@none": [ + "123r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/992bb53b-07e2-41b5-937e-604d56783d48", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fa21072c-0a49-4cca-8d2f-2ea70c426154", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/992bb53b-07e2-41b5-937e-604d56783d48", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4465, + "label": { + "@none": [ + "123r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fa21072c-0a49-4cca-8d2f-2ea70c426154/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fa21072c-0a49-4cca-8d2f-2ea70c426154/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ea94ad2-26b8-4427-b00a-9207e680aa8a" + } + ] + }, + { + "height": 4269, + "label": { + "@none": [ + "123v" + ] + }, + "width": 2817, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bee7b128-67d4-49f0-88c0-3e8441f3b801", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0c8826d8-ac63-4d67-a7d0-46fc403497bd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bee7b128-67d4-49f0-88c0-3e8441f3b801", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4269, + "label": { + "@none": [ + "123v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0c8826d8-ac63-4d67-a7d0-46fc403497bd/", + "type": "ImageService1" + } + ], + "width": 2817, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0c8826d8-ac63-4d67-a7d0-46fc403497bd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25064775-871d-4c57-916c-cd1cea816c4c" + } + ] + }, + { + "height": 4466, + "label": { + "@none": [ + "124r" + ] + }, + "width": 2902, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/74471612-dcd4-432e-9807-9acbcdb2ad99", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9f9e3c93-f693-48c1-8d3a-44af8f321c4a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/74471612-dcd4-432e-9807-9acbcdb2ad99", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4466, + "label": { + "@none": [ + "124r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9f9e3c93-f693-48c1-8d3a-44af8f321c4a/", + "type": "ImageService1" + } + ], + "width": 2902, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9f9e3c93-f693-48c1-8d3a-44af8f321c4a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/def92b22-4fec-4d09-885b-30753250db7e" + } + ] + }, + { + "height": 4283, + "label": { + "@none": [ + "124v" + ] + }, + "width": 2799, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2f03a212-9553-4ab9-a3c2-fdc21792defc", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/eb2c4e93-be32-4cb9-b6b4-b0f7b0879ccc", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2f03a212-9553-4ab9-a3c2-fdc21792defc", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4283, + "label": { + "@none": [ + "124v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/eb2c4e93-be32-4cb9-b6b4-b0f7b0879ccc/", + "type": "ImageService1" + } + ], + "width": 2799, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/eb2c4e93-be32-4cb9-b6b4-b0f7b0879ccc/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1fb2035-d88e-419e-b30b-305197a5504c" + } + ] + }, + { + "height": 4475, + "label": { + "@none": [ + "125r" + ] + }, + "width": 2973, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5e4ca71c-e432-4e19-bf54-20e26dc7ab50", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7095779f-63ee-4f65-b856-3b22865c42db", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5e4ca71c-e432-4e19-bf54-20e26dc7ab50", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4475, + "label": { + "@none": [ + "125r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7095779f-63ee-4f65-b856-3b22865c42db/", + "type": "ImageService1" + } + ], + "width": 2973, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7095779f-63ee-4f65-b856-3b22865c42db/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7cf1d5ad-6668-49ea-b93a-bd565b4c1da4" + } + ] + }, + { + "height": 4287, + "label": { + "@none": [ + "125v" + ] + }, + "width": 2814, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b6b9aaea-142d-443f-8de6-7b1185c4f6a2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/85e8af52-058d-482d-81df-8b65df95fa04", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b6b9aaea-142d-443f-8de6-7b1185c4f6a2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4287, + "label": { + "@none": [ + "125v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/85e8af52-058d-482d-81df-8b65df95fa04/", + "type": "ImageService1" + } + ], + "width": 2814, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/85e8af52-058d-482d-81df-8b65df95fa04/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc2bbb2d-2da8-42fe-ab3d-e0df1778607e" + } + ] + }, + { + "height": 4441, + "label": { + "@none": [ + "126r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1527bbcf-b1e6-4570-8c33-071f4dd493e7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/51a3e531-4a12-4a27-b010-aa0bd22ad2c5", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1527bbcf-b1e6-4570-8c33-071f4dd493e7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4441, + "label": { + "@none": [ + "126r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/51a3e531-4a12-4a27-b010-aa0bd22ad2c5/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/51a3e531-4a12-4a27-b010-aa0bd22ad2c5/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b9e57df-fd7f-4f15-8188-fddc0f015ba3" + } + ] + }, + { + "height": 4283, + "label": { + "@none": [ + "126v" + ] + }, + "width": 2838, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a205226a-4940-4c11-8f2b-ffa9ef3b90ab", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/34492f8a-d487-46c1-949b-3baec9fb3f61", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a205226a-4940-4c11-8f2b-ffa9ef3b90ab", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4283, + "label": { + "@none": [ + "126v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/34492f8a-d487-46c1-949b-3baec9fb3f61/", + "type": "ImageService1" + } + ], + "width": 2838, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/34492f8a-d487-46c1-949b-3baec9fb3f61/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31b24344-d5d6-4833-a224-c4642599cb43" + } + ] + }, + { + "height": 4377, + "label": { + "@none": [ + "127r" + ] + }, + "width": 2966, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0a235a67-1b1d-47f8-abec-e7a9bb852ce6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/44fabbbf-6bc3-40dc-b459-001519e00fbd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0a235a67-1b1d-47f8-abec-e7a9bb852ce6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4377, + "label": { + "@none": [ + "127r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/44fabbbf-6bc3-40dc-b459-001519e00fbd/", + "type": "ImageService1" + } + ], + "width": 2966, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/44fabbbf-6bc3-40dc-b459-001519e00fbd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e87bb46f-1a10-47f4-85f4-6bd6e7add2ac" + } + ] + }, + { + "height": 4269, + "label": { + "@none": [ + "127v" + ] + }, + "width": 2814, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/446147b8-f648-4939-b23a-c1ecbc87e74e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6b61f44e-f051-44f2-bfde-a155a9cc04c2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/446147b8-f648-4939-b23a-c1ecbc87e74e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4269, + "label": { + "@none": [ + "127v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6b61f44e-f051-44f2-bfde-a155a9cc04c2/", + "type": "ImageService1" + } + ], + "width": 2814, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6b61f44e-f051-44f2-bfde-a155a9cc04c2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d20df2e5-082a-4230-b663-9f38bdd68b35" + } + ] + }, + { + "height": 4419, + "label": { + "@none": [ + "128r" + ] + }, + "width": 2987, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0736be26-7014-48ee-b9ea-232640f9c4b8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/668ebf77-ad26-418b-8e5e-e87e043622fa", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0736be26-7014-48ee-b9ea-232640f9c4b8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4419, + "label": { + "@none": [ + "128r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/668ebf77-ad26-418b-8e5e-e87e043622fa/", + "type": "ImageService1" + } + ], + "width": 2987, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/668ebf77-ad26-418b-8e5e-e87e043622fa/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc22a7d2-a863-495f-b824-c7c5b665cece" + } + ] + }, + { + "height": 4292, + "label": { + "@none": [ + "128v" + ] + }, + "width": 2827, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/350a55d1-51b2-47ad-b3d4-9c8ec3274b3c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4d349363-e986-425d-9343-d421eb92427a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/350a55d1-51b2-47ad-b3d4-9c8ec3274b3c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4292, + "label": { + "@none": [ + "128v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4d349363-e986-425d-9343-d421eb92427a/", + "type": "ImageService1" + } + ], + "width": 2827, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4d349363-e986-425d-9343-d421eb92427a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef447286-9c6f-4003-8275-39779915e59c" + } + ] + }, + { + "height": 4457, + "label": { + "@none": [ + "129r" + ] + }, + "width": 2936, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9650b997-9f34-4100-9c39-39ba645dedb6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bf0d591b-61ae-4959-98ec-2ad85f39e1ee", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9650b997-9f34-4100-9c39-39ba645dedb6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4457, + "label": { + "@none": [ + "129r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bf0d591b-61ae-4959-98ec-2ad85f39e1ee/", + "type": "ImageService1" + } + ], + "width": 2936, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bf0d591b-61ae-4959-98ec-2ad85f39e1ee/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72d3a4c1-da6b-40af-81ed-fe479c817554" + } + ] + }, + { + "height": 4278, + "label": { + "@none": [ + "129v" + ] + }, + "width": 2749, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/43695100-51a9-4c3d-9581-d3067f93ad3b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bc3e9c6e-1d9c-431d-9a44-2ee8287bfb23", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/43695100-51a9-4c3d-9581-d3067f93ad3b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4278, + "label": { + "@none": [ + "129v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bc3e9c6e-1d9c-431d-9a44-2ee8287bfb23/", + "type": "ImageService1" + } + ], + "width": 2749, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bc3e9c6e-1d9c-431d-9a44-2ee8287bfb23/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8439d408-8646-4a61-b3eb-6af2663d9c7d" + } + ] + }, + { + "height": 4428, + "label": { + "@none": [ + "130r" + ] + }, + "width": 2955, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e11d7078-c440-496b-849d-1bbeb773c4d8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e2ab7f42-84aa-4998-9277-4a03f437a501", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e11d7078-c440-496b-849d-1bbeb773c4d8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4428, + "label": { + "@none": [ + "130r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e2ab7f42-84aa-4998-9277-4a03f437a501/", + "type": "ImageService1" + } + ], + "width": 2955, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e2ab7f42-84aa-4998-9277-4a03f437a501/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be2d695c-2a4f-427d-85b4-4790ff2b9144" + } + ] + }, + { + "height": 4242, + "label": { + "@none": [ + "130v" + ] + }, + "width": 2826, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4016b085-1a68-4799-bc47-4497efe86175", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/83b5dc35-0496-449f-b6e4-2f0be660109b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4016b085-1a68-4799-bc47-4497efe86175", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4242, + "label": { + "@none": [ + "130v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/83b5dc35-0496-449f-b6e4-2f0be660109b/", + "type": "ImageService1" + } + ], + "width": 2826, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/83b5dc35-0496-449f-b6e4-2f0be660109b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d70bde5-413b-4048-bed0-2f13e3fbd456" + } + ] + }, + { + "height": 4389, + "label": { + "@none": [ + "131r" + ] + }, + "width": 2935, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/648cfb32-29fe-42ac-9ed8-8241be42b087", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/112bed81-ef41-42d2-ba10-ae7bac3bc521", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/648cfb32-29fe-42ac-9ed8-8241be42b087", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4389, + "label": { + "@none": [ + "131r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/112bed81-ef41-42d2-ba10-ae7bac3bc521/", + "type": "ImageService1" + } + ], + "width": 2935, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/112bed81-ef41-42d2-ba10-ae7bac3bc521/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64372dfe-bc7c-4a5c-bcd9-cf056ce30f81" + } + ] + }, + { + "height": 4247, + "label": { + "@none": [ + "131v" + ] + }, + "width": 2825, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9ed4ea4b-081c-4410-b570-5e17899c80bb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c932ef38-8905-40c4-a23d-f2a0a3ba3993", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9ed4ea4b-081c-4410-b570-5e17899c80bb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4247, + "label": { + "@none": [ + "131v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c932ef38-8905-40c4-a23d-f2a0a3ba3993/", + "type": "ImageService1" + } + ], + "width": 2825, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c932ef38-8905-40c4-a23d-f2a0a3ba3993/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5535a977-f670-4842-8236-20c4f2363b3b" + } + ] + }, + { + "height": 4408, + "label": { + "@none": [ + "132r" + ] + }, + "width": 2998, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9dda1ba3-71cf-4b58-86e4-29b31be6ec5a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0ce371a4-f17e-46f2-b89f-95197a5ed053", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9dda1ba3-71cf-4b58-86e4-29b31be6ec5a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4408, + "label": { + "@none": [ + "132r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0ce371a4-f17e-46f2-b89f-95197a5ed053/", + "type": "ImageService1" + } + ], + "width": 2998, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0ce371a4-f17e-46f2-b89f-95197a5ed053/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/263fa9bd-8096-45a3-9021-7d2e789e7857" + } + ] + }, + { + "height": 4261, + "label": { + "@none": [ + "132v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/af8c5634-c6ce-4d42-b5e1-1a60e46ab5f0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/20945291-9fd5-4070-bf97-93b763333801", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/af8c5634-c6ce-4d42-b5e1-1a60e46ab5f0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4261, + "label": { + "@none": [ + "132v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/20945291-9fd5-4070-bf97-93b763333801/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/20945291-9fd5-4070-bf97-93b763333801/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8893eeff-e770-4fd6-9821-99c1944fe9df" + } + ] + }, + { + "height": 4475, + "label": { + "@none": [ + "133r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9392c2fa-ac80-4045-afe5-ad58eb4399de", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a4607969-89b4-4446-8550-d4def35f1e28", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9392c2fa-ac80-4045-afe5-ad58eb4399de", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4475, + "label": { + "@none": [ + "133r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a4607969-89b4-4446-8550-d4def35f1e28/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a4607969-89b4-4446-8550-d4def35f1e28/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8ff8a9d-69f0-46f4-8614-5daed7763a1f" + } + ] + }, + { + "height": 4280, + "label": { + "@none": [ + "133v" + ] + }, + "width": 2830, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a899141e-c2c2-4a12-9cee-6a4fb32c81c6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/52a41d95-e94c-4913-ad3d-01588d5b3e72", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a899141e-c2c2-4a12-9cee-6a4fb32c81c6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4280, + "label": { + "@none": [ + "133v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/52a41d95-e94c-4913-ad3d-01588d5b3e72/", + "type": "ImageService1" + } + ], + "width": 2830, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/52a41d95-e94c-4913-ad3d-01588d5b3e72/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3537580-83f8-41f6-9150-a1b46e813a6a" + } + ] + }, + { + "height": 4441, + "label": { + "@none": [ + "134r" + ] + }, + "width": 2993, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8ca67e7d-e01e-4dab-94e9-56dc47f5924d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5b399960-2438-4476-a076-5475f8607020", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8ca67e7d-e01e-4dab-94e9-56dc47f5924d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4441, + "label": { + "@none": [ + "134r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5b399960-2438-4476-a076-5475f8607020/", + "type": "ImageService1" + } + ], + "width": 2993, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5b399960-2438-4476-a076-5475f8607020/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22184e40-7699-4a62-bdcf-0ef575f13a9b" + } + ] + }, + { + "height": 4275, + "label": { + "@none": [ + "134v" + ] + }, + "width": 2824, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4bfc5dd1-0588-4289-aba9-5326dda6aad4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/62f06960-3e57-49c6-b181-ca2a9be1328a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4bfc5dd1-0588-4289-aba9-5326dda6aad4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4275, + "label": { + "@none": [ + "134v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/62f06960-3e57-49c6-b181-ca2a9be1328a/", + "type": "ImageService1" + } + ], + "width": 2824, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/62f06960-3e57-49c6-b181-ca2a9be1328a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60fcdfd9-7250-47ce-9b40-41ee43b699ae" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "135r" + ] + }, + "width": 2998, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7ba9976f-f6cc-4910-a1ec-faea3fbc1a7f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/77ff17c5-cfc1-44b9-8fff-7bad644fe01e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7ba9976f-f6cc-4910-a1ec-faea3fbc1a7f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "135r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/77ff17c5-cfc1-44b9-8fff-7bad644fe01e/", + "type": "ImageService1" + } + ], + "width": 2998, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/77ff17c5-cfc1-44b9-8fff-7bad644fe01e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47a29231-8e21-415a-8977-87e3ecbfdcd0" + } + ] + }, + { + "height": 4252, + "label": { + "@none": [ + "135v" + ] + }, + "width": 2834, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/393b1e59-caf0-4242-b218-38c358516473", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ecb9a628-a697-498e-a1bd-494c8df583af", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/393b1e59-caf0-4242-b218-38c358516473", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4252, + "label": { + "@none": [ + "135v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ecb9a628-a697-498e-a1bd-494c8df583af/", + "type": "ImageService1" + } + ], + "width": 2834, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ecb9a628-a697-498e-a1bd-494c8df583af/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce8e7142-362c-43a2-a0ff-9a3599fdff47" + } + ] + }, + { + "height": 4380, + "label": { + "@none": [ + "136r" + ] + }, + "width": 2930, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d0da678d-e136-4adf-90f4-f9950ecab2f7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/97a391b3-4d1d-4c3b-8753-d604c4eb9102", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d0da678d-e136-4adf-90f4-f9950ecab2f7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4380, + "label": { + "@none": [ + "136r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/97a391b3-4d1d-4c3b-8753-d604c4eb9102/", + "type": "ImageService1" + } + ], + "width": 2930, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/97a391b3-4d1d-4c3b-8753-d604c4eb9102/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a8263f2-8162-4eec-8d21-5d7957d89713" + } + ] + }, + { + "height": 4237, + "label": { + "@none": [ + "136v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/63f36441-886a-41dc-b131-76dcf3faef6a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f5f6eb9d-cb79-4228-8a25-293f49ccd8c2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/63f36441-886a-41dc-b131-76dcf3faef6a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4237, + "label": { + "@none": [ + "136v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f5f6eb9d-cb79-4228-8a25-293f49ccd8c2/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f5f6eb9d-cb79-4228-8a25-293f49ccd8c2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f32b9a4-2392-48b9-8bd6-0500312f571b" + } + ] + }, + { + "height": 4396, + "label": { + "@none": [ + "137r" + ] + }, + "width": 3052, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/90ec2816-3ddd-4ffa-bbf9-496ad981032c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ed8288a4-8615-4a33-a3ec-e46d90c5a01a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/90ec2816-3ddd-4ffa-bbf9-496ad981032c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4396, + "label": { + "@none": [ + "137r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ed8288a4-8615-4a33-a3ec-e46d90c5a01a/", + "type": "ImageService1" + } + ], + "width": 3052, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ed8288a4-8615-4a33-a3ec-e46d90c5a01a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed0e0810-94fb-4429-a463-9fac752d2343" + } + ] + }, + { + "height": 4270, + "label": { + "@none": [ + "137v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ace2e5e5-43b4-4c82-8b16-2c15b5238b12", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a55668e1-dbf3-406d-a59d-cab072e1562d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ace2e5e5-43b4-4c82-8b16-2c15b5238b12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4270, + "label": { + "@none": [ + "137v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a55668e1-dbf3-406d-a59d-cab072e1562d/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a55668e1-dbf3-406d-a59d-cab072e1562d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31d6ec10-40c1-41ff-bcc3-4bcf1b054cc0" + } + ] + }, + { + "height": 4391, + "label": { + "@none": [ + "138r" + ] + }, + "width": 2955, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/995a9a7a-53bf-45c9-abf5-cf6d6ab25aa4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d9e9f849-d943-41fc-a270-c428f8848b60", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/995a9a7a-53bf-45c9-abf5-cf6d6ab25aa4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4391, + "label": { + "@none": [ + "138r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d9e9f849-d943-41fc-a270-c428f8848b60/", + "type": "ImageService1" + } + ], + "width": 2955, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d9e9f849-d943-41fc-a270-c428f8848b60/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/836761f9-0f58-49f9-aec4-f7d21d0c786e" + } + ] + }, + { + "height": 4296, + "label": { + "@none": [ + "138v" + ] + }, + "width": 2801, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bc50cff4-2e13-4156-8604-7f841e85c849", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/0354c2ab-8d6e-419c-91b3-04c3604637a2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bc50cff4-2e13-4156-8604-7f841e85c849", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4296, + "label": { + "@none": [ + "138v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/0354c2ab-8d6e-419c-91b3-04c3604637a2/", + "type": "ImageService1" + } + ], + "width": 2801, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/0354c2ab-8d6e-419c-91b3-04c3604637a2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa2f6d69-8681-49e8-9db8-e1f4814ad590" + } + ] + }, + { + "height": 4409, + "label": { + "@none": [ + "139r" + ] + }, + "width": 2945, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/39e36fc8-ce89-46e7-9e48-0042e9405872", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6072f6bd-cef4-42e2-97bb-03cb82161c11", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/39e36fc8-ce89-46e7-9e48-0042e9405872", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4409, + "label": { + "@none": [ + "139r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6072f6bd-cef4-42e2-97bb-03cb82161c11/", + "type": "ImageService1" + } + ], + "width": 2945, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6072f6bd-cef4-42e2-97bb-03cb82161c11/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acd62a0c-e63c-479b-ac72-d179f66b903f" + } + ] + }, + { + "height": 4288, + "label": { + "@none": [ + "139v" + ] + }, + "width": 2811, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/52d6cc98-4754-4bea-929c-c592ee7c421d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f393229a-26cf-42a1-a589-878888965652", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/52d6cc98-4754-4bea-929c-c592ee7c421d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4288, + "label": { + "@none": [ + "139v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f393229a-26cf-42a1-a589-878888965652/", + "type": "ImageService1" + } + ], + "width": 2811, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f393229a-26cf-42a1-a589-878888965652/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b285a050-d1fc-49d8-b1eb-8e1133fbf9c9" + } + ] + }, + { + "height": 4395, + "label": { + "@none": [ + "140r" + ] + }, + "width": 2939, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/78bad6df-0e13-4442-9a4b-0ce3e70f5b38", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b7615700-9fca-4d45-9ba9-bc39e31c1962", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/78bad6df-0e13-4442-9a4b-0ce3e70f5b38", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4395, + "label": { + "@none": [ + "140r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b7615700-9fca-4d45-9ba9-bc39e31c1962/", + "type": "ImageService1" + } + ], + "width": 2939, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b7615700-9fca-4d45-9ba9-bc39e31c1962/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/de80e5ff-24f2-4477-909a-5922217fd50e" + } + ] + }, + { + "height": 4299, + "label": { + "@none": [ + "140v" + ] + }, + "width": 2830, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/8df8730f-43d2-4647-bfc1-49de87c88889", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3d26eee5-2a3a-4e8d-86b8-35349ce8d1d6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/8df8730f-43d2-4647-bfc1-49de87c88889", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4299, + "label": { + "@none": [ + "140v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3d26eee5-2a3a-4e8d-86b8-35349ce8d1d6/", + "type": "ImageService1" + } + ], + "width": 2830, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3d26eee5-2a3a-4e8d-86b8-35349ce8d1d6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40346d1f-5b70-481b-b0de-6cfa9645e98a" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "141r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/29fcbc66-50d9-4b25-b8ad-b3721b9a2fc4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1adf2e34-7dd1-457e-b50a-3d35bec8d27a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/29fcbc66-50d9-4b25-b8ad-b3721b9a2fc4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "141r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1adf2e34-7dd1-457e-b50a-3d35bec8d27a/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1adf2e34-7dd1-457e-b50a-3d35bec8d27a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3db6f78f-c6cb-436c-9ecb-aea18a07766a" + } + ] + }, + { + "height": 4318, + "label": { + "@none": [ + "141v" + ] + }, + "width": 2782, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b2fb1287-e089-4962-a8de-0c987b437040", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9c1cbbb9-cb68-459f-ae0e-0199bef68030", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b2fb1287-e089-4962-a8de-0c987b437040", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4318, + "label": { + "@none": [ + "141v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9c1cbbb9-cb68-459f-ae0e-0199bef68030/", + "type": "ImageService1" + } + ], + "width": 2782, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9c1cbbb9-cb68-459f-ae0e-0199bef68030/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/332c0a53-b7a5-4df0-ae2d-1a86ad5dbaaf" + } + ] + }, + { + "height": 4371, + "label": { + "@none": [ + "142r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4a4bd26b-7e67-482f-9730-00977c7119db", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/22fdf54d-7a31-478f-bb1c-514d57481ccd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4a4bd26b-7e67-482f-9730-00977c7119db", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4371, + "label": { + "@none": [ + "142r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/22fdf54d-7a31-478f-bb1c-514d57481ccd/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/22fdf54d-7a31-478f-bb1c-514d57481ccd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84ebb18f-b9ce-45df-9cbd-85fa54a3204a" + } + ] + }, + { + "height": 4280, + "label": { + "@none": [ + "142v" + ] + }, + "width": 2829, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9b405b11-9db0-41df-84e7-57c6ee3a4336", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c83128af-32e7-4c29-81af-4887a5fdcd2a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9b405b11-9db0-41df-84e7-57c6ee3a4336", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4280, + "label": { + "@none": [ + "142v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c83128af-32e7-4c29-81af-4887a5fdcd2a/", + "type": "ImageService1" + } + ], + "width": 2829, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c83128af-32e7-4c29-81af-4887a5fdcd2a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/46a515ee-b9bd-477a-9102-c5a9aa7ea1a5" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "143r" + ] + }, + "width": 2983, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/320a0357-4109-4cc6-9f49-211e1d11aef3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3b337d61-e354-4b14-9168-71ab551fc23c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/320a0357-4109-4cc6-9f49-211e1d11aef3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "143r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3b337d61-e354-4b14-9168-71ab551fc23c/", + "type": "ImageService1" + } + ], + "width": 2983, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3b337d61-e354-4b14-9168-71ab551fc23c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d57c3679-7118-44fa-91c9-063c7508fd6c" + } + ] + }, + { + "height": 4286, + "label": { + "@none": [ + "143v" + ] + }, + "width": 2853, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/388026d5-bc1c-4662-ac2e-88aea0b51480", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fdc55be3-97c5-40f8-80a7-293d399aaf13", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/388026d5-bc1c-4662-ac2e-88aea0b51480", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4286, + "label": { + "@none": [ + "143v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fdc55be3-97c5-40f8-80a7-293d399aaf13/", + "type": "ImageService1" + } + ], + "width": 2853, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fdc55be3-97c5-40f8-80a7-293d399aaf13/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8593d5a4-6232-450f-b95a-67031c26e105" + } + ] + }, + { + "height": 4419, + "label": { + "@none": [ + "144r" + ] + }, + "width": 3003, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5a59d868-a14f-4828-9ee3-dcaf831c0ade", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bac13504-ac2d-42ac-8b17-e2b9b9492b82", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5a59d868-a14f-4828-9ee3-dcaf831c0ade", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4419, + "label": { + "@none": [ + "144r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bac13504-ac2d-42ac-8b17-e2b9b9492b82/", + "type": "ImageService1" + } + ], + "width": 3003, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bac13504-ac2d-42ac-8b17-e2b9b9492b82/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b10cad44-2958-49a9-b074-7cf09aa9277c" + } + ] + }, + { + "height": 4281, + "label": { + "@none": [ + "144v" + ] + }, + "width": 2863, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9cdd17af-2475-4edc-a9d5-8a832374f87b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b9051084-b56f-4b3a-87b5-d6c2252f4513", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9cdd17af-2475-4edc-a9d5-8a832374f87b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4281, + "label": { + "@none": [ + "144v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b9051084-b56f-4b3a-87b5-d6c2252f4513/", + "type": "ImageService1" + } + ], + "width": 2863, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b9051084-b56f-4b3a-87b5-d6c2252f4513/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c874000c-5e55-4010-90ed-f53cb4c268d4" + } + ] + }, + { + "height": 4380, + "label": { + "@none": [ + "145r" + ] + }, + "width": 2979, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/69dcd476-1ead-4015-b0b4-7e3429484129", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d4e83324-b88a-4ae7-b7dc-59e1f859e7ce", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/69dcd476-1ead-4015-b0b4-7e3429484129", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4380, + "label": { + "@none": [ + "145r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d4e83324-b88a-4ae7-b7dc-59e1f859e7ce/", + "type": "ImageService1" + } + ], + "width": 2979, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d4e83324-b88a-4ae7-b7dc-59e1f859e7ce/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d9ab46f-a04b-4688-a816-bba0b83cd31d" + } + ] + }, + { + "height": 4276, + "label": { + "@none": [ + "145v" + ] + }, + "width": 2858, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/a0b5bd9b-c103-4fb9-bfd2-83748f220e28", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/518acd34-f38d-4376-854c-4ad89b09db55", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/a0b5bd9b-c103-4fb9-bfd2-83748f220e28", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4276, + "label": { + "@none": [ + "145v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/518acd34-f38d-4376-854c-4ad89b09db55/", + "type": "ImageService1" + } + ], + "width": 2858, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/518acd34-f38d-4376-854c-4ad89b09db55/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5b23d72-ac5a-4a52-83cf-a21dae02dd30" + } + ] + }, + { + "height": 4361, + "label": { + "@none": [ + "146r" + ] + }, + "width": 2969, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/25aec133-f37f-44a4-a18a-dac1b78a0f11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4c46a4ee-6f38-4924-a51a-9ca9c5b8468c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/25aec133-f37f-44a4-a18a-dac1b78a0f11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4361, + "label": { + "@none": [ + "146r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4c46a4ee-6f38-4924-a51a-9ca9c5b8468c/", + "type": "ImageService1" + } + ], + "width": 2969, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4c46a4ee-6f38-4924-a51a-9ca9c5b8468c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d78d0f38-ed98-4c21-ae46-4dca4cea8730" + } + ] + }, + { + "height": 4266, + "label": { + "@none": [ + "146v" + ] + }, + "width": 2848, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cc473e6f-a389-4395-ae4c-1cb72a888925", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/81213af5-695c-4b06-8d5a-5a3a3700df08", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cc473e6f-a389-4395-ae4c-1cb72a888925", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4266, + "label": { + "@none": [ + "146v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/81213af5-695c-4b06-8d5a-5a3a3700df08/", + "type": "ImageService1" + } + ], + "width": 2848, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/81213af5-695c-4b06-8d5a-5a3a3700df08/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bba3a4ff-109d-4723-8e7e-28b24e7033aa" + } + ] + }, + { + "height": 4377, + "label": { + "@none": [ + "147r" + ] + }, + "width": 2952, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7fc32989-6458-4673-9316-0e92fc98e9e1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6599f44f-f9ab-4d40-8f98-62f6122b17da", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7fc32989-6458-4673-9316-0e92fc98e9e1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4377, + "label": { + "@none": [ + "147r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6599f44f-f9ab-4d40-8f98-62f6122b17da/", + "type": "ImageService1" + } + ], + "width": 2952, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6599f44f-f9ab-4d40-8f98-62f6122b17da/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80edf7ae-7735-4739-8269-0f10568d89c6" + } + ] + }, + { + "height": 4258, + "label": { + "@none": [ + "147v" + ] + }, + "width": 2824, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b3d2a451-05a0-4700-b3e9-735d56b5b0b3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/35e16bff-db51-4a29-9a4e-e854adec8fc9", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b3d2a451-05a0-4700-b3e9-735d56b5b0b3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4258, + "label": { + "@none": [ + "147v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/35e16bff-db51-4a29-9a4e-e854adec8fc9/", + "type": "ImageService1" + } + ], + "width": 2824, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/35e16bff-db51-4a29-9a4e-e854adec8fc9/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5610491-48d1-446b-b1a0-ee81c13ce7a4" + } + ] + }, + { + "height": 4404, + "label": { + "@none": [ + "148r" + ] + }, + "width": 2902, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/238b6710-4f89-40bf-92f4-9a367f4d6dd8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d61bcdb8-6458-4435-9efd-ca013ffae61e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/238b6710-4f89-40bf-92f4-9a367f4d6dd8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4404, + "label": { + "@none": [ + "148r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d61bcdb8-6458-4435-9efd-ca013ffae61e/", + "type": "ImageService1" + } + ], + "width": 2902, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d61bcdb8-6458-4435-9efd-ca013ffae61e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/667117cc-d2ea-4d08-9115-67f2c93bee7e" + } + ] + }, + { + "height": 4285, + "label": { + "@none": [ + "148v" + ] + }, + "width": 2820, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0897dcff-251a-4dec-87e6-fcdfc0b93c00", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/352b81cb-26da-4f91-a815-0652bbb6d983", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0897dcff-251a-4dec-87e6-fcdfc0b93c00", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4285, + "label": { + "@none": [ + "148v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/352b81cb-26da-4f91-a815-0652bbb6d983/", + "type": "ImageService1" + } + ], + "width": 2820, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/352b81cb-26da-4f91-a815-0652bbb6d983/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38b35792-4d38-44c2-be52-17b67bd01c3d" + } + ] + }, + { + "height": 4370, + "label": { + "@none": [ + "149r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2c2a29b0-c05e-4882-bc3b-bba0a6e8bffa", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1d787591-d252-4400-9fd1-3d705b0f2a7c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2c2a29b0-c05e-4882-bc3b-bba0a6e8bffa", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4370, + "label": { + "@none": [ + "149r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1d787591-d252-4400-9fd1-3d705b0f2a7c/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1d787591-d252-4400-9fd1-3d705b0f2a7c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38fee90e-d4a3-4753-8556-ef7106cc14fc" + } + ] + }, + { + "height": 4302, + "label": { + "@none": [ + "149v" + ] + }, + "width": 2826, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/04b73d2e-401b-4128-b709-1fa30c5ab4a1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d20f8e89-106d-4c70-abac-ac6e8a371d91", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/04b73d2e-401b-4128-b709-1fa30c5ab4a1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4302, + "label": { + "@none": [ + "149v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d20f8e89-106d-4c70-abac-ac6e8a371d91/", + "type": "ImageService1" + } + ], + "width": 2826, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d20f8e89-106d-4c70-abac-ac6e8a371d91/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f4ada61-fd44-474c-94bc-79007f3d09ec" + } + ] + }, + { + "height": 4424, + "label": { + "@none": [ + "150r" + ] + }, + "width": 2916, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0085d09d-c626-47ac-a65b-0143cde967bc", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ae5aae17-8b5b-4308-b8cf-27b71a528251", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0085d09d-c626-47ac-a65b-0143cde967bc", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4424, + "label": { + "@none": [ + "150r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ae5aae17-8b5b-4308-b8cf-27b71a528251/", + "type": "ImageService1" + } + ], + "width": 2916, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ae5aae17-8b5b-4308-b8cf-27b71a528251/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a991ada1-1f78-4e8d-8552-a1fb8b51c142" + } + ] + }, + { + "height": 4270, + "label": { + "@none": [ + "150v" + ] + }, + "width": 2815, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/53e86d18-92e8-4609-81bf-4933e1d8e4c5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7854cbfa-7e48-451d-9ff4-b4b72448ae18", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/53e86d18-92e8-4609-81bf-4933e1d8e4c5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4270, + "label": { + "@none": [ + "150v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7854cbfa-7e48-451d-9ff4-b4b72448ae18/", + "type": "ImageService1" + } + ], + "width": 2815, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7854cbfa-7e48-451d-9ff4-b4b72448ae18/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8444eeb5-8902-430e-b353-9a2f72f5900b" + } + ] + }, + { + "height": 4380, + "label": { + "@none": [ + "151r" + ] + }, + "width": 2988, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6c67277a-0ae8-47d8-8980-de01a7a97497", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6d189f4d-64c7-4d91-8752-cba49b1a8aff", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6c67277a-0ae8-47d8-8980-de01a7a97497", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4380, + "label": { + "@none": [ + "151r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6d189f4d-64c7-4d91-8752-cba49b1a8aff/", + "type": "ImageService1" + } + ], + "width": 2988, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6d189f4d-64c7-4d91-8752-cba49b1a8aff/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5159367e-f7af-4f90-8159-5bd50d2e4392" + } + ] + }, + { + "height": 4248, + "label": { + "@none": [ + "151v" + ] + }, + "width": 2843, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/49c21d90-c244-44b0-a2b4-c2ce5b66b1ad", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cbde46e5-fcc2-465f-bae0-c3f9bffe4f92", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/49c21d90-c244-44b0-a2b4-c2ce5b66b1ad", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4248, + "label": { + "@none": [ + "151v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cbde46e5-fcc2-465f-bae0-c3f9bffe4f92/", + "type": "ImageService1" + } + ], + "width": 2843, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cbde46e5-fcc2-465f-bae0-c3f9bffe4f92/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43bff9e6-d22c-43ed-816f-6cb761cbc76c" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "152r" + ] + }, + "width": 2941, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b92306c2-8dc4-4b2b-b5d7-2350ae2cdbde", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/acd4a8ba-4bd6-425c-b851-ea8dfb23e6e2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b92306c2-8dc4-4b2b-b5d7-2350ae2cdbde", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "152r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/acd4a8ba-4bd6-425c-b851-ea8dfb23e6e2/", + "type": "ImageService1" + } + ], + "width": 2941, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/acd4a8ba-4bd6-425c-b851-ea8dfb23e6e2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/940c9f48-ba84-44d2-aca4-9532a4f1789a" + } + ] + }, + { + "height": 4245, + "label": { + "@none": [ + "152v" + ] + }, + "width": 2859, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/15be234a-0dc8-4144-a166-e95d7d958c3f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6b7bc169-dd41-4b53-a596-17a242ebaaf4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/15be234a-0dc8-4144-a166-e95d7d958c3f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4245, + "label": { + "@none": [ + "152v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6b7bc169-dd41-4b53-a596-17a242ebaaf4/", + "type": "ImageService1" + } + ], + "width": 2859, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6b7bc169-dd41-4b53-a596-17a242ebaaf4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed7acb4b-effc-441d-a000-fff099eb8e11" + } + ] + }, + { + "height": 4362, + "label": { + "@none": [ + "153r" + ] + }, + "width": 2889, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5f529753-f297-447c-8c81-c671f614e572", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d3e2165e-3b50-47c9-8d3e-f1c78086cf1b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5f529753-f297-447c-8c81-c671f614e572", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4362, + "label": { + "@none": [ + "153r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d3e2165e-3b50-47c9-8d3e-f1c78086cf1b/", + "type": "ImageService1" + } + ], + "width": 2889, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d3e2165e-3b50-47c9-8d3e-f1c78086cf1b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06cc0c64-0319-439d-acc1-7abece48a3e0" + } + ] + }, + { + "height": 4303, + "label": { + "@none": [ + "153v" + ] + }, + "width": 2804, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/541db314-dc1e-49dc-8ff3-853a23989b46", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/935ff293-3414-47bc-a5c2-95af7805f210", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/541db314-dc1e-49dc-8ff3-853a23989b46", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4303, + "label": { + "@none": [ + "153v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/935ff293-3414-47bc-a5c2-95af7805f210/", + "type": "ImageService1" + } + ], + "width": 2804, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/935ff293-3414-47bc-a5c2-95af7805f210/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab9a10fc-fd8c-400e-8992-3bc4829610dd" + } + ] + }, + { + "height": 4399, + "label": { + "@none": [ + "154r" + ] + }, + "width": 2889, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9bfc7813-53c7-4af9-a2b5-41a1667e6fda", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c369ac89-ee6b-423e-850c-96c6623fb11b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9bfc7813-53c7-4af9-a2b5-41a1667e6fda", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4399, + "label": { + "@none": [ + "154r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c369ac89-ee6b-423e-850c-96c6623fb11b/", + "type": "ImageService1" + } + ], + "width": 2889, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c369ac89-ee6b-423e-850c-96c6623fb11b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d2fbdcd-1b2e-4bf3-b7d3-9041f247ec06" + } + ] + }, + { + "height": 4308, + "label": { + "@none": [ + "154v" + ] + }, + "width": 2839, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c3c5030f-043e-4df4-a8a5-342f6032717b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/fc2f1d4c-009f-4fab-940a-18a2708412c2", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c3c5030f-043e-4df4-a8a5-342f6032717b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4308, + "label": { + "@none": [ + "154v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/fc2f1d4c-009f-4fab-940a-18a2708412c2/", + "type": "ImageService1" + } + ], + "width": 2839, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/fc2f1d4c-009f-4fab-940a-18a2708412c2/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/454e779f-e4a3-471b-b9c4-c87af54afa71" + } + ] + }, + { + "height": 4338, + "label": { + "@none": [ + "155r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/86f1ec54-f7e0-488d-9eb1-0177f165d0ed", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/dc377d02-9062-4dd3-b14c-789e74822be0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/86f1ec54-f7e0-488d-9eb1-0177f165d0ed", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4338, + "label": { + "@none": [ + "155r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/dc377d02-9062-4dd3-b14c-789e74822be0/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/dc377d02-9062-4dd3-b14c-789e74822be0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd0c10ed-e3c4-4e7d-aeb1-68668caa59eb" + } + ] + }, + { + "height": 4290, + "label": { + "@none": [ + "155v" + ] + }, + "width": 2834, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/cc4ab7a9-284f-4d75-85ae-1708749a0366", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cdd5084f-f4fd-4fd4-ba58-b6da790ba800", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/cc4ab7a9-284f-4d75-85ae-1708749a0366", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4290, + "label": { + "@none": [ + "155v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cdd5084f-f4fd-4fd4-ba58-b6da790ba800/", + "type": "ImageService1" + } + ], + "width": 2834, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cdd5084f-f4fd-4fd4-ba58-b6da790ba800/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cd606f7c-db31-43d6-ab3c-91d250c58f7c" + } + ] + }, + { + "height": 4385, + "label": { + "@none": [ + "156r" + ] + }, + "width": 2965, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5901c420-5841-45fc-a48c-d555ce6e8eea", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/1ff39a63-7499-4a2a-8d5f-301f26c92f21", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5901c420-5841-45fc-a48c-d555ce6e8eea", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4385, + "label": { + "@none": [ + "156r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/1ff39a63-7499-4a2a-8d5f-301f26c92f21/", + "type": "ImageService1" + } + ], + "width": 2965, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/1ff39a63-7499-4a2a-8d5f-301f26c92f21/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4796e52d-f278-45d9-9487-a8f115ca80ed" + } + ] + }, + { + "height": 4323, + "label": { + "@none": [ + "156v" + ] + }, + "width": 2791, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f5c93f6b-1e14-4def-9343-f0953cb2b28d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4e0d2d03-6658-4491-b7d2-c46a3084dc5d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f5c93f6b-1e14-4def-9343-f0953cb2b28d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4323, + "label": { + "@none": [ + "156v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4e0d2d03-6658-4491-b7d2-c46a3084dc5d/", + "type": "ImageService1" + } + ], + "width": 2791, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4e0d2d03-6658-4491-b7d2-c46a3084dc5d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97ca3a74-3a2c-4eb9-9cb6-965b4ca98fa2" + } + ] + }, + { + "height": 4346, + "label": { + "@none": [ + "157r" + ] + }, + "width": 2950, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/ac589d85-0289-4427-9827-d0abb60e5e2a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/de9c8685-06c4-4a7b-b48f-559c16254521", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/ac589d85-0289-4427-9827-d0abb60e5e2a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4346, + "label": { + "@none": [ + "157r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/de9c8685-06c4-4a7b-b48f-559c16254521/", + "type": "ImageService1" + } + ], + "width": 2950, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/de9c8685-06c4-4a7b-b48f-559c16254521/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0a0c8345-cea6-433d-8aba-238ca118e9f5" + } + ] + }, + { + "height": 4318, + "label": { + "@none": [ + "157v" + ] + }, + "width": 2834, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/84626fb9-d17f-456e-b9c5-ad57a3cc82cb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8727551c-cbe9-4a90-8234-3dbd4eee3a90", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/84626fb9-d17f-456e-b9c5-ad57a3cc82cb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4318, + "label": { + "@none": [ + "157v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8727551c-cbe9-4a90-8234-3dbd4eee3a90/", + "type": "ImageService1" + } + ], + "width": 2834, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8727551c-cbe9-4a90-8234-3dbd4eee3a90/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac7f1e00-6636-47b7-9f06-2697b190901b" + } + ] + }, + { + "height": 4345, + "label": { + "@none": [ + "158r" + ] + }, + "width": 2920, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/7331beea-6fa0-4547-a968-2c3e9a73d7da", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/96293188-9cae-40ee-9149-6a5cbb6b1590", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/7331beea-6fa0-4547-a968-2c3e9a73d7da", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4345, + "label": { + "@none": [ + "158r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/96293188-9cae-40ee-9149-6a5cbb6b1590/", + "type": "ImageService1" + } + ], + "width": 2920, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/96293188-9cae-40ee-9149-6a5cbb6b1590/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a4fe994e-8d7e-4d50-a419-24e0c0aa4353" + } + ] + }, + { + "height": 4295, + "label": { + "@none": [ + "158v" + ] + }, + "width": 2834, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e2bc3790-ace4-438a-9b66-ffb3d1ee720c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/61f5f49b-e177-4947-952b-f76f5af7721f", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e2bc3790-ace4-438a-9b66-ffb3d1ee720c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4295, + "label": { + "@none": [ + "158v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/61f5f49b-e177-4947-952b-f76f5af7721f/", + "type": "ImageService1" + } + ], + "width": 2834, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/61f5f49b-e177-4947-952b-f76f5af7721f/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7b150b53-6d5e-45de-bcfb-b00f6f00d3d8" + } + ] + }, + { + "height": 4332, + "label": { + "@none": [ + "159r" + ] + }, + "width": 2931, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/565d561a-352a-4b24-ae24-3d8fdaf2b1e2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7d8de94c-631c-4172-93c5-c9d0dc425292", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/565d561a-352a-4b24-ae24-3d8fdaf2b1e2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4332, + "label": { + "@none": [ + "159r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7d8de94c-631c-4172-93c5-c9d0dc425292/", + "type": "ImageService1" + } + ], + "width": 2931, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7d8de94c-631c-4172-93c5-c9d0dc425292/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e93f97ae-3644-4df0-bdb4-e9424f65b666" + } + ] + }, + { + "height": 4264, + "label": { + "@none": [ + "159v" + ] + }, + "width": 2844, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/92eec5d9-9404-472e-a1e9-2df5d12f69cb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2ea48fa0-580f-4eef-8b55-b800ca3f47f0", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/92eec5d9-9404-472e-a1e9-2df5d12f69cb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4264, + "label": { + "@none": [ + "159v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2ea48fa0-580f-4eef-8b55-b800ca3f47f0/", + "type": "ImageService1" + } + ], + "width": 2844, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2ea48fa0-580f-4eef-8b55-b800ca3f47f0/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64b99d66-5dea-4cfd-8619-142881c6f1ff" + } + ] + }, + { + "height": 4346, + "label": { + "@none": [ + "160r" + ] + }, + "width": 2949, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/82d85530-dc09-458b-bdce-185565da3767", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/32c519c1-4f04-487b-a077-c1e83c6f18d8", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/82d85530-dc09-458b-bdce-185565da3767", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4346, + "label": { + "@none": [ + "160r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/32c519c1-4f04-487b-a077-c1e83c6f18d8/", + "type": "ImageService1" + } + ], + "width": 2949, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/32c519c1-4f04-487b-a077-c1e83c6f18d8/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b49a88b2-f26a-4904-9eb4-f55fc71e15fd" + } + ] + }, + { + "height": 4317, + "label": { + "@none": [ + "160v" + ] + }, + "width": 2811, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d3f950e0-a1c9-4f6f-ae16-81001a94c8d0", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/6e879d7d-eefc-4c13-b310-92bad833a599", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d3f950e0-a1c9-4f6f-ae16-81001a94c8d0", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4317, + "label": { + "@none": [ + "160v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/6e879d7d-eefc-4c13-b310-92bad833a599/", + "type": "ImageService1" + } + ], + "width": 2811, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/6e879d7d-eefc-4c13-b310-92bad833a599/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6dd479e-79cc-4d59-a038-c0ab4f5ed174" + } + ] + }, + { + "height": 4341, + "label": { + "@none": [ + "161r" + ] + }, + "width": 2874, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/40f73b6f-df5d-4775-bcf2-faf89ad889f1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/3b3d9768-4566-4d2f-b791-5faef23be823", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/40f73b6f-df5d-4775-bcf2-faf89ad889f1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4341, + "label": { + "@none": [ + "161r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/3b3d9768-4566-4d2f-b791-5faef23be823/", + "type": "ImageService1" + } + ], + "width": 2874, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/3b3d9768-4566-4d2f-b791-5faef23be823/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a39599db-b560-4c88-b133-0d4a9b345187" + } + ] + }, + { + "height": 4288, + "label": { + "@none": [ + "161v" + ] + }, + "width": 2812, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/03f4c07f-93ae-4c03-a5cd-680e45a68657", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/a25e9e5b-73e7-4ef6-9a45-bceb5cf53992", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/03f4c07f-93ae-4c03-a5cd-680e45a68657", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4288, + "label": { + "@none": [ + "161v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/a25e9e5b-73e7-4ef6-9a45-bceb5cf53992/", + "type": "ImageService1" + } + ], + "width": 2812, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/a25e9e5b-73e7-4ef6-9a45-bceb5cf53992/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69870575-223d-4592-bbf0-0b1398f19ef7" + } + ] + }, + { + "height": 4389, + "label": { + "@none": [ + "162r" + ] + }, + "width": 2883, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/02b1ed35-be31-4c8b-8caf-4e4d875f5813", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f4f41736-3705-43f7-a743-0720aa4ec2f3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/02b1ed35-be31-4c8b-8caf-4e4d875f5813", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4389, + "label": { + "@none": [ + "162r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f4f41736-3705-43f7-a743-0720aa4ec2f3/", + "type": "ImageService1" + } + ], + "width": 2883, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f4f41736-3705-43f7-a743-0720aa4ec2f3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7fa7d6b7-cbf0-4949-9495-da0fbf26baf8" + } + ] + }, + { + "height": 4312, + "label": { + "@none": [ + "162v" + ] + }, + "width": 2820, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6fdf1b0c-52ab-43dd-826d-5dcd90616823", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/74618658-a2ae-4ad4-a92f-59e4badd997e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6fdf1b0c-52ab-43dd-826d-5dcd90616823", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4312, + "label": { + "@none": [ + "162v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/74618658-a2ae-4ad4-a92f-59e4badd997e/", + "type": "ImageService1" + } + ], + "width": 2820, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/74618658-a2ae-4ad4-a92f-59e4badd997e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/56059afe-efd2-4426-9a19-12af25a88499" + } + ] + }, + { + "height": 4379, + "label": { + "@none": [ + "163r" + ] + }, + "width": 2897, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/5ae77269-c85d-414d-9038-c43f7a052690", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e567a3d3-69cc-4711-a1dd-c22a6ccced3e", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/5ae77269-c85d-414d-9038-c43f7a052690", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4379, + "label": { + "@none": [ + "163r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e567a3d3-69cc-4711-a1dd-c22a6ccced3e/", + "type": "ImageService1" + } + ], + "width": 2897, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e567a3d3-69cc-4711-a1dd-c22a6ccced3e/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd3c465e-47a8-47db-b14f-27d28f77f523" + } + ] + }, + { + "height": 4312, + "label": { + "@none": [ + "163v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c6133d4e-57dc-4d28-aa3a-1acceeb2adce", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2754ba3a-bad5-413c-b817-cfcd51889268", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c6133d4e-57dc-4d28-aa3a-1acceeb2adce", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4312, + "label": { + "@none": [ + "163v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2754ba3a-bad5-413c-b817-cfcd51889268/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2754ba3a-bad5-413c-b817-cfcd51889268/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b1af4ac-18af-4cff-8d96-d46f63611534" + } + ] + }, + { + "height": 4346, + "label": { + "@none": [ + "164r" + ] + }, + "width": 2892, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/47f73890-fff4-4ca8-9dd9-c77417ff5c4e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ed120638-1fa9-446e-9085-eed335f3484b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/47f73890-fff4-4ca8-9dd9-c77417ff5c4e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4346, + "label": { + "@none": [ + "164r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ed120638-1fa9-446e-9085-eed335f3484b/", + "type": "ImageService1" + } + ], + "width": 2892, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ed120638-1fa9-446e-9085-eed335f3484b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29fd796f-7ee5-43e3-921c-bbbf1d4f2267" + } + ] + }, + { + "height": 4323, + "label": { + "@none": [ + "164v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c6dcb14b-9c4a-44a4-a69f-c5fc0b10ab3e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/39793a34-fce5-42be-85ff-202cd607271c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c6dcb14b-9c4a-44a4-a69f-c5fc0b10ab3e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4323, + "label": { + "@none": [ + "164v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/39793a34-fce5-42be-85ff-202cd607271c/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/39793a34-fce5-42be-85ff-202cd607271c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24641e3a-0bb1-45d6-9d97-19a3273451d7" + } + ] + }, + { + "height": 4404, + "label": { + "@none": [ + "165r" + ] + }, + "width": 2928, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2a9421b2-1587-4462-ad51-706b3662d824", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/56ded6e3-e07c-4b29-9a90-1cc5d958d535", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2a9421b2-1587-4462-ad51-706b3662d824", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4404, + "label": { + "@none": [ + "165r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/56ded6e3-e07c-4b29-9a90-1cc5d958d535/", + "type": "ImageService1" + } + ], + "width": 2928, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/56ded6e3-e07c-4b29-9a90-1cc5d958d535/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/add033be-0b5a-44d5-ad6a-a811912f1a88" + } + ] + }, + { + "height": 4331, + "label": { + "@none": [ + "165v" + ] + }, + "width": 2835, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bc6f62f2-1935-430b-9985-615aae321efb", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/51249bdd-12cc-47ca-8e95-5c75398f0297", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bc6f62f2-1935-430b-9985-615aae321efb", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4331, + "label": { + "@none": [ + "165v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/51249bdd-12cc-47ca-8e95-5c75398f0297/", + "type": "ImageService1" + } + ], + "width": 2835, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/51249bdd-12cc-47ca-8e95-5c75398f0297/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8fe8a7d2-26f9-4390-9f7d-e0c688fdd611" + } + ] + }, + { + "height": 4360, + "label": { + "@none": [ + "166r" + ] + }, + "width": 2940, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/42f7cfe3-812d-4064-8582-f5d98ad6372c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/2a78ad50-1fcd-4c00-92d1-4964f986b386", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/42f7cfe3-812d-4064-8582-f5d98ad6372c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4360, + "label": { + "@none": [ + "166r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/2a78ad50-1fcd-4c00-92d1-4964f986b386/", + "type": "ImageService1" + } + ], + "width": 2940, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/2a78ad50-1fcd-4c00-92d1-4964f986b386/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac84803a-7a56-4fab-8cc6-12023911f30d" + } + ] + }, + { + "height": 4307, + "label": { + "@none": [ + "166v" + ] + }, + "width": 2815, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/3997a44e-9a33-4a4c-b3d8-01c6c0188186", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c882e0b1-4c65-4eb9-99c6-c7d198506264", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/3997a44e-9a33-4a4c-b3d8-01c6c0188186", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4307, + "label": { + "@none": [ + "166v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c882e0b1-4c65-4eb9-99c6-c7d198506264/", + "type": "ImageService1" + } + ], + "width": 2815, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c882e0b1-4c65-4eb9-99c6-c7d198506264/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9713854c-7244-4cf4-aace-85b5fe457d4c" + } + ] + }, + { + "height": 4356, + "label": { + "@none": [ + "167r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/6fd46a90-eb74-4ccd-938d-7ff6f15a3b6b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/30cac706-b8fc-4267-90c8-a9b8864ed53d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/6fd46a90-eb74-4ccd-938d-7ff6f15a3b6b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4356, + "label": { + "@none": [ + "167r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/30cac706-b8fc-4267-90c8-a9b8864ed53d/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/30cac706-b8fc-4267-90c8-a9b8864ed53d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b938d2cd-e6ab-406b-a921-2bdd2c551c6b" + } + ] + }, + { + "height": 4307, + "label": { + "@none": [ + "167v" + ] + }, + "width": 2825, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/1f726b4a-bbab-4811-80c8-186e60b4534f", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/826ae579-523a-4126-9c88-1a5b87afe711", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/1f726b4a-bbab-4811-80c8-186e60b4534f", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4307, + "label": { + "@none": [ + "167v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/826ae579-523a-4126-9c88-1a5b87afe711/", + "type": "ImageService1" + } + ], + "width": 2825, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/826ae579-523a-4126-9c88-1a5b87afe711/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f1662c0-5d84-43c8-a2a7-8224d9741857" + } + ] + }, + { + "height": 4351, + "label": { + "@none": [ + "168r" + ] + }, + "width": 2912, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/f1b2526f-0714-4628-85fc-73259994efbe", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/de2372b1-09ba-4308-bb72-e3bc69d82f9b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/f1b2526f-0714-4628-85fc-73259994efbe", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4351, + "label": { + "@none": [ + "168r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/de2372b1-09ba-4308-bb72-e3bc69d82f9b/", + "type": "ImageService1" + } + ], + "width": 2912, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/de2372b1-09ba-4308-bb72-e3bc69d82f9b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/78320343-a0e0-4f73-9e7d-b2318423ea0d" + } + ] + }, + { + "height": 4293, + "label": { + "@none": [ + "168v" + ] + }, + "width": 2806, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/d6d035f3-00d3-4f87-a559-a4c5e9878eb1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/bc7414cc-f004-4afb-afc2-20f4d66048e7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/d6d035f3-00d3-4f87-a559-a4c5e9878eb1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4293, + "label": { + "@none": [ + "168v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/bc7414cc-f004-4afb-afc2-20f4d66048e7/", + "type": "ImageService1" + } + ], + "width": 2806, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/bc7414cc-f004-4afb-afc2-20f4d66048e7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e377885b-38d6-4534-89ab-459f0a88700c" + } + ] + }, + { + "height": 4318, + "label": { + "@none": [ + "169r" + ] + }, + "width": 2921, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4e575a1e-87b7-40f4-9a8f-22d0aaca833d", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/99290e2b-64bc-4415-8b92-4078ba916df7", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4e575a1e-87b7-40f4-9a8f-22d0aaca833d", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4318, + "label": { + "@none": [ + "169r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/99290e2b-64bc-4415-8b92-4078ba916df7/", + "type": "ImageService1" + } + ], + "width": 2921, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/99290e2b-64bc-4415-8b92-4078ba916df7/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f325323-e790-4a34-83ef-f610ff8c1de8" + } + ] + }, + { + "height": 4325, + "label": { + "@none": [ + "169v" + ] + }, + "width": 2808, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4031a98a-6481-4b9c-8a9b-4fdee25b3848", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f038a131-ec7e-455f-ad29-f1c50c04e2c3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4031a98a-6481-4b9c-8a9b-4fdee25b3848", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4325, + "label": { + "@none": [ + "169v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f038a131-ec7e-455f-ad29-f1c50c04e2c3/", + "type": "ImageService1" + } + ], + "width": 2808, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f038a131-ec7e-455f-ad29-f1c50c04e2c3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1a59ca7-ce53-438e-b782-5cbc9ede7d72" + } + ] + }, + { + "height": 4342, + "label": { + "@none": [ + "170r" + ] + }, + "width": 2864, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/2acc68cb-e4db-460a-9bb7-e2bf3a3ee66a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d6a447dc-ace1-40b8-8684-9c93589c6ce4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/2acc68cb-e4db-460a-9bb7-e2bf3a3ee66a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4342, + "label": { + "@none": [ + "170r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d6a447dc-ace1-40b8-8684-9c93589c6ce4/", + "type": "ImageService1" + } + ], + "width": 2864, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d6a447dc-ace1-40b8-8684-9c93589c6ce4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d4115ff-ab7b-40ef-aed5-a9f3f195c2b7" + } + ] + }, + { + "height": 4321, + "label": { + "@none": [ + "170v" + ] + }, + "width": 2835, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/232fbedb-710a-410d-9446-a0eef30ac745", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/db5df4b3-89d1-4450-9345-51b53f1799e3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/232fbedb-710a-410d-9446-a0eef30ac745", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4321, + "label": { + "@none": [ + "170v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/db5df4b3-89d1-4450-9345-51b53f1799e3/", + "type": "ImageService1" + } + ], + "width": 2835, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/db5df4b3-89d1-4450-9345-51b53f1799e3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbd41da7-6609-400a-b4ee-8f5e82aa524b" + } + ] + }, + { + "height": 4336, + "label": { + "@none": [ + "171r" + ] + }, + "width": 2854, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/918ff66b-2201-4c8c-bea2-bd6ce3de29a9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/8b8a9875-efe3-47f6-b064-db7ce80494ac", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/918ff66b-2201-4c8c-bea2-bd6ce3de29a9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4336, + "label": { + "@none": [ + "171r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/8b8a9875-efe3-47f6-b064-db7ce80494ac/", + "type": "ImageService1" + } + ], + "width": 2854, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/8b8a9875-efe3-47f6-b064-db7ce80494ac/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6af47b34-10b8-4a18-a0ca-cad56bb61be1" + } + ] + }, + { + "height": 4321, + "label": { + "@none": [ + "171v" + ] + }, + "width": 2830, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e213ab89-790e-41b9-986b-bed32daa3690", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/4cf0be4d-ef56-4c49-a7e1-886d9995adc6", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e213ab89-790e-41b9-986b-bed32daa3690", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4321, + "label": { + "@none": [ + "171v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/4cf0be4d-ef56-4c49-a7e1-886d9995adc6/", + "type": "ImageService1" + } + ], + "width": 2830, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/4cf0be4d-ef56-4c49-a7e1-886d9995adc6/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d057d0c0-3665-4899-9a76-1c0adbf5769f" + } + ] + }, + { + "height": 4332, + "label": { + "@none": [ + "172r" + ] + }, + "width": 2893, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/30b7c994-f2a5-4d59-a4e8-83cb0670609b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/224eaa68-b8bd-4096-aa4b-f0d2f9b4b5f3", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/30b7c994-f2a5-4d59-a4e8-83cb0670609b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4332, + "label": { + "@none": [ + "172r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/224eaa68-b8bd-4096-aa4b-f0d2f9b4b5f3/", + "type": "ImageService1" + } + ], + "width": 2893, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/224eaa68-b8bd-4096-aa4b-f0d2f9b4b5f3/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1aed71df-aeee-45e6-89e6-00addb95bed4" + } + ] + }, + { + "height": 4336, + "label": { + "@none": [ + "172v" + ] + }, + "width": 2821, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/4202af7e-8167-48c0-8dfd-5022d0052db1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/7c5876e0-9e21-45a0-9e51-92a180d0673a", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/4202af7e-8167-48c0-8dfd-5022d0052db1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4336, + "label": { + "@none": [ + "172v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/7c5876e0-9e21-45a0-9e51-92a180d0673a/", + "type": "ImageService1" + } + ], + "width": 2821, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/7c5876e0-9e21-45a0-9e51-92a180d0673a/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9259064c-e24c-4eb6-95ca-3305b13a922c" + } + ] + }, + { + "height": 4322, + "label": { + "@none": [ + "173r" + ] + }, + "width": 2821, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/11409a83-c78b-4896-8685-e4492c450623", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/f534f31c-22f0-4736-b7b3-cc0fe37d4bf4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/11409a83-c78b-4896-8685-e4492c450623", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4322, + "label": { + "@none": [ + "173r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/f534f31c-22f0-4736-b7b3-cc0fe37d4bf4/", + "type": "ImageService1" + } + ], + "width": 2821, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/f534f31c-22f0-4736-b7b3-cc0fe37d4bf4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d57566e9-f07f-4095-881c-41a674ca2d64" + } + ] + }, + { + "height": 4355, + "label": { + "@none": [ + "173v" + ] + }, + "width": 2792, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0f374228-eafb-4d06-b5da-613a45ba2d11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/588dff7c-6d06-4732-bb6d-6aa38e5ba783", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0f374228-eafb-4d06-b5da-613a45ba2d11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4355, + "label": { + "@none": [ + "173v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/588dff7c-6d06-4732-bb6d-6aa38e5ba783/", + "type": "ImageService1" + } + ], + "width": 2792, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/588dff7c-6d06-4732-bb6d-6aa38e5ba783/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3bff7add-8587-4b2e-9943-a736854909be" + } + ] + }, + { + "height": 4293, + "label": { + "@none": [ + "174r" + ] + }, + "width": 2877, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/9ce95fdf-b833-4403-b249-d72beaab07cd", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/d6e60cef-fc52-4528-bdfe-ca1927d79d4b", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/9ce95fdf-b833-4403-b249-d72beaab07cd", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4293, + "label": { + "@none": [ + "174r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/d6e60cef-fc52-4528-bdfe-ca1927d79d4b/", + "type": "ImageService1" + } + ], + "width": 2877, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/d6e60cef-fc52-4528-bdfe-ca1927d79d4b/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/baf99bb1-36fc-471c-a66c-92d69b64bf30" + } + ] + }, + { + "height": 4317, + "label": { + "@none": [ + "174v" + ] + }, + "width": 2816, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0396678e-11f4-4902-ba9f-bcf26e2d2cd5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/cd26c355-2a49-49a4-8a83-96c04175a381", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0396678e-11f4-4902-ba9f-bcf26e2d2cd5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4317, + "label": { + "@none": [ + "174v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/cd26c355-2a49-49a4-8a83-96c04175a381/", + "type": "ImageService1" + } + ], + "width": 2816, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/cd26c355-2a49-49a4-8a83-96c04175a381/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81eded45-8fce-4585-8f35-34e2584d6cdd" + } + ] + }, + { + "height": 4318, + "label": { + "@none": [ + "175r" + ] + }, + "width": 2931, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/026e66da-4b0a-4ae3-be44-3c3b13d7811c", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/54c722ed-9654-4921-85d6-896e425f4bdb", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/026e66da-4b0a-4ae3-be44-3c3b13d7811c", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4318, + "label": { + "@none": [ + "175r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/54c722ed-9654-4921-85d6-896e425f4bdb/", + "type": "ImageService1" + } + ], + "width": 2931, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/54c722ed-9654-4921-85d6-896e425f4bdb/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/017b6290-37cc-4976-8854-32e5bd210ecb" + } + ] + }, + { + "height": 4289, + "label": { + "@none": [ + "175v" + ] + }, + "width": 2787, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/82843086-498a-4a29-96c3-834094d66eda", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/91d0e21c-c8a4-4ccb-a18d-14f069b93f76", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/82843086-498a-4a29-96c3-834094d66eda", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4289, + "label": { + "@none": [ + "175v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/91d0e21c-c8a4-4ccb-a18d-14f069b93f76/", + "type": "ImageService1" + } + ], + "width": 2787, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/91d0e21c-c8a4-4ccb-a18d-14f069b93f76/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e025d352-949f-48dc-96be-a73f3d60af61" + } + ] + }, + { + "height": 4351, + "label": { + "@none": [ + "176r" + ] + }, + "width": 2920, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/0b214dfa-e9cb-461d-a893-f0d28a371029", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/05ac10c1-8f5c-4f05-ba19-074d4748f76d", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/0b214dfa-e9cb-461d-a893-f0d28a371029", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4351, + "label": { + "@none": [ + "176r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/05ac10c1-8f5c-4f05-ba19-074d4748f76d/", + "type": "ImageService1" + } + ], + "width": 2920, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/05ac10c1-8f5c-4f05-ba19-074d4748f76d/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d6835e0-a8c9-4774-910e-670ac4793045" + } + ] + }, + { + "height": 4325, + "label": { + "@none": [ + "176v" + ] + }, + "width": 2832, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/bba0df63-05d2-4f66-9dad-702d518d5a2b", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/5862d6ed-1fe6-464f-8429-dfc6a27ffc7c", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/bba0df63-05d2-4f66-9dad-702d518d5a2b", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4325, + "label": { + "@none": [ + "176v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/5862d6ed-1fe6-464f-8429-dfc6a27ffc7c/", + "type": "ImageService1" + } + ], + "width": 2832, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/5862d6ed-1fe6-464f-8429-dfc6a27ffc7c/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65da3c65-d2d3-4f8d-91ac-778a68354a2a" + } + ] + }, + { + "height": 4346, + "label": { + "@none": [ + "177r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/b184f0a3-34a8-48e0-b043-7d7a66876abe", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/9a84c866-1666-46a8-8972-2815b362ed39", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/b184f0a3-34a8-48e0-b043-7d7a66876abe", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4346, + "label": { + "@none": [ + "177r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/9a84c866-1666-46a8-8972-2815b362ed39/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/9a84c866-1666-46a8-8972-2815b362ed39/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c72d94d-2f90-4e22-bbfe-3ba9e35c34d3" + } + ] + }, + { + "height": 4356, + "label": { + "@none": [ + "177v" + ] + }, + "width": 2815, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/c5dc122d-e071-4a54-ad15-74f680ff13e7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/c2ce0847-9f08-4d61-98a1-06ea7d0b1f25", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/c5dc122d-e071-4a54-ad15-74f680ff13e7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4356, + "label": { + "@none": [ + "177v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/c2ce0847-9f08-4d61-98a1-06ea7d0b1f25/", + "type": "ImageService1" + } + ], + "width": 2815, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/c2ce0847-9f08-4d61-98a1-06ea7d0b1f25/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/563eeef9-398a-4518-a7bb-edee2d3c6b85" + } + ] + }, + { + "height": 4337, + "label": { + "@none": [ + "178r" + ] + }, + "width": 2993, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/e2e49974-3790-4c46-9cd8-1470f0ce8eef", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/77e46945-4492-49da-a691-4aeabdfb49dd", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/e2e49974-3790-4c46-9cd8-1470f0ce8eef", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4337, + "label": { + "@none": [ + "178r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/77e46945-4492-49da-a691-4aeabdfb49dd/", + "type": "ImageService1" + } + ], + "width": 2993, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/77e46945-4492-49da-a691-4aeabdfb49dd/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b32b22be-97d7-4401-bac4-4cb638cd3beb" + } + ] + }, + { + "height": 4323, + "label": { + "@none": [ + "178v" + ] + }, + "width": 2806, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/787d8772-f53b-4fe0-bac7-b5e2e25e7a5e", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/e67282bc-dbd0-4844-8c05-e1ebfa2de9c4", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/787d8772-f53b-4fe0-bac7-b5e2e25e7a5e", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4323, + "label": { + "@none": [ + "178v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/e67282bc-dbd0-4844-8c05-e1ebfa2de9c4/", + "type": "ImageService1" + } + ], + "width": 2806, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/e67282bc-dbd0-4844-8c05-e1ebfa2de9c4/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a84f2d7-4d14-42e6-a349-5d4a1b626175" + } + ] + }, + { + "height": 4307, + "label": { + "@none": [ + "179r" + ] + }, + "width": 2959, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/90e69b5d-0ed8-44fd-9a6b-0d416787d53a", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/b0f40c82-1144-4c88-b24a-4b9c494e5aca", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/90e69b5d-0ed8-44fd-9a6b-0d416787d53a", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4307, + "label": { + "@none": [ + "179r" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/b0f40c82-1144-4c88-b24a-4b9c494e5aca/", + "type": "ImageService1" + } + ], + "width": 2959, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/b0f40c82-1144-4c88-b24a-4b9c494e5aca/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa8c1ce1-3d49-4b46-a0d9-3bc4e644f520" + } + ] + }, + { + "height": 4343, + "label": { + "@none": [ + "179v" + ] + }, + "width": 2797, + "type": "Canvas", + "id": "http://manifests.ydc2.yale.edu/canvas/490c7fe5-f10b-4583-8f83-bd34dd9c3516", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://manifests.ydc2.yale.edu/annotation/ceca5156-ad6e-4e2a-ae3f-39ce8aa7c437", + "target": [ + { + "id": "http://manifests.ydc2.yale.edu/canvas/490c7fe5-f10b-4583-8f83-bd34dd9c3516", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4343, + "label": { + "@none": [ + "179v" + ] + }, + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1", + "id": "http://scale.ydc2.yale.edu/iiif/ceca5156-ad6e-4e2a-ae3f-39ce8aa7c437/", + "type": "ImageService1" + } + ], + "width": 2797, + "type": "Image", + "id": "http://scale.ydc2.yale.edu/iiif/ceca5156-ad6e-4e2a-ae3f-39ce8aa7c437/full/full/0/native.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01cc6b0a-af21-471d-9a46-72599cbcf3c3" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/media.nga.gov__public__manifests__nga_highlights.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/media.nga.gov__public__manifests__nga_highlights.json new file mode 100644 index 0000000..933fba4 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/media.nga.gov__public__manifests__nga_highlights.json @@ -0,0 +1,1947 @@ +{ + "logo": [ + { + "id": "https://www.nga.gov/content/dam/ngaweb/imgs/NGAEB.jpg", + "type": "Image" + } + ], + "label": { + "@none": [ + "National Gallery of Art Collection Highlights" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Highlights from the collection of the National Gallery of Art" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "A selection of highlights from the National Gallery of Art" + ] + } + } + ], + "guid": "e61700b6-7cb9-4c14-92ab-4246a345ec71", + "viewingDirection": "left-to-right", + "type": "Manifest", + "id": "https://media.nga.gov/public/manifests/nga_highlights.json", + "behavior": [ + "individuals" + ], + "items": [ + { + "label": { + "@none": [ + "Self-Portrait" + ] + }, + "height": 402, + "width": 307, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/106382.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7bff4492-c4ab-4577-81c9-cfbf64ba3998", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/106382.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 402, + "width": 307, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/237475ab-f40d-40cb-b583-17d44cb8bb9a" + } + ] + }, + { + "label": { + "@none": [ + "Flower Beds in Holland" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1883" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 2086, + "width": 3350, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/61371.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/e1263a0f-e993-4062-930f-6a88ca53dbf5", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/61371.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 325, + "width": 443, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/6/1/3/7/1/61371-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/6/1/3/7/1/61371-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c3e57d1-8af8-4034-88fb-9e82fd75c34e" + } + ] + }, + { + "label": { + "@none": [ + "Farmhouse in Provence" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1888" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 334, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/52178.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1db7bf9d-2eab-487b-ad95-6f356ec91603", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/52178.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 334, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/5/2/1/7/8/52178-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/5/2/1/7/8/52178-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fadbedee-18d2-4f06-897b-62466f9eeb05" + } + ] + }, + { + "label": { + "@none": [ + "La Mousme" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1888" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 401, + "width": 330, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46626.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/af363d81-5e46-4550-838d-9dfe11a5b3d6", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46626.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 3348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/6/2/6/46626-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/6/2/6/46626-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37775726-3988-4c88-8df7-894446223732" + } + ] + }, + { + "label": { + "@none": [ + "The Feast of the Gods" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1513" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 439, + "width": 401, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1138.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/8eaa2294-4613-4069-80d1-4004892b4a25", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1138.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 439, + "width": 401, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/1/3/8/1138-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/1/3/8/1138-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/372ce6a4-82e0-4971-82df-acb1499a386a" + } + ] + }, + { + "label": { + "@none": [ + "Marchesa Brigida Spinola Doria" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1606" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 400, + "width": 260, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46159.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/b179296a-eff1-49e2-b479-e84c0d12af27", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46159.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 400, + "width": 260, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/1/5/9/46159-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/1/5/9/46159-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c57ad18c-0413-4ef5-b393-31f3f33fff70" + } + ] + }, + { + "label": { + "@none": [ + "Laocoon" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1610" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 351, + "width": 443, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/33253.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/084054ff-534d-43df-b69f-e5ec0c28ccbd", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/33253.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 351, + "width": 443, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/3/3/2/5/3/33253-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/3/3/2/5/3/33253-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8252a150-a4da-4201-957f-c3b021f72a80" + } + ] + }, + { + "label": { + "@none": [ + "Marchesa Elena Grimaldi Cattaneo" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1623" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 401, + "width": 224, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1231.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0e51388d-dd46-4596-a479-b3be122b8ed1", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1231.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 401, + "width": 224, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/2/3/1/1231-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/2/3/1/1231-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b319b4d-b624-47a6-b69a-11ab8f85291e" + } + ] + }, + { + "label": { + "@none": [ + "Self-Portrait" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1603" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 400, + "width": 352, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/37003.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/1520a3c4-4fea-4165-97c4-caf63e920007", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/37003.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 400, + "width": 352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/3/7/0/0/3/37003-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/3/7/0/0/3/37003-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e3851fe-8547-416d-91d2-8092fc09f8f8" + } + ] + }, + { + "label": { + "@none": [ + "The Maas at Dordrecht" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1650" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 298, + "width": 442, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/576.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/87b629dd-f067-4dca-b78b-ebb7992363a3", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/576.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 298, + "width": 442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/5/7/6/576-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/5/7/6/576-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/da41314e-16fc-4e20-9c5a-edd523bb88a7" + } + ] + }, + { + "label": { + "@none": [ + "Self-Portrait" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1659" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 402, + "width": 312, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/79.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9af82b2f-cc96-4900-beff-8e130280908b", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/79.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 402, + "width": 312, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/7/9/79-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/7/9/79-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c37422d0-6a11-4b79-afcf-dae2d746c952" + } + ] + }, + { + "label": { + "@none": [ + "Woman Holding a Balance" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1664" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 401, + "width": 355, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1236.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/3979b2b4-3968-414f-8f6b-dd48dd484227", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1236.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 401, + "width": 355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/2/3/6/1236-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/2/3/6/1236-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f068d161-9cfc-440d-b06a-e9df6f7364be" + } + ] + }, + { + "label": { + "@none": [ + "Young Girl Reading" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1770" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 401, + "width": 355, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46303.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9c5f629e-a974-431e-9975-def1c26e4b4d", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46303.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 401, + "width": 355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/3/0/3/46303-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/3/0/3/46303-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a409832a-6daf-4658-b5f9-ee2d9fb6e5e0" + } + ] + }, + { + "label": { + "@none": [ + "Watson and the Shark" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1778" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 351, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46471.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb5c7e1d-6532-4ed5-8ebe-56a311d2202a", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46471.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 351, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/4/7/1/46471-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/4/7/1/46471-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/787fb77b-8a95-4dc3-ab12-34142748e3ea" + } + ] + }, + { + "label": { + "@none": [ + "The Emperor Napoleon in His Study at the Tuileries" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1812" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 402, + "width": 245, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46114.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4e1a2afd-8e95-4478-b97e-63af6a371648", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46114.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 402, + "width": 245, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/1/1/4/46114-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/1/1/4/46114-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3b643e0c-5a31-4d02-9225-8a16c2052745" + } + ] + }, + { + "label": { + "@none": [ + "Wivenhoe Park, Essex" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1816" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 240, + "width": 443, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1147.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aa3a0629-d091-46f4-9adb-25f2d439ba2f", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1147.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 240, + "width": 443, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/1/4/7/1147-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/1/4/7/1147-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84b45f70-93e3-4013-993a-131ee45b4970" + } + ] + }, + { + "label": { + "@none": [ + "Keelmen Heaving in Coals by Moonlight" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1835" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 329, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/1225.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/ff1ade8b-7e0e-44cb-af25-193de8a9b777", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/1225.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 329, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/2/2/5/1225-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/2/2/5/1225-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60d313e6-c152-4f43-bc3c-dbf136edfb1d" + } + ] + }, + { + "label": { + "@none": [ + "The Voyage of Life: Childhood" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1842" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 299, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/52450.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/00e26b90-6df9-46da-bd3c-e46d3ce6a089", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/52450.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 299, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/5/2/4/5/0/52450-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/5/2/4/5/0/52450-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/263d4b5a-5654-4749-ac10-2d8713354c3f" + } + ] + }, + { + "label": { + "@none": [ + "Symphony in White, No. 1: The White Girl" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1862" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 402, + "width": 201, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/12198.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9e9fbdd7-036f-4a8a-9f47-c1d1e03a7455", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/12198.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 402, + "width": 201, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/2/1/9/8/12198-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/2/1/9/8/12198-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1692acc-1ea7-4fde-a104-872f30de3cb8" + } + ] + }, + { + "label": { + "@none": [ + "The Railway" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1873" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 360, + "width": 442, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/43624.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/aafa8b8b-2dda-4612-86d6-0deff5200e92", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/43624.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 360, + "width": 442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/3/6/2/4/43624-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/3/6/2/4/43624-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f06a30fc-4428-49c4-ac80-7622f77f39ee" + } + ] + }, + { + "label": { + "@none": [ + "The Japanese Footbridge" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1899" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 356, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/74796.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/09825c32-892a-462c-89b1-3b44f588ea58", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/74796.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 356, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/7/4/7/9/6/74796-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/7/4/7/9/6/74796-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/317834a8-a1c0-4cf4-a778-870e35df5403" + } + ] + }, + { + "label": { + "@none": [ + "The Olive Orchard" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1889" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 349, + "width": 442, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/46627.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/9df859d2-98aa-4f4d-8de8-c2b15f2c867a", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/46627.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 349, + "width": 442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/4/6/6/2/7/46627-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/4/6/6/2/7/46627-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d7fb320-5b5d-4c86-94b3-18d0108d8f98" + } + ] + }, + { + "label": { + "@none": [ + "Forty-two Kids" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1907" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 349, + "width": 442, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/134485.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2918896c-6767-4b8f-bc7e-f14e12a5e2ce", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/134485.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 305, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/3/4/4/8/5/134485-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/3/4/4/8/5/134485-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd6aacbe-cd4d-4e85-8895-ac1afe7b23d2" + } + ] + }, + { + "label": { + "@none": [ + "Woman Viewed from Behind (Visit to a Museum)" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "c. 1879-1885" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 400, + "width": 372, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/66409.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2333defa-9b22-4503-b77b-c03425b12f2e", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/66409.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 400, + "width": 372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/6/6/4/0/9/66409-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/6/6/4/0/9/66409-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15799b3f-8958-4767-bd27-76caee0f5ee0" + } + ] + }, + { + "label": { + "@none": [ + "Portrait of a Gentleman" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1520" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 400, + "width": 300, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/398.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/236944ac-69f8-4cc6-9f9c-45ac9317f0de", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/398.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 400, + "width": 300, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/3/9/8/398-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/3/9/8/398-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/918e6eb7-d8d9-48a1-82a4-e99707ba9f0a" + } + ] + }, + { + "label": { + "@none": [ + "Still Life of Oranges and Lemons with Blue Gloves" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1889" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Painting" + ] + } + } + ], + "height": 340, + "width": 441, + "type": "Canvas", + "id": "https://media.nga.gov/public/manifests/canvas/164923.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dcfb77ca-c94d-4f7c-bd92-ab3d146c5553", + "target": [ + { + "id": "https://media.nga.gov/public/manifests/canvas/164923.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 340, + "width": 441, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://media.nga.gov/iiif/public/objects/1/6/4/9/2/3/164923-primary-0-nativeres.ptif", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://media.nga.gov/iiif/public/objects/1/6/4/9/2/3/164923-primary-0-nativeres.ptif/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/436fcbf1-1fa0-4985-bd43-9c6ba51f190c" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/ncsu-libraries-manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/ncsu-libraries-manifest.json new file mode 100644 index 0000000..b35db8d --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/ncsu-libraries-manifest.json @@ -0,0 +1,1753 @@ +{ + "label": { + "@none": [ + "Nubian Message, November 30, 1992" + ] + }, + "logo": [ + { + "type": "Image", + "id": "https://d.lib.ncsu.edu/collections/assets/ncsu-libraries-white-logo-placement-8e3a4e918262aa5993b0e0475989b02f.jpg" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Nubian Message, November 30, 1992" + ] + } + }, + { + "label": { + "@none": [ + "Creator" + ] + }, + "value": { + "@none": [ + "Nubian Message (Raleigh, N.C.) (Publisher)" + ] + } + }, + { + "label": { + "@none": [ + "Created Date" + ] + }, + "value": { + "@none": [ + "1992-11-30" + ] + } + }, + { + "label": { + "@none": [ + "URL" + ] + }, + "value": { + "@none": [ + "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30" + ] + } + }, + { + "label": { + "@none": [ + "" + ] + }, + "value": { + "@none": [ + "IIIF drag & drop (About IIIF)" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "https://d.lib.ncsu.edu/collections/about#rights_and_use" + ] + } + } + ], + "thumbnail": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30/full/150,/0/default.jpg" + } + ], + "service": [ + { + "profile": "http://iiif.io/api/search/0/search", + "label": "Search within this thing", + "service": [ + { + "profile": "http://iiif.io/api/search/0/autocomplete", + "label": "Get suggested words", + "id": "https://ocr.lib.ncsu.edu/suggest/nubian-message-1992-11-30", + "type": "AutoCompleteService1" + } + ], + "id": "https://ocr.lib.ncsu.edu/search/nubian-message-1992-11-30", + "type": "SearchService1" + } + ], + "seeAlso": [ + { + "format": "text/xml", + "label": { + "@none": [ + "Dublin Core XML via OAI-PMH" + ] + }, + "type": "Dataset", + "id": "https://d.lib.ncsu.edu/collections/catalog/oai?identifier=ncsul%2Fnubian-message-1992-11-30&metadataPrefix=oai_dc&verb=GetRecord" + }, + { + "format": "application/ld+json", + "profile": "https://schema.org", + "label": { + "@none": [ + "Schema.org metadata as JSON-LD" + ] + }, + "type": "Dataset", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/schemaorg.json" + } + ], + "dcterms:modified": "2018-05-04T19:54:03.000Z", + "dcterms:created": "2016-02-19T16:47:04.000Z", + "type": "Manifest", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30/manifest.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "The Nubian Message (LH1 .H6 N83), Special Collections Research Center at NCSU Libraries" + ] + } + }, + "homepage": { + "format": "text/html", + "label": { + "@none": [ + "HTML page for the resource" + ] + }, + "dcterms:modified": "2018-05-04T19:59:35.01Z", + "type": "Text", + "id": "https://d.lib.ncsu.edu/collections/catalog/nubian-message-1992-11-30" + }, + "items": [ + { + "width": 4703, + "height": 5639, + "label": { + "@none": [ + "1" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0001/nubian-message-1992-11-30_0001-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0001", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0001/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/207a5c53-5a00-4edb-8253-73f9126d5077" + } + ] + }, + { + "width": 4703, + "height": 5630, + "label": { + "@none": [ + "2" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0002", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0002/nubian-message-1992-11-30_0002-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0002/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0002", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1401, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0002", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0002/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a65dfe60-d9da-4052-8b50-2d25e39e47ca" + } + ] + }, + { + "width": 4722, + "height": 5646, + "label": { + "@none": [ + "3" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0003", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0003/nubian-message-1992-11-30_0003-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0003/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0003", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1399, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0003", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0003/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/229fb135-7adb-4165-a38e-948dacc5eed6" + } + ] + }, + { + "width": 4697, + "height": 5622, + "label": { + "@none": [ + "4" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0004", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0004/nubian-message-1992-11-30_0004-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0004/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0004", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0004", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0004/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c060b274-0e46-4d91-9a94-8346dadbeb1b" + } + ] + }, + { + "width": 4712, + "height": 5644, + "label": { + "@none": [ + "5" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0005", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0005/nubian-message-1992-11-30_0005-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0005/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0005", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1401, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0005", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0005/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1ca7673-6281-4ce9-abbe-3ba7d086c424" + } + ] + }, + { + "width": 4692, + "height": 5619, + "label": { + "@none": [ + "6" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0006", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0006/nubian-message-1992-11-30_0006-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0006/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0006", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1401, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0006", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0006/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38b00c8f-f934-45af-b9ec-3cd03e373b18" + } + ] + }, + { + "width": 4716, + "height": 5632, + "label": { + "@none": [ + "7" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0007", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0007/nubian-message-1992-11-30_0007-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0007/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0007", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0007", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0007/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87b178dd-bd1a-4e55-84dc-d3a02ff47ece" + } + ] + }, + { + "width": 4678, + "height": 5615, + "label": { + "@none": [ + "8" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0008", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0008/nubian-message-1992-11-30_0008-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0008/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0008", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1404, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0008", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0008/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4918d5be-70d2-4451-8f7e-15ea17fc462d" + } + ] + }, + { + "width": 4726, + "height": 5622, + "label": { + "@none": [ + "9" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0009", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0009/nubian-message-1992-11-30_0009-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0009/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0009", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1392, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0009", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0009/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1189e9ce-58ac-4b76-805e-9e3ee45f52c8" + } + ] + }, + { + "width": 4698, + "height": 5614, + "label": { + "@none": [ + "10" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0010/nubian-message-1992-11-30_0010-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0010", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1398, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0010", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0010/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92f52714-23d5-48fb-9eff-ac69682e0af4" + } + ] + }, + { + "width": 4718, + "height": 5620, + "label": { + "@none": [ + "11" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0011", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0011/nubian-message-1992-11-30_0011-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0011/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0011", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1394, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0011", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0011/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54d739b0-76ef-4c7c-abf5-03bda0105f17" + } + ] + }, + { + "width": 4716, + "height": 5626, + "label": { + "@none": [ + "12" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0012", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0012/nubian-message-1992-11-30_0012-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0012/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0012", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1396, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0012", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0012/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fcafbb67-f1cb-47bd-a0b6-561f6f683a2c" + } + ] + }, + { + "width": 4726, + "height": 5612, + "label": { + "@none": [ + "13" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0013", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0013/nubian-message-1992-11-30_0013-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0013/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0013", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0013", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0013/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ec31c24-b34d-4562-a524-73ef1eab8b8d" + } + ] + }, + { + "width": 4720, + "height": 5614, + "label": { + "@none": [ + "14" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0014", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0014/nubian-message-1992-11-30_0014-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0014/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0014", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1392, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0014", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0014/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a3e08dd6-f168-4471-9b98-75048684b5f4" + } + ] + }, + { + "width": 4710, + "height": 5612, + "label": { + "@none": [ + "15" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0015", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0015/nubian-message-1992-11-30_0015-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0015/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0015", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1394, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0015", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0015/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/07be8bb0-1728-46f7-bcd6-fb4055312022" + } + ] + }, + { + "width": 4682, + "height": 5628, + "label": { + "@none": [ + "16" + ] + }, + "seeAlso": [ + { + "format": "text/vnd.hocr+html", + "profile": "https://github.com/kba/hocr-spec/blob/master/hocr-spec.md", + "label": { + "@none": [ + "hOCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016.hocr" + }, + { + "format": "text/plain", + "label": { + "@none": [ + "plain text OCR" + ] + }, + "type": "Dataset", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016.txt" + } + ], + "type": "Canvas", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0016", + "annotations": [ + { + "label": { + "@none": [ + "Text of this page (word level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016-annotation-list-word.json" + }, + { + "label": { + "@none": [ + "Text of this page (line level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016-annotation-list-line.json" + }, + { + "label": { + "@none": [ + "Text of this page (paragraph level)" + ] + }, + "type": "AnnotationPage", + "id": "https://ocr.lib.ncsu.edu/ocr/nu/nubian-message-1992-11-30_0016/nubian-message-1992-11-30_0016-annotation-list-paragraph.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0016/image", + "target": [ + { + "id": "https://d.lib.ncsu.edu/collections/canvas/nubian-message-1992-11-30_0016", + "type": "Canvas" + } + ], + "body": [ + { + "width": 1170, + "height": 1406, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0016", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://iiif.lib.ncsu.edu/iiif/nubian-message-1992-11-30_0016/full/1170,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/699d41bf-5d71-4c20-87c0-01c15709a64c" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/nlw-manuscript-manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/nlw-manuscript-manifest.json new file mode 100644 index 0000000..15f41b9 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/nlw-manuscript-manifest.json @@ -0,0 +1,13953 @@ +{ + "label": { + "@none": [ + "Cardiganshire Constabulary register of criminals" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Title" + ], + "cy-GB": [ + "Teitl" + ] + }, + "value": { + "@none": [ + "Cardiganshire Constabulary register of criminals" + ] + } + }, + { + "label": { + "en": [ + "Author" + ], + "cy-GB": [ + "Awdur" + ] + }, + "value": { + "@none": [ + "Cardiganshire Constabulary" + ] + } + }, + { + "label": { + "en": [ + "Date" + ], + "cy-GB": [ + "Dyddiad" + ] + }, + "value": { + "@none": [ + "1897-1933" + ] + } + }, + { + "label": { + "en": [ + "Physical description" + ], + "cy-GB": [ + "Disgrifiad ffisegol" + ] + }, + "value": { + "@none": [ + "1 241ff. (ff.116-237 blank; leaves cut out after ff.80, 83) Vellum over boards, rebacked at NLW. 22.5 x 18 cm." + ] + } + }, + { + "label": { + "en": [ + "Permalink" + ], + "cy-GB": [ + "Dolen barhaol" + ] + }, + "value": { + "@none": [ + "http://hdl.handle.net/10107/4389767" + ] + } + }, + { + "label": { + "en": [ + "Repository" + ], + "cy-GB": [ + "Ystorfa" + ] + }, + "value": { + "en": [ + "This content has been digitised by The National Library of Wales" + ], + "cy-GB": [ + "Digidwyd y cynnwys hwn gan Lyfrgell Genedlaethol Cymru" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "http://hdl.handle.net/10107/PublicDomainMark" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Register of criminals apprehended by Cardiganshire Constabulary, 1897-1933 with physical descriptions of prisoners and details of previous convictions. Photographs are included of most of those sentenced between 1897 and 1909." + ] + } + } + ], + "logo": [ + { + "service": [ + { + "profile": " http://iiif.io/api/image/2/level1.json", + "id": " https://damsssl.llgc.org.uk/iiif/2.0/image/logo", + "type": "Service" + } + ], + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg" + } + ], + "type": "Manifest", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/manifest.json", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Llyfrgell Genedlaethol Cymru – The National Library of Wales" + ] + } + }, + "items": [ + { + "label": { + "@none": [ + "front cover" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389768.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389768.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389768", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389768.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64d80679-934e-4244-9fc4-2262ed0f1271" + } + ] + }, + { + "label": { + "@none": [ + "1 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389769.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389769.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389769.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389769", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389769.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b2432f7-afd8-45bd-abcb-05d913849d26" + } + ] + }, + { + "label": { + "@none": [ + "1 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389770.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389770.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389770.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389770", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389770.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84e57106-a48f-4a6b-a8b1-ad8f0c7ef61e" + } + ] + }, + { + "label": { + "@none": [ + "2 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389771.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389771.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389771.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389771", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389771.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/620864ca-fdab-4c46-8a15-7f58d8d8056e" + } + ] + }, + { + "label": { + "@none": [ + "2 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389772.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389772.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389772.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389772", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389772.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/957c58cb-2fa4-4a08-bb74-a3745a8f686f" + } + ] + }, + { + "label": { + "@none": [ + "3 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389773.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389773.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389773.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389773", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389773.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e903d4b-78ad-4fb9-ab73-fa995adc1d57" + } + ] + }, + { + "label": { + "@none": [ + "3 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389774.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389774.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389774.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389774", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389774.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2787cc8-9755-4b6d-a556-8efed9ffbfe7" + } + ] + }, + { + "label": { + "@none": [ + "4 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389775.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389775.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389775.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389775", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389775.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8432f3d7-f858-49a1-9463-b4d7cabfd74f" + } + ] + }, + { + "label": { + "@none": [ + "4 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389776.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389776.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389776.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389776", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389776.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5191182a-d15d-421f-865c-a40820443eab" + } + ] + }, + { + "label": { + "@none": [ + "5 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389777.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389777.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389777.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389777", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389777.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/878428a5-2d60-40d3-bd58-ed3cb7a8ce0e" + } + ] + }, + { + "label": { + "@none": [ + "5 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389778.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389778.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389778.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389778", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389778.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c822192a-8943-4538-b8a3-a97351fdcf11" + } + ] + }, + { + "label": { + "@none": [ + "6 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389779.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389779.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389779.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389779", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389779.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/20a24848-fda1-4fb2-b552-1f3bf896aef9" + } + ] + }, + { + "label": { + "@none": [ + "6 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389780.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389780.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389780.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389780", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389780.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c64c7a9-4697-4f3e-bf25-96101b47a367" + } + ] + }, + { + "label": { + "@none": [ + "7 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389781.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389781.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389781.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389781", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389781.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/66ee7054-858d-4ba7-adcf-b7b891ee90e8" + } + ] + }, + { + "label": { + "@none": [ + "7 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389782.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389782.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389782.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389782", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389782.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19cf1f40-2b1b-42c5-849f-d6408d824a44" + } + ] + }, + { + "label": { + "@none": [ + "8 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389783.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389783.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389783.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389783", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389783.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/402bbb84-085f-41cd-831a-ab32f6cbf17e" + } + ] + }, + { + "label": { + "@none": [ + "8 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389784.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389784.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389784.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389784", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389784.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72cd59e8-a0c3-4dec-a41b-3b27697901c7" + } + ] + }, + { + "label": { + "@none": [ + "9 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389785.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389785.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389785.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389785", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389785.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/77efba9c-e993-4f9d-9be8-d9a319deccb1" + } + ] + }, + { + "label": { + "@none": [ + "9 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389786.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389786.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389786.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389786", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389786.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae3bc186-5787-4fbe-9ebf-64ba4821d31a" + } + ] + }, + { + "label": { + "@none": [ + "10 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389787.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389787.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389787.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389787", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389787.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc55d0c4-5bc1-4ff4-b08d-259148eae750" + } + ] + }, + { + "label": { + "@none": [ + "10 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389788.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389788.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389788.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389788", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389788.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cd83f6ae-f29f-490f-91b3-592b5a224c51" + } + ] + }, + { + "label": { + "@none": [ + "11 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389789.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389789.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389789.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389789", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389789.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aca5d8a5-fb0f-49d5-ad54-5927776d1272" + } + ] + }, + { + "label": { + "@none": [ + "11 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389790.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389790.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389790.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389790", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389790.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8cf7a30b-ffc1-4def-8fb7-cdb0914df9d3" + } + ] + }, + { + "label": { + "@none": [ + "12 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389791.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389791.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389791.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389791", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389791.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61dc788d-102e-44f3-95ca-e02a1b5e1909" + } + ] + }, + { + "label": { + "@none": [ + "12 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389792.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389792.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389792.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389792", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389792.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/130329dc-7b14-473c-aa20-d34a5fa0a7a1" + } + ] + }, + { + "label": { + "@none": [ + "13 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389793.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389793.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389793.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389793", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389793.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba9b3374-2963-4648-b748-e514203b8d33" + } + ] + }, + { + "label": { + "@none": [ + "13 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389794.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389794.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389794.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389794", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389794.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8fc8ff7f-652d-44a2-a8db-17e6f8e10bef" + } + ] + }, + { + "label": { + "@none": [ + "14 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389795.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389795.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389795.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389795", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389795.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/139df885-d2df-424c-bb64-7377b243e5f4" + } + ] + }, + { + "label": { + "@none": [ + "14 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389796.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389796.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389796.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389796", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389796.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6089f70-4133-49dd-8bab-9e067552ccd2" + } + ] + }, + { + "label": { + "@none": [ + "15 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389797.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389797.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389797.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389797", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389797.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75f6cb26-ba16-4cde-9450-3cc9349205e9" + } + ] + }, + { + "label": { + "@none": [ + "15 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389798.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389798.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389798.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389798", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389798.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29e37dbc-ea73-4ffb-97d5-63afea79d616" + } + ] + }, + { + "label": { + "@none": [ + "16 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389799.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389799.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389799.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389799", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389799.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8eb93942-fd89-42f4-8cff-347b57131bec" + } + ] + }, + { + "label": { + "@none": [ + "16 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389800.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389800.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389800.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389800", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389800.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff99a54f-6479-46c9-bf85-eaeed8b4a6a8" + } + ] + }, + { + "label": { + "@none": [ + "17 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389801.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389801.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389801.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389801", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389801.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5dbd7440-aa2d-4e78-90b2-4a6cda9d97ef" + } + ] + }, + { + "label": { + "@none": [ + "17 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389802.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389802.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389802.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389802", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389802.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c80f4f1-1385-4024-9627-38f85a4b16d5" + } + ] + }, + { + "label": { + "@none": [ + "18 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389803.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389803.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389803.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389803", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389803.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4af60f98-0415-4316-be90-e493ff8ea265" + } + ] + }, + { + "label": { + "@none": [ + "18 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389804.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389804.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389804.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389804", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389804.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f308e2a-c89c-4fd6-a48b-1ad28b66c7a7" + } + ] + }, + { + "label": { + "@none": [ + "19 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389805.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389805.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389805.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389805", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389805.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7143a088-d1ae-461e-baac-0380b097d380" + } + ] + }, + { + "label": { + "@none": [ + "19 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389806.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389806.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389806.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389806", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389806.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4d53d0d-7b70-4fa8-8064-4acc675b1e80" + } + ] + }, + { + "label": { + "@none": [ + "20 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389807.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389807.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389807.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389807", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389807.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87681da4-d2cb-46f3-9026-fef72badc72f" + } + ] + }, + { + "label": { + "@none": [ + "20 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389808.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389808.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389808.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389808", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389808.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3dbbccdd-630d-4de9-902f-f0f50b524886" + } + ] + }, + { + "label": { + "@none": [ + "21 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389809.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389809.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389809.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389809", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389809.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b3ff38e5-1b09-4f82-9111-721156b7f17d" + } + ] + }, + { + "label": { + "@none": [ + "21 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389810.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389810.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389810.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389810", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389810.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d9ffbf4-f92b-48eb-b5a6-ee491911f848" + } + ] + }, + { + "label": { + "@none": [ + "22 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389811.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389811.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389811.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389811", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389811.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c365bcab-21ff-40de-99d8-35ff653142da" + } + ] + }, + { + "label": { + "@none": [ + "22 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389812.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389812.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389812.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389812", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389812.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1021d20-af70-47a0-8d53-41de8563043e" + } + ] + }, + { + "label": { + "@none": [ + "23 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389813.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389813.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389813.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389813", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389813.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/700d6bae-bec9-4e47-a0f9-d1594f7e962e" + } + ] + }, + { + "label": { + "@none": [ + "23 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389814.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389814.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389814.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389814", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389814.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d48364a-03b1-4999-b53f-f995607636a1" + } + ] + }, + { + "label": { + "@none": [ + "24 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389815.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389815.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389815.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389815", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389815.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5908c3eb-5c7a-41ee-9771-854633f140f7" + } + ] + }, + { + "label": { + "@none": [ + "24 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389816.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389816.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389816.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389816", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389816.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/908b5ca6-2c8f-4c36-ab5f-f65d6104353a" + } + ] + }, + { + "label": { + "@none": [ + "25 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389817.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389817.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389817.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389817", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389817.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dfea4a15-c8f2-4fa3-9f95-1cedc9a736c8" + } + ] + }, + { + "label": { + "@none": [ + "25 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389818.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389818.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389818.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389818", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389818.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25aa1717-25fa-4c7d-9de6-e27b0d21f8a6" + } + ] + }, + { + "label": { + "@none": [ + "26 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389819.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389819.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389819.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389819", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389819.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3bbb6ef5-0eb5-4955-8bca-11b508e3203a" + } + ] + }, + { + "label": { + "@none": [ + "26 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389820.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389820.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389820.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389820", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389820.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/704d1579-2983-4cf9-930e-afca3bff2cde" + } + ] + }, + { + "label": { + "@none": [ + "27 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389821.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389821.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389821.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389821", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389821.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/90ecedd9-38ea-4f40-9e6e-f9ab73b93b93" + } + ] + }, + { + "label": { + "@none": [ + "27 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389822.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389822.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389822.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389822", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389822.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bccd077e-a11d-4b8d-8757-be77125b8c23" + } + ] + }, + { + "label": { + "@none": [ + "28 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389823.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389823.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389823.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389823", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389823.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50f4c688-9941-404f-ae7f-0d8c6b846486" + } + ] + }, + { + "label": { + "@none": [ + "28 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389824.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389824.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389824.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389824", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389824.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f66ff1f5-36c2-4e8d-9457-24e32d9266cb" + } + ] + }, + { + "label": { + "@none": [ + "29 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389825.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389825.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389825.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389825", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389825.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ca8c717-ce7d-4190-95bd-5e8159030907" + } + ] + }, + { + "label": { + "@none": [ + "29 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389826.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389826.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389826.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389826", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389826.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d418ff73-7a4d-48be-b8aa-d679bd09700c" + } + ] + }, + { + "label": { + "@none": [ + "30 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389827.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389827.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389827.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389827", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389827.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33aa90ac-131b-4a2b-92b5-02ca4179b416" + } + ] + }, + { + "label": { + "@none": [ + "30 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389828.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389828.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389828.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389828", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389828.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd9c9230-b912-4a7a-b499-37407c91c728" + } + ] + }, + { + "label": { + "@none": [ + "31 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389829.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389829.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389829.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389829", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389829.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5966e40-c0a9-448d-8aaa-f1fe50ecb0eb" + } + ] + }, + { + "label": { + "@none": [ + "31 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389830.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389830.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389830.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389830", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389830.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/678aeb64-2def-4481-b359-3dc302cd2bd2" + } + ] + }, + { + "label": { + "@none": [ + "32 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389831.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389831.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389831.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389831", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389831.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a13c7f7-3b8a-4c0a-b536-8acc3bceacfb" + } + ] + }, + { + "label": { + "@none": [ + "32 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389832.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389832.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389832.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389832", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389832.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c188f4a-454c-450d-93b9-4d00e2975256" + } + ] + }, + { + "label": { + "@none": [ + "33 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389833.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389833.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389833.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389833", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389833.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9ebeaec-1170-43d7-bfba-3e7733a32b32" + } + ] + }, + { + "label": { + "@none": [ + "33 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389834.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389834.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389834.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389834", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389834.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0019917-4a27-475f-bfcd-fda44dabcf56" + } + ] + }, + { + "label": { + "@none": [ + "34 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389835.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389835.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389835.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389835", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389835.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a02dec3-e4f6-48a5-9523-15286199df66" + } + ] + }, + { + "label": { + "@none": [ + "34 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389836.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389836.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389836.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389836", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389836.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91c3f7ec-6636-4225-9be4-3ef64641c42c" + } + ] + }, + { + "label": { + "@none": [ + "35 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389837.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389837.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389837.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389837", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389837.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ccef7f07-f4aa-4669-9ebf-6d57661378e8" + } + ] + }, + { + "label": { + "@none": [ + "35 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389838.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389838.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389838.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389838", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389838.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/16028e41-2eaf-4192-98e0-2c79a4f1f5ce" + } + ] + }, + { + "label": { + "@none": [ + "36 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389839.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389839.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389839.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389839", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389839.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a77ffbf-5ac6-4b02-9782-ab97672e104c" + } + ] + }, + { + "label": { + "@none": [ + "36 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389840.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389840.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389840.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389840", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389840.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dfd54817-9792-40e8-b6e1-528c9673f8fb" + } + ] + }, + { + "label": { + "@none": [ + "37 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389841.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389841.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389841.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389841", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389841.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e892bdf-6cc5-4573-a3ef-e5c059b941dc" + } + ] + }, + { + "label": { + "@none": [ + "37 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389842.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389842.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389842.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389842", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389842.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7285c080-c20e-4ad7-82db-db85065d2973" + } + ] + }, + { + "label": { + "@none": [ + "38 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389843.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389843.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389843.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389843", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389843.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/41da2073-afe3-4512-8f08-13a036828e04" + } + ] + }, + { + "label": { + "@none": [ + "38 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389844.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389844.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389844.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389844", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389844.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f703066-f605-4b6d-9d71-3b90d76c1b76" + } + ] + }, + { + "label": { + "@none": [ + "39 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389845.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389845.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389845.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389845", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389845.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1a6f041-4933-448c-8b10-b11f63db547e" + } + ] + }, + { + "label": { + "@none": [ + "39 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389846.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389846.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389846.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389846", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389846.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9266285a-a90d-431b-85bd-48ebf8a38517" + } + ] + }, + { + "label": { + "@none": [ + "40 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/784535/canvas/4389847.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/784535/annotation/4389847.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/784535/canvas/4389847.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389847", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/784535/res/4389847.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9df55165-7e7a-47f4-85b8-db44794086d9" + } + ] + }, + { + "label": { + "@none": [ + "40 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389848.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389848.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389848.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389848", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389848.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b83794da-7dfd-453f-92e5-ef1269e72050" + } + ] + }, + { + "label": { + "@none": [ + "41 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389849.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389849.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389849.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389849", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389849.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80842f40-48f5-4d61-a5e4-fce2036f3f9d" + } + ] + }, + { + "label": { + "@none": [ + "41 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389850.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389850.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389850.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389850", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389850.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b141c8d1-194e-403f-b8c0-25e568b32546" + } + ] + }, + { + "label": { + "@none": [ + "42 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389851.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389851.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389851.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389851", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389851.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/405c4884-2a44-44b2-bb1a-b10fbcf4ffd3" + } + ] + }, + { + "label": { + "@none": [ + "42 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389852.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389852.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389852.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389852", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389852.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/992c2958-3c9f-474a-9875-2e31fe3230b7" + } + ] + }, + { + "label": { + "@none": [ + "43 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389853.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389853.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389853.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389853", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389853.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2c24b691-fdfe-48c4-bf20-d3932ec3abda" + } + ] + }, + { + "label": { + "@none": [ + "43 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389854.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389854.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389854.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389854", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389854.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6eeb8fbb-39ad-474f-a602-7fb19f850f94" + } + ] + }, + { + "label": { + "@none": [ + "44 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389855.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389855.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389855.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389855", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389855.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ff52297-b3b7-47a2-ad58-b680839d7667" + } + ] + }, + { + "label": { + "@none": [ + "44 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389856.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389856.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389856.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389856", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389856.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cbd0f675-3fe1-4e5d-88c7-0a7201ee2cef" + } + ] + }, + { + "label": { + "@none": [ + "45 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389857.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389857.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389857.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389857", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389857.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/531931df-592b-472f-8c87-1ceaf3e794b6" + } + ] + }, + { + "label": { + "@none": [ + "45 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389858.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389858.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389858.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389858", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389858.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/359180c4-9f58-4f8d-ad8f-414e58c4d404" + } + ] + }, + { + "label": { + "@none": [ + "46 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389859.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389859.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389859.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389859", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389859.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c37e224-5dda-471b-b47f-43158b3bf076" + } + ] + }, + { + "label": { + "@none": [ + "46 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389860.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389860.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389860.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389860", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389860.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2733111f-9261-40df-8829-5eaebddec2c1" + } + ] + }, + { + "label": { + "@none": [ + "47 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389861.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389861.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389861.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389861", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389861.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8ad6cb5f-125d-420b-a6a9-00f9b1d2fe00" + } + ] + }, + { + "label": { + "@none": [ + "47 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389862.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389862.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389862.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389862", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389862.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3181b621-67ba-43b7-aa61-02b60e7dd4cb" + } + ] + }, + { + "label": { + "@none": [ + "48 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389863.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389863.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389863.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389863", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389863.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a084c32b-a2d7-42d2-8397-e957d3cdfd5b" + } + ] + }, + { + "label": { + "@none": [ + "49 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389864.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389864.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389864.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389864", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389864.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd591d3a-d6d8-4b04-8aa3-677bd80a9cf0" + } + ] + }, + { + "label": { + "@none": [ + "49 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389865.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389865.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389865.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389865", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389865.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fce00431-8efa-4b67-8a15-21af3bbf7616" + } + ] + }, + { + "label": { + "@none": [ + "50 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389866.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389866.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389866.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389866", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389866.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8f48518-2312-4628-87cf-aa6f01bc13fb" + } + ] + }, + { + "label": { + "@none": [ + "50 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389867.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389867.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389867.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389867", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389867.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95049f5b-ff00-4b64-9016-a5081e0a3644" + } + ] + }, + { + "label": { + "@none": [ + "51 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389868.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389868.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389868.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389868", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389868.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b3e0add-f350-4297-823e-67549c44a9e7" + } + ] + }, + { + "label": { + "@none": [ + "51 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389869.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389869.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389869.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389869", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389869.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a1fb443-b2b7-42f6-87e2-1398695a4191" + } + ] + }, + { + "label": { + "@none": [ + "52 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389870.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389870.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389870.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389870", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389870.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6180161f-e802-46a5-9a13-c6535016bb35" + } + ] + }, + { + "label": { + "@none": [ + "52 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389871.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389871.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389871.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389871", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389871.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2c56caf-71da-48b3-af69-83451582ba97" + } + ] + }, + { + "label": { + "@none": [ + "53 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389872.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389872.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389872.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389872", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389872.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/710e4462-349d-467a-81bd-0bdf2fa36419" + } + ] + }, + { + "label": { + "@none": [ + "53 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389873.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389873.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389873.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389873", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389873.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c307dab6-e101-4af2-82f9-f6e96b1782a1" + } + ] + }, + { + "label": { + "@none": [ + "54 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389874.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389874.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389874.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389874", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389874.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7d6672a-5597-43fe-8865-9e2e09c9243f" + } + ] + }, + { + "label": { + "@none": [ + "54 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389875.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389875.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389875.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389875", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389875.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12644829-c0ad-44e8-8c41-3c0eae4d6ac5" + } + ] + }, + { + "label": { + "@none": [ + "55 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389876.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389876.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389876.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389876", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389876.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f43952e-6985-43d2-b9f2-ad1eefb423dd" + } + ] + }, + { + "label": { + "@none": [ + "55 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389877.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389877.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389877.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389877", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389877.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58df1e00-20e3-4453-ac2f-6c3a9050e698" + } + ] + }, + { + "label": { + "@none": [ + "56 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389878.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389878.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389878.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389878", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389878.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d9b1643-3c71-46a0-911d-10bb489e8d00" + } + ] + }, + { + "label": { + "@none": [ + "56 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389879.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389879.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389879.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389879", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389879.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9066497-91ff-4d01-b574-f85efcdebc9a" + } + ] + }, + { + "label": { + "@none": [ + "57 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389880.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389880.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389880.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389880", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389880.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a56d4f3c-44dd-4aa2-9b8c-005645526ce7" + } + ] + }, + { + "label": { + "@none": [ + "57 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389881.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389881.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389881.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389881", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389881.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c5ac22a-2d49-45bf-b883-f34699a525ba" + } + ] + }, + { + "label": { + "@none": [ + "58 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389882.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389882.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389882.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389882", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389882.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e0b519e-5aee-426b-bafe-c9f1d7d2bf8a" + } + ] + }, + { + "label": { + "@none": [ + "58 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389883.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389883.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389883.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389883", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389883.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce3d4fd1-b40c-40a5-9f9c-b05d156e919b" + } + ] + }, + { + "label": { + "@none": [ + "59 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389884.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389884.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389884.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389884", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389884.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/381a4268-01d7-4f30-af5b-085db65682c1" + } + ] + }, + { + "label": { + "@none": [ + "59 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389885.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389885.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389885.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389885", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389885.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47072232-9d0d-484d-8392-3c45506f0fa5" + } + ] + }, + { + "label": { + "@none": [ + "60 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389886.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389886.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389886.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389886", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389886.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0b39b72c-0b9c-4297-8e22-3c820480d689" + } + ] + }, + { + "label": { + "@none": [ + "60 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389887.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389887.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389887.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389887", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389887.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c629ab88-fcf1-4838-bab7-3f16d31a6900" + } + ] + }, + { + "label": { + "@none": [ + "61 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389888.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389888.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389888.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389888", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389888.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f9015f0-4570-49b3-bbd2-052c31ddc38c" + } + ] + }, + { + "label": { + "@none": [ + "61 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389889.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389889.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389889.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389889", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389889.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/47a6ac30-e519-4b4a-adf8-14eff07bbc4d" + } + ] + }, + { + "label": { + "@none": [ + "62 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389890.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389890.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389890.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389890", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389890.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a8ae773-c50b-4049-a389-6f227f9fa00d" + } + ] + }, + { + "label": { + "@none": [ + "62 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389891.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389891.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389891.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389891", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389891.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b93e2595-7ea3-4a9c-9a96-d1fcab3e27d0" + } + ] + }, + { + "label": { + "@none": [ + "63 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389892.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389892.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389892.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389892", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389892.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e0cacf3-be6d-4958-ac42-fac6dc01b781" + } + ] + }, + { + "label": { + "@none": [ + "63 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389893.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389893.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389893.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389893", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389893.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67a05529-a228-4744-b62f-30963bb7dae8" + } + ] + }, + { + "label": { + "@none": [ + "64 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389894.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389894.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389894.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389894", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389894.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff94d8b7-5081-4ce4-91e2-8862d6dabdab" + } + ] + }, + { + "label": { + "@none": [ + "64 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389895.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389895.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389895.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389895", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389895.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1983cd9a-a500-4898-8b25-a997a0c1784f" + } + ] + }, + { + "label": { + "@none": [ + "65 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389896.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389896.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389896.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389896", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389896.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ce7cec7-ca89-40d9-a36f-b5bd42f46526" + } + ] + }, + { + "label": { + "@none": [ + "65 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389897.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389897.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389897.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389897", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389897.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac511ad6-c1bc-4461-840d-2a138b0d0261" + } + ] + }, + { + "label": { + "@none": [ + "66 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389898.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389898.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389898.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389898", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389898.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a7d59c8a-75ac-48aa-9b38-04ae413bc170" + } + ] + }, + { + "label": { + "@none": [ + "66 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389899.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389899.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389899.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389899", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389899.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88a404d2-954d-4946-8e91-06b7b898d80e" + } + ] + }, + { + "label": { + "@none": [ + "67 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389900.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389900.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389900.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389900", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389900.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d9758054-1572-4adc-8151-c0707111f5cb" + } + ] + }, + { + "label": { + "@none": [ + "67 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389901.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389901.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389901.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389901", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389901.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acfaa1ef-bf4a-40f3-b8f0-956828dc9079" + } + ] + }, + { + "label": { + "@none": [ + "68 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389902.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389902.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389902.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389902", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389902.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4e1a0e9-ca20-4808-9dc3-483856dd915c" + } + ] + }, + { + "label": { + "@none": [ + "68 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389903.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389903.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389903.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389903", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389903.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72497c07-4cf4-4104-ac41-a10872e91255" + } + ] + }, + { + "label": { + "@none": [ + "69 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389904.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389904.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389904.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389904", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389904.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c33549cd-8574-405d-b55c-1b370a2f058e" + } + ] + }, + { + "label": { + "@none": [ + "69 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389905.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389905.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389905.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389905", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389905.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca0435af-1def-4105-b24e-3432212fa559" + } + ] + }, + { + "label": { + "@none": [ + "70 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389906.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389906.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389906.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389906", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389906.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0005faf5-fc90-48b5-b286-5b7483fe5d22" + } + ] + }, + { + "label": { + "@none": [ + "70 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389907.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389907.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389907.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389907", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389907.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a5bedbde-dd15-4095-b71e-f6845f4fd317" + } + ] + }, + { + "label": { + "@none": [ + "71 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389908.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389908.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389908.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389908", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389908.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2414353b-6739-425c-8c7b-7ecdd1b1f632" + } + ] + }, + { + "label": { + "@none": [ + "71 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389909.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389909.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389909.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389909", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389909.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bbdac2c8-b712-492f-9b98-8671174a86c2" + } + ] + }, + { + "label": { + "@none": [ + "72 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389910.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389910.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389910.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389910", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389910.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4567a701-ee92-4f61-8c60-97ca52bea71f" + } + ] + }, + { + "label": { + "@none": [ + "73 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389911.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389911.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389911.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389911", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389911.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b5da800-484d-4b09-8484-0867eed62c33" + } + ] + }, + { + "label": { + "@none": [ + "73 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389912.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389912.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389912.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389912", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389912.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c651dc0f-66a2-4b9b-b580-b939f1179e6e" + } + ] + }, + { + "label": { + "@none": [ + "74 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389913.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389913.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389913.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389913", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389913.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82494763-61ee-4192-9259-094e549502f4" + } + ] + }, + { + "label": { + "@none": [ + "74 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389914.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389914.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389914.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389914", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389914.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1462686-6a1e-40cf-ba7a-b4cffe3b4fe8" + } + ] + }, + { + "label": { + "@none": [ + "75 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389915.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389915.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389915.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389915", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389915.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/66f07211-3d35-4978-a323-6d4412dad0c5" + } + ] + }, + { + "label": { + "@none": [ + "75 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389916.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389916.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389916.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389916", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389916.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d9ebff7-55ac-4093-96a4-226448ac3bd4" + } + ] + }, + { + "label": { + "@none": [ + "76 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389917.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389917.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389917.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389917", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389917.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc18488a-f4f7-4b16-9d5f-18f2075e7900" + } + ] + }, + { + "label": { + "@none": [ + "76 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389918.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389918.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389918.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389918", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389918.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dbd4a73f-4148-4ce3-8919-fa1ca192112d" + } + ] + }, + { + "label": { + "@none": [ + "77 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389919.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389919.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389919.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389919", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389919.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8b0076ef-d54b-4e15-8068-76c2edf744b2" + } + ] + }, + { + "label": { + "@none": [ + "77 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389920.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389920.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389920.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389920", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389920.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7a6c38cb-6a9e-45b0-82ef-806f0a4ec319" + } + ] + }, + { + "label": { + "@none": [ + "78 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389921.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389921.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389921.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389921", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389921.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2e8eca1-d833-4d98-b25f-19f0fb8a4293" + } + ] + }, + { + "label": { + "@none": [ + "78 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389922.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389922.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389922.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389922", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389922.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29c0bcac-0e28-4e4a-9656-f64044d51182" + } + ] + }, + { + "label": { + "@none": [ + "79 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389923.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389923.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389923.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389923", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389923.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1fa95e77-3268-413a-b047-5a4e2f209499" + } + ] + }, + { + "label": { + "@none": [ + "79 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389924.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389924.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389924.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389924", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389924.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6052d7e-40db-40a3-a57b-78ee5e702f53" + } + ] + }, + { + "label": { + "@none": [ + "80 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389925.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389925.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389925.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389925", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389925.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f0a85d5-864e-4977-b810-2e111ac41cc0" + } + ] + }, + { + "label": { + "@none": [ + "80 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389926.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389926.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389926.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389926", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389926.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d395abc-a7c3-45f9-830c-b83d3cb77cf1" + } + ] + }, + { + "label": { + "@none": [ + "81 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389927.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389927.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389927.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389927", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389927.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ada0ccd6-4feb-4e35-8c82-bc3124fe8aaa" + } + ] + }, + { + "label": { + "@none": [ + "81 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389928.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389928.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389928.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389928", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389928.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70e6537b-f3e8-4e1d-aa0a-8f489e4a08e3" + } + ] + }, + { + "label": { + "@none": [ + "82 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389929.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389929.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389929.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389929", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389929.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2fbf7dc-7375-4d44-9f1d-e6eda729403e" + } + ] + }, + { + "label": { + "@none": [ + "83 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389930.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389930.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389930.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389930", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389930.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8e2e87d-a71f-4753-8f6f-b5be2139daec" + } + ] + }, + { + "label": { + "@none": [ + "84 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389931.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389931.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389931.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389931", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389931.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10b8a339-e7df-4fe0-9d98-5c22d5ffce08" + } + ] + }, + { + "label": { + "@none": [ + "85 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389932.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389932.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389932.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389932", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389932.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43889b8c-0946-473f-897c-87666928ca7b" + } + ] + }, + { + "label": { + "@none": [ + "86 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389933.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389933.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389933.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389933", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389933.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87bff7c6-4996-40a6-bed1-aeb9ca3515ab" + } + ] + }, + { + "label": { + "@none": [ + "87 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389934.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389934.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389934.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389934", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389934.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/059c39ea-0e0b-438c-8df4-b052229fa5f2" + } + ] + }, + { + "label": { + "@none": [ + "88 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389935.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389935.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389935.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389935", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389935.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3a5782d-a920-4059-a7a2-7afc85331900" + } + ] + }, + { + "label": { + "@none": [ + "90 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389936.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389936.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389936.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389936", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389936.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d508702-2454-41fa-9bc4-5748ac0917c3" + } + ] + }, + { + "label": { + "@none": [ + "91 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389937.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389937.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389937.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389937", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389937.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6ca2fe76-9a39-408b-88fb-820117e08ed2" + } + ] + }, + { + "label": { + "@none": [ + "91 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389938.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389938.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389938.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389938", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389938.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a50f9bd8-648f-4f94-a838-07369a0fb717" + } + ] + }, + { + "label": { + "@none": [ + "92 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389939.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389939.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389939.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389939", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389939.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f8441f2a-1ad6-426b-951e-351f5d07b545" + } + ] + }, + { + "label": { + "@none": [ + "93 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389940.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389940.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389940.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389940", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389940.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbba6767-a96f-458a-a757-94758a88634a" + } + ] + }, + { + "label": { + "@none": [ + "93 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389941.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389941.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389941.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389941", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389941.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c9f4255-79f2-48b8-9a40-4c45be5418be" + } + ] + }, + { + "label": { + "@none": [ + "94 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389942.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389942.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389942.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389942", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389942.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/32da2edf-f0f6-4726-942d-a91cd0d7e2d3" + } + ] + }, + { + "label": { + "@none": [ + "94 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389943.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389943.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389943.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389943", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389943.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/799522e8-1b6c-4fbb-97e4-a1e210bff8b9" + } + ] + }, + { + "label": { + "@none": [ + "95 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389944.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389944.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389944.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389944", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389944.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c28511cb-1540-44ee-9039-8dc077066b92" + } + ] + }, + { + "label": { + "@none": [ + "95 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389945.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389945.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389945.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389945", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389945.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/605c1f92-c884-459b-8193-b064655aadb2" + } + ] + }, + { + "label": { + "@none": [ + "96 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389946.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389946.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389946.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389946", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389946.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f0b1b2b-c290-4b05-9ba3-01cd6a81c915" + } + ] + }, + { + "label": { + "@none": [ + "96 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389947.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389947.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389947.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389947", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389947.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2cbbbd8e-6326-4cc6-8717-5935761a95e0" + } + ] + }, + { + "label": { + "@none": [ + "97 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389948.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389948.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389948.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389948", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389948.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0ab20bb-addc-4535-9b63-8880d5f4dbcd" + } + ] + }, + { + "label": { + "@none": [ + "97 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389949.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389949.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389949.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389949", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389949.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7bcaea4c-fc71-4d34-b442-adf6c04709b6" + } + ] + }, + { + "label": { + "@none": [ + "98 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389950.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389950.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389950.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389950", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389950.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43a9ee89-d348-4cb4-a209-19b2b356b2f7" + } + ] + }, + { + "label": { + "@none": [ + "98 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389951.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389951.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389951.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389951", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389951.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b09862b9-35dd-4577-98bc-1cdde0c452d5" + } + ] + }, + { + "label": { + "@none": [ + "99 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389952.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389952.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389952.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389952", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389952.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae951820-326e-452f-9077-c0f8eb0d1892" + } + ] + }, + { + "label": { + "@none": [ + "100 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389953.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389953.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389953.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389953", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389953.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8e59930-b3c4-479b-bf07-84afa6df6adf" + } + ] + }, + { + "label": { + "@none": [ + "100 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389954.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389954.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389954.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389954", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389954.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b814c8e8-b69c-468d-a1b4-52aa70f567fb" + } + ] + }, + { + "label": { + "@none": [ + "101 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389955.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389955.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389955.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389955", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389955.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef10fa82-8ff4-43b7-8549-546a628159d9" + } + ] + }, + { + "label": { + "@none": [ + "101 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389956.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389956.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389956.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389956", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389956.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69b8b2fb-cdbf-4a98-a1b8-af436dcf9060" + } + ] + }, + { + "label": { + "@none": [ + "102 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389957.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389957.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389957.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389957", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389957.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/465626fe-d1fa-4be5-a4b6-467450ebc747" + } + ] + }, + { + "label": { + "@none": [ + "102 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389958.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389958.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389958.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389958", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389958.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01750028-e2f0-4661-87b0-194d976f7b6d" + } + ] + }, + { + "label": { + "@none": [ + "103 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389959.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389959.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389959.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389959", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389959.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0e42311-85ec-42fa-af35-9304236a7652" + } + ] + }, + { + "label": { + "@none": [ + "103 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389960.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389960.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389960.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389960", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389960.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3ed5d44-62f0-420c-9b75-afbbda91f6b1" + } + ] + }, + { + "label": { + "@none": [ + "104 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389961.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389961.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389961.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389961", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389961.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef351972-399f-4079-91dd-b253f2b178e5" + } + ] + }, + { + "label": { + "@none": [ + "104 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389962.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389962.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389962.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389962", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389962.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4eb53d45-7459-4552-87e2-902dec5b9850" + } + ] + }, + { + "label": { + "@none": [ + "105 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389963.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389963.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389963.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389963", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389963.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23fc74f3-8e6f-47ca-b238-93a313163315" + } + ] + }, + { + "label": { + "@none": [ + "106 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389964.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389964.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389964.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389964", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389964.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68ec2064-76ea-4e54-8ea9-028a3d9917ab" + } + ] + }, + { + "label": { + "@none": [ + "106 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389965.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389965.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389965.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389965", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389965.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3a2b594-4bb1-4315-839e-e5c7c6ff5a4c" + } + ] + }, + { + "label": { + "@none": [ + "107 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389966.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389966.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389966.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389966", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389966.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e9a88c6-ec23-4c00-8bfa-900ecc70164a" + } + ] + }, + { + "label": { + "@none": [ + "109 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389967.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389967.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389967.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389967", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389967.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a499e8c9-2a49-4215-80d6-238550e8b3c5" + } + ] + }, + { + "label": { + "@none": [ + "109 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389968.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389968.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389968.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389968", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389968.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/95d805b4-34d5-451f-a1a2-49d466e5f77a" + } + ] + }, + { + "label": { + "@none": [ + "110 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389969.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389969.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389969.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389969", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389969.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6ebd05db-09bd-4427-96f5-c576f604da66" + } + ] + }, + { + "label": { + "@none": [ + "110 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389970.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389970.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389970.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389970", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389970.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc94afec-e0f2-4b9e-9f0e-a00d5cd613c8" + } + ] + }, + { + "label": { + "@none": [ + "111 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389971.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389971.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389971.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389971", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389971.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c792c5b-83d2-4a24-9e6a-17ac03f056e4" + } + ] + }, + { + "label": { + "@none": [ + "111 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389972.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389972.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389972.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389972", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389972.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24c338b3-d027-46db-959c-fa66d2a203e4" + } + ] + }, + { + "label": { + "@none": [ + "112 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389973.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389973.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389973.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389973", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389973.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3886db9-e6ee-4381-96ee-440826680692" + } + ] + }, + { + "label": { + "@none": [ + "112 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389974.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389974.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389974.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389974", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389974.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebee5c0d-b10c-4b75-9ba8-d601d2652b29" + } + ] + }, + { + "label": { + "@none": [ + "113 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389975.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389975.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389975.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389975", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389975.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dcafcf78-5739-4163-a7aa-bf94d2e5532d" + } + ] + }, + { + "label": { + "@none": [ + "113 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389976.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389976.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389976.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389976", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389976.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c818ad1-cd78-45d5-89bb-cd72ae0f6a9d" + } + ] + }, + { + "label": { + "@none": [ + "114 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389977.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389977.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389977.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389977", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389977.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/495b28de-7e8c-4eed-980b-e5271af5b43f" + } + ] + }, + { + "label": { + "@none": [ + "114 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389978.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389978.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389978.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389978", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389978.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4afe80b-ef76-4dae-8f0d-5e7440198700" + } + ] + }, + { + "label": { + "@none": [ + "115 r." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389979.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389979.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389979.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389979", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389979.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/993a6f8f-13f8-47b1-8222-096ba4241a3c" + } + ] + }, + { + "label": { + "@none": [ + "115 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389980.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389980.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389980.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389980", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389980.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67ea2332-f9aa-4228-a71a-92d4a519f02e" + } + ] + }, + { + "label": { + "@none": [ + "237 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389981.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389981.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389981.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389981", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389981.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd32ffd6-ea79-4c18-a8fd-6c3c1557739b" + } + ] + }, + { + "label": { + "@none": [ + "unlabeled" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389982.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389982.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389982.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389982", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389982.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58a766d8-420d-41ad-bd2f-c37c8757ef15" + } + ] + }, + { + "label": { + "@none": [ + "unlabeled" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389983.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389983.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389983.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389983", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389983.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c914dbb7-11f7-46b3-be6f-59c9df263801" + } + ] + }, + { + "label": { + "@none": [ + "unlabeled" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389984.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389984.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389984.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389984", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389984.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad0ead80-d800-4502-925d-39eb734f3bd2" + } + ] + }, + { + "label": { + "@none": [ + "239 v." + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389985.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389985.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389985.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389985", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389985.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d1955b3-4b9d-464c-80f4-d5f7a3a3f558" + } + ] + }, + { + "label": { + "@none": [ + "back cover" + ] + }, + "height": 4080, + "width": 4080, + "type": "Canvas", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389986.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/annotation/4389986.json", + "target": [ + { + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/canvas/4389986.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1", + "height": 4080, + "width": 4080, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16 + ] + } + ], + "id": "https://damsssl.llgc.org.uk/iiif/2.0/image/4389986", + "type": "ImageService2" + } + ], + "height": 4080, + "width": 4080, + "type": "Image", + "id": "https://damsssl.llgc.org.uk/iiif/2.0/4389767/res/4389986.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61c06da1-77d3-4b9c-bfae-31cff884a665" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/nlw-newspaper-manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/nlw-newspaper-manifest.json new file mode 100644 index 0000000..cb5ce9f --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/nlw-newspaper-manifest.json @@ -0,0 +1,1284 @@ +{ + "label": { + "@none": [ + "Cambrian (1804-01-28)" + ] + }, + "navDate": "1804-01-28T00:00:00Z", + "metadata": [ + { + "label": { + "en": [ + "Publisher" + ], + "cy-GB": [ + "Cyhoeddwr" + ] + }, + "value": { + "@none": [ + "T. Jenkins" + ] + } + }, + { + "label": { + "@none": [ + "Place of Publication" + ] + }, + "value": { + "@none": [ + "Swansea" + ] + } + }, + { + "label": { + "en": [ + "Frequency" + ], + "cy-GB": [ + "Amlder" + ] + }, + "value": { + "@none": [ + "Weekly" + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "eng" + ] + } + }, + { + "label": { + "@none": [ + "Subject" + ] + }, + "value": { + "@none": [ + "Swansea (Wales) Newspapers" + ] + } + }, + { + "label": { + "en": [ + "Repository" + ], + "cy-GB": [ + "Ystorfa" + ] + }, + "value": { + "en": [ + "This content has been digitised by The National Library of Wales" + ], + "cy-GB": [ + "Digidwyd y cynnwys hwn gan Lyfrgell Gendlaethol Cymru" + ] + } + } + ], + "logo": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/image/logo/full/400,/0/default.jpg" + } + ], + "seeAlso": [ + { + "format": "application/rdf+xml", + "profile": "http://www.europeana.eu/schemas/edm/", + "type": "Dataset", + "id": "http://hdl.handle.net/10107/3320640" + } + ], + "structures": [ + { + "label": { + "@none": [ + "TO THE PUBLIC." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "ON the first appearance of a New Paper be-Cyfore that august Tribunal which is ultimately to fix its destiny, Custom exacts a disclosure of its claim to notice: obedient to. her" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle1", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=540,5040,3306,18510", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json" + } + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle2", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641#xywh=3834,4983,13134,18528", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json" + } + }, + { + "label": { + "@none": [ + "LONDON." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "___THURSDAY, Jan. 19. THE invasion of this country by the French has for some time been the general topic of .. conversation, and various rumours are con" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle3", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=582,555,16413,22638", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle3.json" + } + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle4", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642#xywh=13773,9642,3387,13467", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle4.json" + } + }, + { + "label": { + "@none": [ + "-THE -" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "m The difficulties attending the first publications of a Newspaper being inconceivably great, we trust they will operate in extenuation of whatever errors and imperfections may be observed. Maturity will speedily" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle5", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=525,525,9993,22614", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle5.json" + } + }, + { + "label": { + "@none": [ + "Family Notices" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Family Notices" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle6", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7173,14520,3303,6357", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle6.json" + } + }, + { + "label": { + "@none": [ + "HIGH WATER ON SWANSEA BAR" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Detailed Lists, Results and Guides" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle7", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7209,20913,3120,1470", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle7.json" + } + }, + { + "label": { + "@none": [ + "TO CORRESPONDENTS." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "The Parody from Gray in our next. Communications from our Holywell Correspondent will always be acceptable. We have, for the present, omitted his last favour, on account of the extraordinary mildness of" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle8", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=7218,22359,3222,714", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle8.json" + } + }, + { + "label": { + "@none": [ + "COUNTRY MARKETS. I" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Detailed Lists, Results and Guides" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle9", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10401,540,3360,15036", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle9.json" + } + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle10", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643#xywh=10377,546,6693,22560", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle10.json" + } + }, + { + "label": { + "@none": [ + "ODE FOR THE NEW YEAR." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "WHEN, at the Despot's dread command, Bridg'd Hellespont his myriads bore From servile Asia's peopled strand To Graecia's and to Freedom's share—" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle11", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,744,3213,9366", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle11.json" + } + }, + { + "label": { + "@none": [ + "THE CURATE.—A FRAGMENT." + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "O'ER the pale embers of a-dying fire, His little lampe fed with but little oile, The Curate sat (for scantie was his hire) ;And ruminated sad the morrow's toil." + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle12", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=510,10398,3210,8079", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle12.json" + } + }, + { + "label": { + "@none": [ + "VOLUNTEERS.\"" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "News" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Copy of a circular letter _from Mr. Secretary . Yorke to the Lieutenants in the several counties in Great Britain :-My Lord, \" Whitehall, Jan. 14, 1804." + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle13", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=549,576,16377,20817", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle13.json" + } + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Article Category" + ] + }, + "value": { + "@none": [ + "Advertising" + ] + } + } + ], + "type": "Range", + "id": "http://dams.llgc.org.uk/iiif/3320640/article/modsarticle14", + "items": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644#xywh=660,21486,16311,1770", + "type": "Canvas" + } + ], + "supplementary": { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle14.json" + } + } + ], + "type": "Manifest", + "id": "http://dams.llgc.org.uk/iiif/newspaper/issue/3320640/manifest.json", + "partOf": [ + { + "id": "http://dams.llgc.org.uk/iiif/newspapers/3320639.json", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "[1]" + ] + }, + "height": 7905, + "width": 5826, + "type": "Canvas", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "annotations": [ + { + "label": { + "@none": [ + "TO THE PUBLIC." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART1.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle1.json" + } + ] + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320641/annotation/list/ART2.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle2.json" + } + ] + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320641.json", + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320641", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320641", + "type": "ImageService2" + } + ], + "height": 7905, + "width": 5826, + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320641/image/full/512,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3be76ef-08c2-4785-af95-9fbdfe9f51c4" + } + ] + }, + { + "label": { + "@none": [ + "[2]" + ] + }, + "height": 7905, + "width": 5826, + "type": "Canvas", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642", + "annotations": [ + { + "label": { + "@none": [ + "LONDON." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320642/annotation/list/ART3.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle3.json" + } + ] + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320642/annotation/list/ART4.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle4.json" + } + ] + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320642.json", + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320642", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320642", + "type": "ImageService2" + } + ], + "height": 7905, + "width": 5826, + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320642/image/full/512,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9cf25dca-c464-4aad-b2d2-93bd48c5c592" + } + ] + }, + { + "label": { + "@none": [ + "[3]" + ] + }, + "height": 7905, + "width": 5826, + "type": "Canvas", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643", + "annotations": [ + { + "label": { + "@none": [ + "-THE -" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART5.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle5.json" + } + ] + }, + { + "label": { + "@none": [ + "Family Notices" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART6.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle6.json" + } + ] + }, + { + "label": { + "@none": [ + "HIGH WATER ON SWANSEA BAR" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART7.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle7.json" + } + ] + }, + { + "label": { + "@none": [ + "TO CORRESPONDENTS." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART8.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle8.json" + } + ] + }, + { + "label": { + "@none": [ + "COUNTRY MARKETS. I" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART9.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle9.json" + } + ] + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320643/annotation/list/ART10.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle10.json" + } + ] + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320643.json", + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320643", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320643", + "type": "ImageService2" + } + ], + "height": 7905, + "width": 5826, + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320643/image/full/512,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ac0e970-0982-47a4-8c15-58e96fea5b61" + } + ] + }, + { + "label": { + "@none": [ + "[4]" + ] + }, + "height": 7905, + "width": 5826, + "type": "Canvas", + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644", + "annotations": [ + { + "label": { + "@none": [ + "ODE FOR THE NEW YEAR." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320644/annotation/list/ART11.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle11.json" + } + ] + }, + { + "label": { + "@none": [ + "THE CURATE.—A FRAGMENT." + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320644/annotation/list/ART12.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle12.json" + } + ] + }, + { + "label": { + "@none": [ + "VOLUNTEERS.\"" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320644/annotation/list/ART13.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle13.json" + } + ] + }, + { + "label": { + "@none": [ + "Advertising" + ] + }, + "type": "AnnotationPage", + "id": "http://dams.llgc.org.uk/iiif/3320644/annotation/list/ART14.json", + "partOf": [ + { + "label": { + "@none": [ + "OCR Article Text" + ] + }, + "type": "AnnotationCollection", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/layer/modsarticle14.json" + } + ] + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://dams.llgc.org.uk/iiif/3320640/annotation/3320644.json", + "target": [ + { + "id": "http://dams.llgc.org.uk/iiif/3320640/canvas/3320644", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "height": 7905, + "width": 5826, + "tiles": [ + { + "width": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "id": "http://dams.llgc.org.uk/iiif/2.0/image/3320644", + "type": "ImageService2" + } + ], + "height": 7905, + "width": 5826, + "type": "Image", + "id": "http://dams.llgc.org.uk/iiif/2.0/3320644/image/full/512,/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86e66f91-8c5e-4754-82f7-94ddfc168c97" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/princeton-manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/princeton-manifest.json new file mode 100644 index 0000000..eac543b --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/princeton-manifest.json @@ -0,0 +1,1658 @@ +{ + "label": { + "@none": [ + "Dada (Zurich, Switzerland), 3" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "title" + ] + }, + "value": { + "@none": [ + "Dada (Zurich, Switzerland)" + ] + } + }, + { + "label": { + "@none": [ + "display-date" + ] + }, + "value": { + "@none": [ + "Décembre 1918" + ] + } + }, + { + "label": { + "@none": [ + "part" + ] + }, + "value": { + "@none": [ + "3" + ] + } + }, + { + "label": { + "@none": [ + "Rights/License" + ] + }, + "value": { + "@none": [ + "a license" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "a description" + ] + } + } + ], + "structures": [ + { + "label": { + "@none": [ + "Table of Contents" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/toc", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page10", + "type": "Canvas" + }, + { + "label": { + "@none": [ + "Untitled Text" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c001", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "MANIFESTE DADA 1918." + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c003", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "SOPRA UN QUADRO CUBISTA" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c007", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Regard" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c009", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Avant l'heure" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c012", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "SALIVE AMÉRICAINE" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c013", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Bois de E. PRAMPOLINI" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c014", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "ABRI" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c045", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "LA JOIE DES SEPT COULEURS: (Fragment)" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c015", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "CRAYON BLEU: Poème à trois voix simultanées" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c019", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Guillaume Apollinaire" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c020", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "BOIS de H. RICHTER" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c021", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Bâton" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c022", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "3 gravures sur bois par H. ARP" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c028", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "GUILLAUME APOLLINAIRE" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c029", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "circuit total par la lune et par la couleur" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c031", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Gravure originale de MARCEL JANCO." + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c032", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "à Kisling" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Bulletin" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c033a", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Untitled Image" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c034", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Untitled Image" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c035", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "LE MARIN" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c036", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "CALENDRIER" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c038", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "COW-BOY" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c039", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c042", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c043", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c044", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c046", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "[Advertisement]" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c047", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Ad for Editions SIC" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c048", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ] + }, + { + "label": { + "@none": [ + "Ad for Tzara's 25 Poemes" + ] + }, + "type": "Range", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/range/c049", + "items": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + }, + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ] + } + ] + } + ], + "type": "Manifest", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/manifest", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "Provided by the Blue Mountain Project at Princeton University" + ] + } + }, + "partOf": [ + { + "id": "within URI", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "OUTSIDE_FRONT_COVER" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/bbc2832b-6fa7-4d05-8de0-3bb522aa2d10", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0001.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2cdd64c-716f-4917-bb4c-413ce9b9573a" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2e9eaab4-5d38-4dd3-add9-27d5955c0262", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0002.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0002.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/21ef56da-2ff6-44a1-925e-220453884f75" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/51534a81-aa87-457d-aa2b-3ae4448b9d79", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0003.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0003.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00f7a84f-6e34-4bca-90c6-d6836ffce758" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/eb2de485-2983-489d-aecc-25b7dc288b07", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0004.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0004.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65b020ac-3519-488f-9a47-16100c9f7f06" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/2373072e-fc2f-497e-a888-3011fbd5fa12", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0005.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0005.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e29f55d2-ec12-4f98-a822-3cf7489e2374" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c8bbf57e-b8b7-4e68-8413-2c87fa47843e", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0006.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0006.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2db69114-0280-4394-8d16-287373ae3994" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/c36303d4-c583-4952-81ba-09804ef53d38", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0007.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0007.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5766a5dd-5d6c-4395-86fe-91df83f2c237" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/fd3bf853-b3ec-4bfb-abbc-095ba355aa95", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0008.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0008.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19bda006-f7ac-461a-ad80-06ebe8d681ad" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7fe7b6dd-4ad2-4db4-b21f-42922a34c08e", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0009.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0009.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/321e630d-9591-4fc7-a36f-44a2547d08b7" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page10", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/7891d599-f85d-4f28-a0d5-a7b9a816cd88", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0010.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0010.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe990d3a-3076-4c49-be2b-b80e4f37a0f9" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0494d3c0-ab23-4b05-bccb-77bab6020d2a", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0011.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0011.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/da26514b-a0ff-49da-bf4d-1091614dc63d" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/4d45b878-e8ce-4d76-9386-242c9e7d1528", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0012.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0012.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb7ddabb-b4ad-49f6-9b8f-a6ceb44d32c4" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/dea63650-7b77-43a0-8b36-f162372da89f", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page13", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0013.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0013.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55f824a8-3506-4afe-8181-150064405d5d" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/f240c864-7182-47a2-a714-94aac8721e18", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0014.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0014.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55b11ace-75a4-4a39-8021-a42c40d112ba" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/0faa6a66-ac04-45c6-8901-5277403e9528", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page15", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0015.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0015.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad9fbd47-721a-4764-b468-f03f427ba65e" + } + ] + }, + { + "label": { + "@none": [ + "INSIDE" + ] + }, + "height": 6532, + "width": 4668, + "type": "Canvas", + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://example.org/uuid/21499dc1-d889-4bc4-8266-cb8d5a12c3a2", + "target": [ + { + "id": "http://bluemountain.princeton.edu/exist/restxq/iiif/bmtnaae_1918-12_01/canvas/page16", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jp2", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0016.jp2", + "type": "ImageService2" + } + ], + "height": 6532, + "width": 4668, + "type": "Image", + "id": "http://libimages.princeton.edu/loris2/bluemountain/astore%2Fperiodicals/bmtnaae/issues/1918/12_01/delivery/bmtnaae_1918-12_01_0016.jp2/full/!200,200/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5026391-212b-412b-a7d9-06aa78b203dd" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/purl.stanford.edu__qm670kv1873__iiif__manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/purl.stanford.edu__qm670kv1873__iiif__manifest.json new file mode 100644 index 0000000..42ecbd9 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/purl.stanford.edu__qm670kv1873__iiif__manifest.json @@ -0,0 +1,23148 @@ +{ + "label": { + "@none": [ + "Walters Ms. W.168, Book of Hours" + ] + }, + "logo": [ + { + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette/full/400,/0/default.jpg" + } + ], + "seeAlso": [ + { + "format": "application/mods+xml", + "type": "Dataset", + "id": "https://purl.stanford.edu/qm670kv1873.mods" + } + ], + "metadata": [ + { + "label": { + "@none": [ + "Available Online" + ] + }, + "value": { + "@none": [ + "https://purl.stanford.edu/qm670kv1873" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Walters Ms. W.168, Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Calendar" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Office of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Mass of the Virgin" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Gospel sequences" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Obsecro te" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "O intermerata" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Stabat Mater" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Prayer" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Seven Last Words of Christ" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Hours of the Virgin, Use of Rome" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Long Hours of the Holy Spirit" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Short Hours of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Seven Penitential Psalms" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Litany and one collect" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Office of the Dead" + ] + } + }, + { + "label": { + "@none": [ + "Title" + ] + }, + "value": { + "@none": [ + "Suffrages" + ] + } + }, + { + "label": { + "@none": [ + "Contributor" + ] + }, + "value": { + "@none": [ + "Masters of Zweder van Culemborg (artist)" + ] + } + }, + { + "label": { + "@none": [ + "Contributor" + ] + }, + "value": { + "@none": [ + "Style of Willem Vrelant (artist)" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This fine illuminated Book of Hours was produced in two stages in the second and third quarters of the fifteenth century. The manuscript contains eleven full-page miniatures and twenty historiated initials. The first stage of production includes a section attributed to the Masters of Zweder van Culemborg and the calendar (fols. 3r-14v, 52v-211v), while additional prayers illustrated in the style of the workshop of Willem Vrelant were added later in the fifteenth century (fols. 16r-50v, 213r-223r), presumably when the book was bound in its present binding. The Hours of the Virgin is for the Use of Rome. The Use of the Office of the Dead is unidentified, but the calendar is for the Use of Utrecht. The two separate parts of the manuscript were bound together in Flanders. The sections of W.168 attributed to the Masters of Zweder van Culemborg have been compared to Utrecht, Utrecht University Ms. 1037; Cambridge, Fitzwilliam Museum James Ms. 141; the second hand in New York, Pierpont Morgan Library Ms. M.87; Stockholm, Royal Library A 226, and Philadelphia, Free Library Lewis Ms. 88. \n For full description, see http://www.thedigitalwalters.org/Data/WaltersManuscripts/html/W168/description.html" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "The primary language in this manuscript is Latin." + ] + } + }, + { + "label": { + "@none": [ + "Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Book of Hours" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Calendar" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Office of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Mass of the Virgin" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Gospel sequences" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Obsecro te" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "O intermerata" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Stabat Mater" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Prayer" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Seven Last Words of Christ" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Hours of the Virgin, Use of Rome" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Long Hours of the Holy Spirit" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Short Hours of the Cross" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Seven Penitential Psalms" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Litany and one collect" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Office of the Dead" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Suffrages" + ] + } + }, + { + "label": { + "@none": [ + "Format" + ] + }, + "value": { + "@none": [ + "parchment" + ] + } + }, + { + "label": { + "@none": [ + "Format" + ] + }, + "value": { + "@none": [ + "image/jpeg" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"D,\" fol. 16r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"I,\" fol. 23r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initial \"O,\" fol. 34v" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniatures on fols. 52v, 76v, 81v, 85v, 90v, 94v, and 102v; historiated initial \"D,\" fol. 53r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 108v; historiated initial \"D,\" fol. 109r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Eleven full-page miniatures edged in gold and white-streaked blue/rose; Zweder Master sections feature five historiated initials (1 to 9 lines high); Vrelant Master sections feature fifteen historiated initials (8 lines high), as well as ornamental initials (1 to 4 lines high); borders decorated as in Zweder Master sections; floral sprays often found in margins; rubrics in red; text in black ink" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 128v; historiated initial \"D,\" fol. 129r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 148v; historiated initial \"D,\" fol. 149r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Full-page miniature on fol. 166v; historiated initial \"D,\" fol. 167r" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Historiated initials on fols. 213r, 213v, 214v, 215v, 216v, 217v, 218v, 221r, 222r, and 222v" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 16r Crucifixion Historiated initial \"D,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 23r Madonna and Child enthroned Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 34v Lamentation Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 52v Betrayal Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 53r Madonna and Child in half-length, \"clothed in the sun\" Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 76v Christ before Pilate Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 81v Flagellation Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 85v Christ carrying the Cross Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 90v Crucifixion Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 94v Deposition Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 102v Entombment Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 108v Trinity Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 109r Pentecost Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 128v Man of Sorrows, surrounded by the Arma Christi Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 129r Nativity Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 148v Last Judgement Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 149r Christ holding a globe and blessing Historiated initial \"D,\" 9 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 166v Funeral Mass Full-page miniature This miniature is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 167r Three female souls in purgatory Historiated initial \"D,\" 8 lines This historiated initial is illuminated by the Masters of Zweder van Culemborg." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 213r St. John the Baptist Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 213v St. James Major Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 214v St. Christopher Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 215v St. Sebastian Historiated initial \"O,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 216v St. Adrian Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 217v St. George Historiated initial \"G,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 218v St. Ghislain Historiated initial \"S,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 219r St. Catherine Historiated initial \"I,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 220r St. Barbara Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 221r St. Apollonia Historiated initial \"V,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 222r St. Margaret Historiated initial \"A,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "fol. 222v St. Anne teaching the Virgin to read Historiated initial \"C,\" 8 lines This historiated initial is illuminated in the style of Willem Vrelant." + ] + } + }, + { + "label": { + "@none": [ + "Date" + ] + }, + "value": { + "@none": [ + "1425-1450" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Second quarter of the 15th century (ca. 1430-35), with additions ca. 1460" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Created in two phases, with the original part made ca. 1430-35 and the second part made in the late fifteenth century; calendar for Utrecht suggests original site of production" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Libraire Morgand no. 26084, nineteenth century" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "Walters Art Museum, 1931, by Henry Walters bequest" + ] + } + }, + { + "label": { + "@none": [ + "Relation" + ] + }, + "value": { + "@none": [ + "Walters Manuscripts" + ] + } + }, + { + "label": { + "@none": [ + "PublishDate" + ] + }, + "value": { + "@none": [ + "2018-03-23T23:32:55Z" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "This fine illuminated Book of Hours was produced in two stages in the second and third quarters of the fifteenth century. The manuscript contains eleven full-page miniatures and twenty historiated initials. The first stage of production includes a section attributed to the Masters of Zweder van Culemborg and the calendar (fols. 3r-14v, 52v-211v), while additional prayers illustrated in the style of the workshop of Willem Vrelant were added later in the fifteenth century (fols. 16r-50v, 213r-223r), presumably when the book was bound in its present binding. The Hours of the Virgin is for the Use of Rome. The Use of the Office of the Dead is unidentified, but the calendar is for the Use of Utrecht. The two separate parts of the manuscript were bound together in Flanders. The sections of W.168 attributed to the Masters of Zweder van Culemborg have been compared to Utrecht, Utrecht University Ms. 1037; Cambridge, Fitzwilliam Museum James Ms. 141; the second hand in New York, Pierpont Morgan Library Ms. M.87; Stockholm, Royal Library A 226, and Philadelphia, Free Library Lewis Ms. 88. \n For full description, see http://www.thedigitalwalters.org/Data/WaltersManuscripts/html/W168/description.html" + ] + } + } + ], + "thumbnail": [ + { + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/!400,400/0/default.jpg" + } + ], + "type": "Manifest", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/manifest", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "All Walters manuscript images and descriptions provided here are copyrighted © The Walters Art Museum." + ] + } + }, + "items": [ + { + "label": { + "@none": [ + "Upper board outside" + ] + }, + "height": 2236, + "width": 1732, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_1", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2236, + "width": 1732, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000001_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fd76287-bc78-4a4b-9f43-eb3eee89b038" + } + ] + }, + { + "label": { + "@none": [ + "Upper board inside" + ] + }, + "height": 2220, + "width": 1632, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_2", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2220, + "width": 1632, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000002_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000002_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23576f50-40ec-467c-a903-a3c6dfe32590" + } + ] + }, + { + "label": { + "@none": [ + "fol. 1r" + ] + }, + "height": 2064, + "width": 1502, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_3", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1502, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000003_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000003_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b6a9f0ba-9cc5-44b2-8f41-f3748d8769e6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 1v" + ] + }, + "height": 2098, + "width": 1444, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_4", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1444, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000004_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000004_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38777328-0d90-4765-91ac-6be23b8bd2b3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 2r" + ] + }, + "height": 2043, + "width": 1439, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_5", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_5", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2043, + "width": 1439, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000005_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000005_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1475a1e-ea0c-4007-af2b-530d9122ff68" + } + ] + }, + { + "label": { + "@none": [ + "fol. 2v" + ] + }, + "height": 2072, + "width": 1447, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_6", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_6", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1447, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000006_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000006_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/238297dd-a830-4edc-ab06-1ca6da46229c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 3r" + ] + }, + "height": 2093, + "width": 1436, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_7", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_7", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1436, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000007_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000007_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/30312564-ffbe-4154-98cb-85f0d5b83f22" + } + ] + }, + { + "label": { + "@none": [ + "fol. 3v" + ] + }, + "height": 2106, + "width": 1424, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_8", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_8", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1424, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000008_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000008_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac9f37e9-7f49-4192-81fb-d7867874687f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 4r" + ] + }, + "height": 2106, + "width": 1431, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_9", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_9", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1431, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000009_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000009_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0dfd1b81-b71b-4f00-a561-6fd681a61073" + } + ] + }, + { + "label": { + "@none": [ + "fol. 4v" + ] + }, + "height": 2098, + "width": 1426, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_10", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_10", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1426, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000010_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000010_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f949208-083f-4468-8924-207f1533f4ee" + } + ] + }, + { + "label": { + "@none": [ + "fol. 5r" + ] + }, + "height": 2101, + "width": 1429, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_11", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_11", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1429, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000011_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000011_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc6eac69-c04d-43b5-bd7e-3f8dc28687d9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 5v" + ] + }, + "height": 2077, + "width": 1452, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_12", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_12", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1452, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000012_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000012_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/58e2fee8-a106-40fc-b672-699a6cea9da3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 6r" + ] + }, + "height": 2106, + "width": 1431, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_13", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_13", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_13", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1431, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000013_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000013_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f079296-9175-41bd-97c6-8e74c28db484" + } + ] + }, + { + "label": { + "@none": [ + "fol. 6v" + ] + }, + "height": 2108, + "width": 1421, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_14", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_14", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1421, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000014_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000014_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e02092c-cef3-4eb0-90c2-17a5171ddc52" + } + ] + }, + { + "label": { + "@none": [ + "fol. 7r" + ] + }, + "height": 2103, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_15", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_15", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_15", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000015_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000015_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ffc70bc-61f1-4ca4-a2d5-dce06b005f0e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 7v" + ] + }, + "height": 2051, + "width": 1400, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_16", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_16", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_16", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1400, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000016_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000016_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36f08c44-2733-47b0-98a3-13e943011532" + } + ] + }, + { + "label": { + "@none": [ + "fol. 8r" + ] + }, + "height": 2098, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_17", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_17", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_17", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000017_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000017_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4a38b44-85d4-45ce-87c5-195e4229824d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 8v" + ] + }, + "height": 2059, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_18", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_18", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_18", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000018_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000018_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3392bc63-0a19-4ca8-b096-a0a2a3f4ac38" + } + ] + }, + { + "label": { + "@none": [ + "fol. 9r" + ] + }, + "height": 2113, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_19", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_19", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_19", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000019_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000019_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/349905c8-e849-42e6-adbc-b8723595ef4d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 9v" + ] + }, + "height": 2048, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_20", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_20", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_20", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000020_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000020_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c218c30c-0ec2-44c2-986a-f8584ba8fca5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 10r" + ] + }, + "height": 2103, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_21", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_21", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_21", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000021_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000021_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f107ecfc-1903-469e-bc6d-de2e752e0810" + } + ] + }, + { + "label": { + "@none": [ + "fol. 10v" + ] + }, + "height": 2064, + "width": 1405, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_22", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_22", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_22", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1405, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000022_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000022_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cff6e8a5-09bf-420f-b00a-445840c3070f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 11r" + ] + }, + "height": 2093, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_23", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_23", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_23", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000023_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000023_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e94d10cb-bf2e-4d43-a274-dc7294ea7412" + } + ] + }, + { + "label": { + "@none": [ + "fol. 11v" + ] + }, + "height": 2064, + "width": 1382, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_24", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_24", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_24", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1382, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000024_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000024_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae50590f-cb92-4cd1-b160-b87f370d78b7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 12r" + ] + }, + "height": 2105, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_25", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_25", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_25", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000025_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000025_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ca34279-db00-424a-aa25-41e838562423" + } + ] + }, + { + "label": { + "@none": [ + "fol. 12v" + ] + }, + "height": 2069, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_26", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_26", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_26", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000026_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000026_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4767e8e8-716f-4315-a96d-0f7c5dcc758e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 13r" + ] + }, + "height": 2108, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_27", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_27", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_27", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000027_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000027_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0d9d7d11-a82a-4a6d-9c25-b9f8e9d5795d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 13v" + ] + }, + "height": 2059, + "width": 1398, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_28", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_28", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_28", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1398, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000028_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000028_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d32ce799-5c2a-4813-886d-6e915e1876b8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 14r" + ] + }, + "height": 2051, + "width": 1411, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_29", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_29", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_29", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1411, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000029_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000029_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9fd67d26-6a1f-4ee3-b115-6e885428f760" + } + ] + }, + { + "label": { + "@none": [ + "fol. 14v" + ] + }, + "height": 2065, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_30", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_30", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_30", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2065, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000030_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000030_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/427cd030-3f66-4888-9b4c-33eb601349e5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 15r" + ] + }, + "height": 2085, + "width": 1421, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_31", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_31", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_31", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1421, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000031_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000031_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63480171-0309-4eae-bcb3-cdcba3096d5d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 15v" + ] + }, + "height": 2051, + "width": 1421, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_32", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_32", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_32", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1421, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000032_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000032_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7091002b-6943-4800-9468-194042b8b667" + } + ] + }, + { + "label": { + "@none": [ + "fol. 16r" + ] + }, + "height": 2106, + "width": 1419, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_33", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_33", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_33", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1419, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000033_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000033_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/674e3dd9-c5f8-4c52-ad0a-abe2f1edcea2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 16v" + ] + }, + "height": 2072, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_34", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_34", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_34", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000034_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000034_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf0d6b1d-6b05-45a1-85e4-6b1175155150" + } + ] + }, + { + "label": { + "@none": [ + "fol. 17r" + ] + }, + "height": 2088, + "width": 1419, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_35", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_35", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_35", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 1419, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000035_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000035_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b62f990-2204-4e5f-9ca9-690dae44b4ea" + } + ] + }, + { + "label": { + "@none": [ + "fol. 17v" + ] + }, + "height": 2041, + "width": 1382, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_36", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_36", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_36", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2041, + "width": 1382, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000036_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000036_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65fe3714-b2a1-4314-a911-3e4e71139300" + } + ] + }, + { + "label": { + "@none": [ + "fol. 18r" + ] + }, + "height": 2101, + "width": 1418, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_37", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_37", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_37", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1418, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000037_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000037_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e53e846-db2f-409b-adeb-aa21de93bdda" + } + ] + }, + { + "label": { + "@none": [ + "fol. 18v" + ] + }, + "height": 2051, + "width": 1390, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_38", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_38", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_38", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1390, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000038_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000038_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb2bc1e0-11f9-4123-acc3-077cbc0fb4d2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 19r" + ] + }, + "height": 2108, + "width": 1426, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_39", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_39", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_39", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1426, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000039_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000039_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5050bf4-c2ab-4f82-b548-c9b9f91b618d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 19v" + ] + }, + "height": 2069, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_40", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_40", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_40", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000040_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000040_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e7f9577-9a22-4a61-a0ee-03e02d213026" + } + ] + }, + { + "label": { + "@none": [ + "fol. 20r" + ] + }, + "height": 2105, + "width": 1403, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_41", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_41", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_41", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1403, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000041_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000041_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/448b9104-d7ac-4719-92b7-c2be432fe965" + } + ] + }, + { + "label": { + "@none": [ + "fol. 20v" + ] + }, + "height": 2051, + "width": 1410, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_42", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_42", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_42", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1410, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000042_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000042_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/322b89d9-9c78-4322-8393-15db137b4935" + } + ] + }, + { + "label": { + "@none": [ + "fol. 21r" + ] + }, + "height": 2101, + "width": 1410, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_43", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_43", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_43", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1410, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000043_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000043_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4263610-ccf5-411b-9db2-454e4c906f06" + } + ] + }, + { + "label": { + "@none": [ + "fol. 21v" + ] + }, + "height": 2053, + "width": 1411, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_44", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_44", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_44", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2053, + "width": 1411, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000044_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000044_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b08c56ef-fb33-4146-a336-5d2109596a4e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 22r" + ] + }, + "height": 2100, + "width": 1390, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_45", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_45", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_45", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1390, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000045_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000045_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52d037a3-6b95-473b-aa2d-2d2112929678" + } + ] + }, + { + "label": { + "@none": [ + "fol. 22v" + ] + }, + "height": 2072, + "width": 1410, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_46", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_46", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_46", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1410, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000046_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000046_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4050996-3103-49e6-a1b8-51227d14c27a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 23r" + ] + }, + "height": 2105, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_47", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_47", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_47", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000047_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000047_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fc28d7f-c5ff-4316-97b6-34abc19a22d1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 23v" + ] + }, + "height": 2070, + "width": 1379, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_48", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_48", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_48", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2070, + "width": 1379, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000048_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000048_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e09dd098-e105-462b-8c31-bf3d16c8d168" + } + ] + }, + { + "label": { + "@none": [ + "fol. 24r" + ] + }, + "height": 2103, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_49", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_49", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_49", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000049_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000049_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9fc934c-56c8-494d-8052-c59669382c79" + } + ] + }, + { + "label": { + "@none": [ + "fol. 24v" + ] + }, + "height": 2056, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_50", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_50", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_50", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000050_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000050_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d0e84a1-97d8-42e6-af9d-9bd45d955694" + } + ] + }, + { + "label": { + "@none": [ + "fol. 25r" + ] + }, + "height": 2100, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_51", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_51", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_51", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000051_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000051_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f87f969a-19fa-4719-ad59-075169810398" + } + ] + }, + { + "label": { + "@none": [ + "fol. 25v" + ] + }, + "height": 2083, + "width": 1414, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_52", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_52", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_52", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2083, + "width": 1414, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000052_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000052_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09b44277-e20f-40f5-bfb2-b80f54988938" + } + ] + }, + { + "label": { + "@none": [ + "fol. 26r" + ] + }, + "height": 2054, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_53", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_53", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_53", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000053_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000053_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ed2ba1d8-c5ad-4bb4-b3ee-af350d214130" + } + ] + }, + { + "label": { + "@none": [ + "fol. 26v" + ] + }, + "height": 2046, + "width": 1405, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_54", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_54", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_54", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2046, + "width": 1405, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000054_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000054_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2821948-6d2f-4593-b549-61137bb7a03f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 27r" + ] + }, + "height": 2041, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_55", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_55", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_55", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2041, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000055_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000055_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5db8011e-9195-440d-86a4-a36530ff4120" + } + ] + }, + { + "label": { + "@none": [ + "fol. 27v" + ] + }, + "height": 2063, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_56", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_56", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_56", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2063, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000056_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000056_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2adfd027-eb74-46bb-a5ef-e82804726d1a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 28r" + ] + }, + "height": 2061, + "width": 1372, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_57", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_57", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_57", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000057_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000057_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/35ed70c3-35c6-41ba-9b82-df2203547f34" + } + ] + }, + { + "label": { + "@none": [ + "fol. 28v" + ] + }, + "height": 2061, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_58", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_58", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_58", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000058_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000058_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e300d47-48d8-494d-8935-454daf8f94eb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 29r" + ] + }, + "height": 2034, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_59", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_59", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_59", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2034, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000059_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000059_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/033da1fc-6b32-4d7c-8384-2223ea57e2f6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 29v" + ] + }, + "height": 2048, + "width": 1382, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_60", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_60", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_60", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1382, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000060_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000060_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d549eaf-7da0-4f7a-947a-c1c257b4f153" + } + ] + }, + { + "label": { + "@none": [ + "fol. 30r" + ] + }, + "height": 2093, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_61", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_61", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_61", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000061_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000061_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3da2d963-f5b0-4c23-93fd-22d437a6914b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 30v" + ] + }, + "height": 2064, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_62", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_62", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_62", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000062_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000062_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/624fc6ec-e5dd-4acb-b3e4-7d6de2146ebe" + } + ] + }, + { + "label": { + "@none": [ + "fol. 31r" + ] + }, + "height": 2113, + "width": 1413, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_63", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_63", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_63", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1413, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000063_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000063_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e95009b-4ecf-45e1-be33-16a7528b32b5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 31v" + ] + }, + "height": 2066, + "width": 1374, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_64", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_64", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_64", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1374, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000064_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000064_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/db1d1b99-ca19-4be2-b47f-7f0542593e10" + } + ] + }, + { + "label": { + "@none": [ + "fol. 32r" + ] + }, + "height": 2033, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_65", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_65", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_65", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2033, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000065_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000065_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/849f866c-3df7-46e5-8b8b-1e14de8b4594" + } + ] + }, + { + "label": { + "@none": [ + "fol. 32v" + ] + }, + "height": 2059, + "width": 1369, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_66", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_66", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_66", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1369, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000066_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000066_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/232f32ec-c55f-4bcb-9b07-adf109b2dd36" + } + ] + }, + { + "label": { + "@none": [ + "fol. 33r" + ] + }, + "height": 2039, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_67", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_67", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_67", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2039, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000067_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000067_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/632533cf-868e-4c24-9300-7c3ec660eefc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 33v" + ] + }, + "height": 2071, + "width": 1388, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_68", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_68", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_68", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000068_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000068_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/535a4e98-3b97-43bf-a312-779734a7db08" + } + ] + }, + { + "label": { + "@none": [ + "fol. 34r" + ] + }, + "height": 2038, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_69", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_69", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_69", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2038, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000069_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000069_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23c7e16c-2ff0-4b44-9068-02c9d06ccbe1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 34v" + ] + }, + "height": 2064, + "width": 1374, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_70", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_70", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_70", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1374, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000070_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000070_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a30c4b55-1d97-4037-bef6-a1a495664ca8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 35r" + ] + }, + "height": 2038, + "width": 1324, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_71", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_71", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_71", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2038, + "width": 1324, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000071_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000071_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c7531d4-a957-4753-bcac-d5729a8bb386" + } + ] + }, + { + "label": { + "@none": [ + "fol. 35v" + ] + }, + "height": 2048, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_72", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_72", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_72", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000072_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000072_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/269e87c4-68d8-4a29-af56-5d1d0833025d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 36r" + ] + }, + "height": 2051, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_73", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_73", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_73", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000073_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000073_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d7246d6-a09d-4d6c-ae14-642f8bd9f332" + } + ] + }, + { + "label": { + "@none": [ + "fol. 36v" + ] + }, + "height": 2073, + "width": 1375, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_74", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_74", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_74", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2073, + "width": 1375, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000074_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000074_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2775cb1-707e-4f4b-afcd-4285d4a8c167" + } + ] + }, + { + "label": { + "@none": [ + "fol. 37r" + ] + }, + "height": 2062, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_75", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_75", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_75", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000075_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000075_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62eebf0d-dbfe-46e6-a211-35aac9306883" + } + ] + }, + { + "label": { + "@none": [ + "fol. 37v" + ] + }, + "height": 2059, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_76", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_76", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_76", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000076_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000076_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22e076e4-6356-4b03-9316-b482f9396938" + } + ] + }, + { + "label": { + "@none": [ + "fol. 38r" + ] + }, + "height": 2067, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_77", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_77", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_77", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000077_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000077_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50c26c87-2dad-49b9-8e8d-b703245760b9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 38v" + ] + }, + "height": 2061, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_78", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_78", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_78", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000078_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000078_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/19d405dd-4fb2-4866-9800-60aea017a482" + } + ] + }, + { + "label": { + "@none": [ + "fol. 39r" + ] + }, + "height": 2048, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_79", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_79", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_79", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000079_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000079_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3bfc3c3d-554c-48c0-a169-093da8e53cbc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 39v" + ] + }, + "height": 2056, + "width": 1370, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_80", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_80", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_80", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1370, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000080_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000080_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0bcd987-7bc3-4e3d-ab37-0f9cc0614d55" + } + ] + }, + { + "label": { + "@none": [ + "fol. 40r" + ] + }, + "height": 2077, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_81", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_81", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_81", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000081_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000081_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd080627-0478-4989-b44f-4bc04cf89f5b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 40v" + ] + }, + "height": 2069, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_82", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_82", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_82", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000082_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000082_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/155df376-bb3c-4707-9ed7-5578ee580964" + } + ] + }, + { + "label": { + "@none": [ + "fol. 41r" + ] + }, + "height": 2038, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_83", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_83", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_83", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2038, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000083_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000083_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd819f63-62ff-4e25-a82d-da1fd8ac90d6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 41v" + ] + }, + "height": 2067, + "width": 1374, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_84", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_84", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_84", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1374, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000084_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000084_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0bddb4b5-ed3c-49ba-908e-eea2fbb03647" + } + ] + }, + { + "label": { + "@none": [ + "fol. 42r" + ] + }, + "height": 2056, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_85", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_85", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_85", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000085_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000085_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/203293b7-ebd6-49ee-bae5-a16d4b902f73" + } + ] + }, + { + "label": { + "@none": [ + "fol. 42v" + ] + }, + "height": 2067, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_86", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_86", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_86", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000086_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000086_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad5ab7c5-54c0-48cf-848d-3cfc422a4317" + } + ] + }, + { + "label": { + "@none": [ + "fol. 43r" + ] + }, + "height": 2056, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_87", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_87", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_87", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000087_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000087_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4bc44b6d-1303-48d5-b54b-f93e9bdf08a0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 43v" + ] + }, + "height": 2069, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_88", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_88", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_88", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000088_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000088_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b228f3c2-f668-46fc-858b-6dd12150e513" + } + ] + }, + { + "label": { + "@none": [ + "fol. 44r" + ] + }, + "height": 2056, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_89", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_89", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_89", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000089_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000089_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ffdefb5-00b3-4843-9338-f9e6a534d1ed" + } + ] + }, + { + "label": { + "@none": [ + "fol. 44v" + ] + }, + "height": 2074, + "width": 1383, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_90", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_90", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_90", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1383, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000090_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000090_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3dfda40-cc7b-461f-95fe-08ece6ceacc3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 45r" + ] + }, + "height": 2034, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_91", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_91", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_91", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2034, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000091_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000091_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d55e0ab3-26dc-43c3-b663-843f7d962496" + } + ] + }, + { + "label": { + "@none": [ + "fol. 45v" + ] + }, + "height": 2040, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_92", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_92", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_92", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2040, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000092_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000092_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a717e0b-d10f-4d51-a470-5538d7748279" + } + ] + }, + { + "label": { + "@none": [ + "fol. 46r" + ] + }, + "height": 2027, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_93", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_93", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_93", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2027, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000093_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000093_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e1a4c961-1239-4af9-a833-3704a9a458cc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 46v" + ] + }, + "height": 2043, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_94", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_94", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_94", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2043, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000094_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000094_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2af11213-a7fc-4414-b3f1-e77ff3233bde" + } + ] + }, + { + "label": { + "@none": [ + "fol. 47r" + ] + }, + "height": 2053, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_95", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_95", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_95", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2053, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000095_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000095_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5c85f82-176f-433f-89a6-2a624e5a5b74" + } + ] + }, + { + "label": { + "@none": [ + "fol. 47v" + ] + }, + "height": 2051, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_96", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_96", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_96", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000096_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000096_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60d1b29e-ce59-4a17-9fec-cd208a4a7bc8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 48r" + ] + }, + "height": 2051, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_97", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_97", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_97", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000097_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000097_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3460fa61-ee2d-416a-b387-54674b2899c0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 48v" + ] + }, + "height": 2079, + "width": 1366, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_98", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_98", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_98", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2079, + "width": 1366, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000098_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000098_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc49aaf9-fe7f-4211-93ea-5eb8800c5eb6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 49r" + ] + }, + "height": 2048, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_99", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_99", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_99", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000099_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000099_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b7d4263c-8bb4-4933-83ad-3cb4286c4aa6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 49v" + ] + }, + "height": 2056, + "width": 1369, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_100", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_100", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_100", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1369, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000100_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000100_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5c379d3-7fe3-4961-8dbe-75ed5f693f0c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 50r" + ] + }, + "height": 2048, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_101", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_101", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_101", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000101_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000101_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5de1990-a59a-4ac9-a6ba-b85ff07f9b1e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 50v" + ] + }, + "height": 2048, + "width": 1379, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_102", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_102", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_102", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1379, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000102_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000102_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9db789c6-8a28-4c29-be71-c6e22e4ed66c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 51r" + ] + }, + "height": 2059, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_103", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_103", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_103", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000103_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000103_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e6d6f76-62e8-46b6-8124-eb817092c8a6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 51v" + ] + }, + "height": 2042, + "width": 1376, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_104", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_104", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_104", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2042, + "width": 1376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000104_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000104_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b279145-0c29-45b0-8863-75320f14a702" + } + ] + }, + { + "label": { + "@none": [ + "fol. 52r" + ] + }, + "height": 2043, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_105", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_105", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_105", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2043, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000105_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000105_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4684f5d5-905b-4f62-aaf8-052b6a8542d0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 52v" + ] + }, + "height": 2067, + "width": 1377, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_106", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_106", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_106", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1377, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000106_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000106_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1c27149-1ca8-4bf9-835a-82d803ae5429" + } + ] + }, + { + "label": { + "@none": [ + "fol. 53r" + ] + }, + "height": 2054, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_107", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_107", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_107", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000107_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000107_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef6cd2c6-fc78-4489-a8d4-68b7007f07a1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 53v" + ] + }, + "height": 2101, + "width": 1408, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_108", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_108", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_108", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1408, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000108_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000108_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4307f4b-d912-48a4-b687-498824e9710b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 54r" + ] + }, + "height": 2061, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_109", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_109", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_109", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000109_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000109_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a59609fd-67f8-45cc-bcbf-3580cbc04df7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 54v" + ] + }, + "height": 2043, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_110", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_110", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_110", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2043, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000110_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000110_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/873134a7-734f-4967-a9ec-10697add960d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 55r" + ] + }, + "height": 2067, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_111", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_111", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_111", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000111_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000111_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0fb6d93e-a19f-4eba-8e50-d2ca557fc097" + } + ] + }, + { + "label": { + "@none": [ + "fol. 55v" + ] + }, + "height": 2061, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_112", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_112", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_112", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000112_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000112_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5d33dd64-2227-456d-b30a-4dc996bc1510" + } + ] + }, + { + "label": { + "@none": [ + "fol. 56r" + ] + }, + "height": 2101, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_113", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_113", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_113", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000113_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000113_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d20636c-9943-4420-acdd-13b1dc397c60" + } + ] + }, + { + "label": { + "@none": [ + "fol. 56v" + ] + }, + "height": 2060, + "width": 1376, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_114", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_114", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_114", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2060, + "width": 1376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000114_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000114_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/968a5967-db44-4c17-8299-edba1c159c36" + } + ] + }, + { + "label": { + "@none": [ + "fol. 57r" + ] + }, + "height": 2098, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_115", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_115", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_115", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000115_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000115_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5493ffda-54fa-44ee-872b-6b385dad21fa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 57v" + ] + }, + "height": 2051, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_116", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_116", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_116", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000116_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000116_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be609e8f-5990-45ed-9487-a6e155a6a32d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 58r" + ] + }, + "height": 2095, + "width": 1342, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_117", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_117", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_117", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1342, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000117_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000117_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37ed30cb-30a5-4852-9a95-b3218e6fed4d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 58v" + ] + }, + "height": 2103, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_118", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_118", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_118", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000118_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000118_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/49207254-2c7c-48d4-9823-738b22ca27d7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 59r" + ] + }, + "height": 2093, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_119", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_119", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_119", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000119_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000119_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9fbdc9fd-16cb-44d4-b93d-09b09cbf9064" + } + ] + }, + { + "label": { + "@none": [ + "fol. 59v" + ] + }, + "height": 2081, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_120", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_120", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_120", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000120_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000120_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef493270-a006-455c-a247-70e96232451f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 60r" + ] + }, + "height": 2093, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_121", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_121", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_121", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000121_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000121_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/386a05ba-773a-4eb9-a25e-317f9417c388" + } + ] + }, + { + "label": { + "@none": [ + "fol. 60v" + ] + }, + "height": 2059, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_122", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_122", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_122", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000122_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000122_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0350dac1-e391-4f9e-8775-d86dfb1fe412" + } + ] + }, + { + "label": { + "@none": [ + "fol. 61r" + ] + }, + "height": 2100, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_123", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_123", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_123", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000123_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000123_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca27b355-08b2-4b2c-a56e-1d11cb3557c6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 61v" + ] + }, + "height": 2051, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_124", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_124", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_124", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000124_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000124_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/029947fa-38e0-4007-bd6f-01ba3fa08ffc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 62r" + ] + }, + "height": 2095, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_125", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_125", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_125", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000125_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000125_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a9b095e-7f4a-48a3-a69a-97bc8f75dbd4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 62v" + ] + }, + "height": 2069, + "width": 1355, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_126", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_126", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_126", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000126_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000126_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b6efb4b7-271f-496d-a797-8458c00ea80d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 63r" + ] + }, + "height": 2103, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_127", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_127", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_127", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000127_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000127_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b07ac76a-f745-4f18-984f-30123bdfd68e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 63v" + ] + }, + "height": 2067, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_128", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_128", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_128", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000128_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000128_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae5ff221-6639-446b-9e23-4bdcecfeee60" + } + ] + }, + { + "label": { + "@none": [ + "fol. 64r" + ] + }, + "height": 2098, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_129", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_129", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_129", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000129_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000129_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0c8dc21-896d-48ff-9b27-90ecb38503fa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 64v" + ] + }, + "height": 2064, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_130", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_130", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_130", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000130_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000130_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf878d94-dd5c-46ad-93eb-0a3e18788b3b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 65r" + ] + }, + "height": 2119, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_131", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_131", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_131", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2119, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000131_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000131_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b72b8ad-81b4-44d8-985c-80d2266bb822" + } + ] + }, + { + "label": { + "@none": [ + "fol. 65v" + ] + }, + "height": 2060, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_132", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_132", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_132", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2060, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000132_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000132_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f14bd7fc-b069-4428-a660-593151586822" + } + ] + }, + { + "label": { + "@none": [ + "fol. 66r" + ] + }, + "height": 2114, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_133", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_133", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_133", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2114, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000133_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000133_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94a1319d-2f26-4a24-a4e0-6701dbb5a45e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 66v" + ] + }, + "height": 2051, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_134", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_134", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_134", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000134_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000134_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a45e39c6-1f23-46f9-8d35-178bce703432" + } + ] + }, + { + "label": { + "@none": [ + "fol. 67r" + ] + }, + "height": 2106, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_135", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_135", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_135", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000135_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000135_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87bd03dc-1623-42be-97f7-0cd3e5054e88" + } + ] + }, + { + "label": { + "@none": [ + "fol. 67v" + ] + }, + "height": 2046, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_136", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_136", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_136", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2046, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000136_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000136_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2d08f7a-86bd-4115-ba50-5110610b8fba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 68r" + ] + }, + "height": 2103, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_137", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_137", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_137", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000137_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000137_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa0b2332-92d4-4068-91a2-5e5324d6280b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 68v" + ] + }, + "height": 2048, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_138", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_138", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_138", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000138_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000138_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a921a665-870d-4e17-9aaa-54bceb0b6a97" + } + ] + }, + { + "label": { + "@none": [ + "fol. 69r" + ] + }, + "height": 2116, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_139", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_139", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_139", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000139_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000139_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7aca0fe3-b176-41ba-a209-1382543ee7fa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 69v" + ] + }, + "height": 2054, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_140", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_140", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_140", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000140_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000140_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ed5dfe8-cf95-4e52-9034-cf21499d9365" + } + ] + }, + { + "label": { + "@none": [ + "fol. 70r" + ] + }, + "height": 2129, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_141", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_141", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_141", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2129, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000141_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000141_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/da39967d-db7a-4985-9bcc-80c1364dba90" + } + ] + }, + { + "label": { + "@none": [ + "fol. 70v" + ] + }, + "height": 2064, + "width": 1372, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_142", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_142", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_142", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000142_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000142_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92089389-2051-4485-ad16-c67efce9b944" + } + ] + }, + { + "label": { + "@none": [ + "fol. 71r" + ] + }, + "height": 2113, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_143", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_143", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_143", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000143_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000143_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/757cb879-1081-4f62-b491-154364535f29" + } + ] + }, + { + "label": { + "@none": [ + "fol. 71v" + ] + }, + "height": 2054, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_144", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_144", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_144", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000144_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000144_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/044d7d4a-fa30-4bc8-90f0-6312a29793d5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 72r" + ] + }, + "height": 2056, + "width": 1306, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_145", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_145", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_145", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1306, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000145_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000145_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b0ea72f-5458-4002-8b95-7f7d3a4da070" + } + ] + }, + { + "label": { + "@none": [ + "fol. 72v" + ] + }, + "height": 2069, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_146", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_146", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_146", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000146_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000146_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81328c63-9dcd-4dae-aa8a-acfe54b33994" + } + ] + }, + { + "label": { + "@none": [ + "fol. 73r" + ] + }, + "height": 2067, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_147", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_147", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_147", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000147_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000147_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1818141a-24c0-48f0-9eed-65720dc5416b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 73v" + ] + }, + "height": 2069, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_148", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_148", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_148", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000148_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000148_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10ce3685-b9e4-4fff-966f-cf7f3a9942e3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 74r" + ] + }, + "height": 2108, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_149", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_149", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_149", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000149_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000149_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/01b13dfe-b672-49d4-b2a4-9c82034fc241" + } + ] + }, + { + "label": { + "@none": [ + "fol. 74v" + ] + }, + "height": 2059, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_150", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_150", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_150", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000150_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000150_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/74610e06-2c81-4199-9333-44c1b954a4cb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 75r" + ] + }, + "height": 2092, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_151", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_151", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_151", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2092, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000151_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000151_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92c26548-05a7-4b31-8653-f299a8d4ef29" + } + ] + }, + { + "label": { + "@none": [ + "fol. 75v" + ] + }, + "height": 2059, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_152", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_152", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_152", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000152_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000152_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7e355c7-7e1a-46bb-b188-4d4e648fca6c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 76r" + ] + }, + "height": 2103, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_153", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_153", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_153", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000153_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000153_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b565298c-693a-44d7-b731-0b94806f49b7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 76v" + ] + }, + "height": 2051, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_154", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_154", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_154", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000154_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000154_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/29f3a78c-e397-4b49-8144-b11847f35914" + } + ] + }, + { + "label": { + "@none": [ + "fol. 77r" + ] + }, + "height": 2101, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_155", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_155", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_155", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000155_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000155_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8961e58b-c175-4d28-bcbc-bd7d47cca3d8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 77v" + ] + }, + "height": 2061, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_156", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_156", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_156", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000156_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000156_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a547874-9197-416b-81db-24ae614aaafa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 78r" + ] + }, + "height": 2088, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_157", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_157", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_157", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000157_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000157_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b677fb91-a0ef-4519-bc6d-2efcaa6c82c1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 78v" + ] + }, + "height": 2062, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_158", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_158", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_158", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000158_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000158_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7a3bd8c0-9056-46a0-aa16-ff8d7a034187" + } + ] + }, + { + "label": { + "@none": [ + "fol. 79r" + ] + }, + "height": 2101, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_159", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_159", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_159", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000159_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000159_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/014046ab-9a89-4f91-bae6-6e9d8604d8c2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 79v" + ] + }, + "height": 2074, + "width": 1355, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_160", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_160", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_160", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000160_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000160_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cc862677-4b7e-49eb-9cd4-06185aa1ec84" + } + ] + }, + { + "label": { + "@none": [ + "fol. 80r" + ] + }, + "height": 2098, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_161", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_161", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_161", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000161_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000161_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/125ec955-3333-40fb-a0f2-2f546ceb8443" + } + ] + }, + { + "label": { + "@none": [ + "fol. 80v" + ] + }, + "height": 2054, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_162", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_162", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_162", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000162_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000162_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e758d759-60fa-4689-9156-b8fbd264c199" + } + ] + }, + { + "label": { + "@none": [ + "fol. 81r" + ] + }, + "height": 2095, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_163", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_163", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_163", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000163_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000163_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9825469-044e-4c85-a533-46a2ff8112fd" + } + ] + }, + { + "label": { + "@none": [ + "fol. 81v" + ] + }, + "height": 2054, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_164", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_164", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_164", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000164_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000164_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce1af023-5d35-4ea2-8dc0-69b8f73c768e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 82r" + ] + }, + "height": 2098, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_165", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_165", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_165", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000165_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000165_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d0bfc9e4-32bc-4e0c-8f66-4122255b48e4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 82v" + ] + }, + "height": 2066, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_166", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_166", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_166", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000166_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000166_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/516aebd0-7531-425f-a7ef-6dd36ba0686f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 83r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_167", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_167", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_167", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000167_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000167_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/02eafd3d-ae14-4c7f-bcaf-1cb445db3468" + } + ] + }, + { + "label": { + "@none": [ + "fol. 83v" + ] + }, + "height": 2046, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_168", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_168", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_168", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2046, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000168_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000168_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2fc0fcbf-2cb1-4986-843a-8fddbfeecf7c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 84r" + ] + }, + "height": 2111, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_169", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_169", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_169", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000169_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000169_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55350736-0972-4841-bb0f-9f7e95275864" + } + ] + }, + { + "label": { + "@none": [ + "fol. 84v" + ] + }, + "height": 2072, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_170", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_170", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_170", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000170_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000170_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00fb3b00-f67d-4b1e-ab3c-14e55cb9d6ab" + } + ] + }, + { + "label": { + "@none": [ + "fol. 85r" + ] + }, + "height": 2108, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_171", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_171", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_171", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000171_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000171_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2b18f4e3-008e-4417-b2ed-32a2af84b951" + } + ] + }, + { + "label": { + "@none": [ + "fol. 85v" + ] + }, + "height": 2062, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_172", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_172", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_172", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000172_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000172_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72ab008f-e9f1-4b05-ad63-e70566552e68" + } + ] + }, + { + "label": { + "@none": [ + "fol. 86r" + ] + }, + "height": 2101, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_173", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_173", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_173", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000173_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000173_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad18230a-e81e-4044-92fc-f8fbae508c5a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 86v" + ] + }, + "height": 2030, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_174", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_174", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_174", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2030, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000174_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000174_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dfac2595-31c7-4767-b460-8b9aed02c01a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 87r" + ] + }, + "height": 2085, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_175", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_175", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_175", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000175_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000175_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c69f80f3-c9e8-4f57-80b6-3bd547f56302" + } + ] + }, + { + "label": { + "@none": [ + "fol. 87v" + ] + }, + "height": 2051, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_176", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_176", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_176", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2051, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000176_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000176_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/427acb05-a3f7-4d9e-abfd-aa971ea6396a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 88r" + ] + }, + "height": 2079, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_177", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_177", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_177", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2079, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000177_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000177_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/46c09e3d-e413-4e58-a87d-d572687e69a6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 88v" + ] + }, + "height": 2082, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_178", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_178", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_178", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000178_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000178_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42be033b-609b-4cc4-b7f0-1b364ba6d565" + } + ] + }, + { + "label": { + "@none": [ + "fol. 89r" + ] + }, + "height": 2098, + "width": 1314, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_179", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_179", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_179", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1314, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000179_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000179_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42b0a961-b469-43d1-96ff-de778455ff60" + } + ] + }, + { + "label": { + "@none": [ + "fol. 89v" + ] + }, + "height": 2070, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_180", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_180", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_180", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2070, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000180_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000180_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a939d70e-0392-4265-96cb-6532ddf84e63" + } + ] + }, + { + "label": { + "@none": [ + "fol. 90r" + ] + }, + "height": 2106, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_181", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_181", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_181", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000181_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000181_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05cef06c-dd30-42a7-87ff-2955e0705150" + } + ] + }, + { + "label": { + "@none": [ + "fol. 90v" + ] + }, + "height": 2062, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_182", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_182", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_182", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000182_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000182_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/74ed5667-3627-44bf-9483-51932f8875f3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 91r" + ] + }, + "height": 2116, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_183", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_183", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_183", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000183_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000183_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8a4bc02c-a51e-4617-b3d7-6f69982802f8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 91v" + ] + }, + "height": 2082, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_184", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_184", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_184", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000184_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000184_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7cd02452-6383-4906-9d35-0241f0819c79" + } + ] + }, + { + "label": { + "@none": [ + "fol. 92r" + ] + }, + "height": 2113, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_185", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_185", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_185", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000185_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000185_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0c27dbdc-93f4-4a0a-ad25-d67701e72b0d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 92v" + ] + }, + "height": 2060, + "width": 1319, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_186", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_186", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_186", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2060, + "width": 1319, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000186_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000186_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7097a98b-313e-47c8-866f-1e4c437813af" + } + ] + }, + { + "label": { + "@none": [ + "fol. 93r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_187", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_187", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_187", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000187_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000187_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c13e5e34-5a8a-48b1-a899-bbf1c1a2b0cf" + } + ] + }, + { + "label": { + "@none": [ + "fol. 93v" + ] + }, + "height": 2077, + "width": 1366, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_188", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_188", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_188", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1366, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000188_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000188_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/455ab701-eb0d-4c0e-a400-ee788bd4c83c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 94r" + ] + }, + "height": 2116, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_189", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_189", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_189", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000189_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000189_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dcd37114-712d-4bd5-a02e-3c9c124857fa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 94v" + ] + }, + "height": 2077, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_190", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_190", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_190", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000190_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000190_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f86bd2dd-df5d-4ae1-8d74-29fac733f47c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 95r" + ] + }, + "height": 2108, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_191", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_191", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_191", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000191_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000191_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad4b4d1d-dc67-4830-b141-dcaa32d8355f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 95v" + ] + }, + "height": 2059, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_192", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_192", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_192", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000192_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000192_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a831c20-274d-46b3-840f-18ebeb80287d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 96r" + ] + }, + "height": 2095, + "width": 1342, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_193", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_193", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_193", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1342, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000193_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000193_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2be7a71f-15c1-4239-b354-1fdace56ff3c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 96v" + ] + }, + "height": 2056, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_194", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_194", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_194", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000194_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000194_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/752e360e-fec4-405c-ae28-616b2792ab6c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 97r" + ] + }, + "height": 2104, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_195", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_195", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_195", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2104, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000195_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000195_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b99fe5e9-41c5-4513-8b22-bca2c1e8cefa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 97v" + ] + }, + "height": 2056, + "width": 1324, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_196", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_196", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_196", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1324, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000196_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000196_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/09d3ac7c-10f2-4109-a710-70adf52ae618" + } + ] + }, + { + "label": { + "@none": [ + "fol. 98r" + ] + }, + "height": 2111, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_197", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_197", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_197", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000197_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000197_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14eb8821-c6fc-4ca3-9ca9-c77ecd99c8e8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 98v" + ] + }, + "height": 2048, + "width": 1316, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_198", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_198", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_198", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000198_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000198_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60d4449d-83c0-4dfd-b58e-b4564fcf2c6a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 99r" + ] + }, + "height": 2103, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_199", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_199", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_199", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000199_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000199_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a973d19b-1e61-4120-a6be-06c873425b85" + } + ] + }, + { + "label": { + "@none": [ + "fol. 99v" + ] + }, + "height": 2074, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_200", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_200", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_200", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000200_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000200_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ef670ec-d705-4e65-ab83-25354b2a1350" + } + ] + }, + { + "label": { + "@none": [ + "fol. 100r" + ] + }, + "height": 2069, + "width": 1324, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_201", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_201", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_201", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1324, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000201_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000201_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7faf52ca-dcdc-4c35-ab7e-794b0b4e4c1e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 100v" + ] + }, + "height": 2069, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_202", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_202", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_202", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000202_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000202_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e029e192-44af-46e5-9618-94d614697c67" + } + ] + }, + { + "label": { + "@none": [ + "fol. 101r" + ] + }, + "height": 2099, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_203", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_203", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_203", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2099, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000203_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000203_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68b6fc52-241e-4d91-b301-3314df43c3e4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 101v" + ] + }, + "height": 2085, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_204", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_204", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_204", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000204_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000204_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4687ade-452a-4beb-ab1f-9849dc8e27ba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 102r" + ] + }, + "height": 2066, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_205", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_205", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_205", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000205_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000205_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33b3e379-ced3-4f43-bcae-ce07e91c370f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 102v" + ] + }, + "height": 2049, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_206", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_206", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_206", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2049, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000206_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000206_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/840be702-3828-44a4-9e4f-3242ad4a047a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 103r" + ] + }, + "height": 2111, + "width": 1359, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_207", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_207", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_207", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1359, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000207_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000207_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1221449d-5ab4-4159-acb3-1dc3932e9b38" + } + ] + }, + { + "label": { + "@none": [ + "fol. 103v" + ] + }, + "height": 2055, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_208", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_208", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_208", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2055, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000208_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000208_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fd32d30-bfd5-4f8b-aaa7-3705b58a7753" + } + ] + }, + { + "label": { + "@none": [ + "fol. 104r" + ] + }, + "height": 2103, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_209", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_209", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_209", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000209_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000209_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef88f866-e5ab-47c4-a867-1313ce96cb4f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 104v" + ] + }, + "height": 2058, + "width": 1357, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_210", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_210", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_210", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1357, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000210_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000210_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d40e84c-37d9-4cb9-a9cd-77a49bc9eaac" + } + ] + }, + { + "label": { + "@none": [ + "fol. 105r" + ] + }, + "height": 2071, + "width": 1333, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_211", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_211", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_211", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1333, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000211_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000211_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48c9db7d-e828-4d84-af43-9eef4f290f2f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 105v" + ] + }, + "height": 2067, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_212", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_212", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_212", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000212_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000212_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75f7a2d3-5b30-4907-be02-ddfc8c9f6207" + } + ] + }, + { + "label": { + "@none": [ + "fol. 106r" + ] + }, + "height": 2069, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_213", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_213", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_213", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000213_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000213_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0de4c15-7248-4f97-a32e-79fc8bfdc917" + } + ] + }, + { + "label": { + "@none": [ + "fol. 106v" + ] + }, + "height": 2048, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_214", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_214", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_214", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000214_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000214_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e69a7f4b-6350-4c55-aa3f-83f71cbc45ea" + } + ] + }, + { + "label": { + "@none": [ + "fol. 107r" + ] + }, + "height": 2085, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_215", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_215", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_215", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000215_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000215_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b50f840-7e5a-4d30-8866-6d539425390e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 107v" + ] + }, + "height": 2048, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_216", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_216", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_216", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000216_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000216_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1cf62406-81d5-46dc-a5d5-9520290d36f8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 108r" + ] + }, + "height": 2071, + "width": 1318, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_217", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_217", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_217", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1318, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000217_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000217_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad7d5187-9377-4850-8c12-4a1b54d01590" + } + ] + }, + { + "label": { + "@none": [ + "fol. 108v" + ] + }, + "height": 2068, + "width": 1346, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_218", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_218", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_218", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2068, + "width": 1346, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000218_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000218_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8f36925-5eb1-4a95-b48f-c288f52e98d3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 109r" + ] + }, + "height": 2103, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_219", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_219", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_219", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000219_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000219_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d512ff46-1409-45ea-8ddb-d5ea07af7c4e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 109v" + ] + }, + "height": 2072, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_220", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_220", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_220", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000220_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000220_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e410867-88a0-47b8-b56a-423a32e49f98" + } + ] + }, + { + "label": { + "@none": [ + "fol. 110r" + ] + }, + "height": 2108, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_221", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_221", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_221", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000221_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000221_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/889798fa-8974-4ce7-af37-a0e034f3e3cc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 110v" + ] + }, + "height": 2067, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_222", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_222", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_222", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000222_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000222_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa07f58f-0622-47c8-92ec-da6a33b0e15f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 111r" + ] + }, + "height": 2103, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_223", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_223", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_223", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000223_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000223_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/637c682a-dc73-40fd-98d5-1780372d9930" + } + ] + }, + { + "label": { + "@none": [ + "fol. 111v" + ] + }, + "height": 2059, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_224", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_224", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_224", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000224_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000224_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/adc3f0b7-4eb5-4027-aa77-379ffbe67b6d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 112r" + ] + }, + "height": 2098, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_225", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_225", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_225", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000225_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000225_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5a4221e7-7943-454c-a5a9-a72378ffa3b9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 112v" + ] + }, + "height": 2054, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_226", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_226", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_226", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2054, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000226_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000226_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2d0ed0f9-a930-446b-9933-136bdd97b16c" + } + ] + }, + { + "label": { + "@none": [ + "fol. 113r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_227", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_227", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_227", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000227_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000227_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4f1a67a-21bd-427b-83cf-28e838acb325" + } + ] + }, + { + "label": { + "@none": [ + "fol. 113v" + ] + }, + "height": 2077, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_228", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_228", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_228", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000228_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000228_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2dd98be6-4d87-4743-9b41-fed8bedde157" + } + ] + }, + { + "label": { + "@none": [ + "fol. 114r" + ] + }, + "height": 2101, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_229", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_229", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_229", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000229_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000229_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e86288eb-f7b1-40df-9d37-f205c6c80599" + } + ] + }, + { + "label": { + "@none": [ + "fol. 114v" + ] + }, + "height": 2048, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_230", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_230", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_230", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000230_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000230_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5ec293ba-b84b-4a00-9d30-45211bb768b1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 115r" + ] + }, + "height": 2108, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_231", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_231", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_231", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000231_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000231_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9432430-1d3c-4622-b6ce-c2d4f7c26f52" + } + ] + }, + { + "label": { + "@none": [ + "fol. 115v" + ] + }, + "height": 2090, + "width": 1366, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_232", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_232", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_232", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1366, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000232_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000232_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4cfb0134-df04-41c3-b925-e6cda381d239" + } + ] + }, + { + "label": { + "@none": [ + "fol. 116r" + ] + }, + "height": 2069, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_233", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_233", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_233", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000233_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000233_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/196838e4-e455-44e7-ba38-eae9670cc335" + } + ] + }, + { + "label": { + "@none": [ + "fol. 116v" + ] + }, + "height": 2085, + "width": 1324, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_234", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_234", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_234", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1324, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000234_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000234_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c58bb79b-6009-49f1-8dc9-184e755780cd" + } + ] + }, + { + "label": { + "@none": [ + "fol. 117r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_235", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_235", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_235", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000235_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000235_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15c5cbd3-35f6-4d71-b39c-6763074df303" + } + ] + }, + { + "label": { + "@none": [ + "fol. 117v" + ] + }, + "height": 2091, + "width": 1370, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_236", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_236", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_236", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2091, + "width": 1370, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000236_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000236_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/daf6776b-35ee-49b6-b89b-e15c43dceca6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 118r" + ] + }, + "height": 2112, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_237", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_237", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_237", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2112, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000237_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000237_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85829b7d-6f42-4f17-94a1-c68448886f38" + } + ] + }, + { + "label": { + "@none": [ + "fol. 118v" + ] + }, + "height": 2077, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_238", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_238", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_238", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000238_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000238_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63ef5f31-fb13-4cac-9034-e60fde7b21af" + } + ] + }, + { + "label": { + "@none": [ + "fol. 119r" + ] + }, + "height": 2103, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_239", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_239", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_239", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000239_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000239_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a94ea73f-562f-4726-bb02-bfd7b84ba402" + } + ] + }, + { + "label": { + "@none": [ + "fol. 119v" + ] + }, + "height": 2074, + "width": 1329, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_240", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_240", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_240", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1329, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000240_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000240_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3293e29-68f5-4a4d-b91a-3c04309cbffe" + } + ] + }, + { + "label": { + "@none": [ + "fol. 120r" + ] + }, + "height": 2108, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_241", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_241", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_241", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000241_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000241_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a08b2390-8a9c-45a4-ae84-a8c5f5ec0f2d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 120v" + ] + }, + "height": 2089, + "width": 1361, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_242", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_242", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_242", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2089, + "width": 1361, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000242_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000242_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67fa7591-8ded-48f0-9be5-53521ec1dd3e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 121r" + ] + }, + "height": 2121, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_243", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_243", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_243", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2121, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000243_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000243_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4eae7dc8-e786-4a16-a1ef-61d1eba03cf0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 121v" + ] + }, + "height": 2082, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_244", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_244", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_244", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000244_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000244_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8bd3ab9a-95b4-4437-997b-b16cc45fbdfb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 122r" + ] + }, + "height": 2098, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_245", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_245", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_245", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000245_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000245_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a7d516e1-d843-4d13-beb2-7448c2a5259b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 122v" + ] + }, + "height": 2090, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_246", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_246", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_246", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000246_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000246_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e984f45e-dca4-47f3-8470-42cecb8f31b8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 123r" + ] + }, + "height": 2108, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_247", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_247", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_247", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000247_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000247_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c643c41a-fc53-49bf-9792-1c2c2c6dcbbc" + } + ] + }, + { + "label": { + "@none": [ + "fol. 123v" + ] + }, + "height": 2085, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_248", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_248", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_248", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000248_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000248_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b06f9f48-e364-48fc-bc64-1a6f525c1b45" + } + ] + }, + { + "label": { + "@none": [ + "fol. 124r" + ] + }, + "height": 2121, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_249", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_249", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_249", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2121, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000249_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000249_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/357af3ca-1b9d-4eb5-b50b-1d698944c92e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 124v" + ] + }, + "height": 2067, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_250", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_250", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_250", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000250_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000250_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54d96fca-9796-4594-b673-68ea5b919868" + } + ] + }, + { + "label": { + "@none": [ + "fol. 125r" + ] + }, + "height": 2106, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_251", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_251", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_251", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000251_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000251_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d5cb8e71-9743-4ed3-81f7-42aed24ede60" + } + ] + }, + { + "label": { + "@none": [ + "fol. 125v" + ] + }, + "height": 2088, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_252", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_252", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_252", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000252_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000252_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c695ce62-b1ec-407a-95e2-e122bcfdea70" + } + ] + }, + { + "label": { + "@none": [ + "fol. 126r" + ] + }, + "height": 2085, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_253", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_253", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_253", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000253_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000253_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a5506b7-474d-4cc9-aa0c-4d1d464f5857" + } + ] + }, + { + "label": { + "@none": [ + "fol. 126v" + ] + }, + "height": 2071, + "width": 1359, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_254", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_254", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_254", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1359, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000254_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000254_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75e15d99-9430-4f53-ace1-4de62111c9b4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 127r" + ] + }, + "height": 2064, + "width": 1313, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_255", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_255", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_255", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1313, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000255_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000255_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cfb24772-f132-431e-9be3-6cb7a0dcfcf0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 127v" + ] + }, + "height": 2097, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_256", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_256", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_256", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2097, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000256_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000256_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70166c4f-4137-432b-b5a0-654fa30ece19" + } + ] + }, + { + "label": { + "@none": [ + "fol. 128r" + ] + }, + "height": 2105, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_257", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_257", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_257", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000257_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000257_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/efac2479-3a8a-407c-8906-81b7e6d684ff" + } + ] + }, + { + "label": { + "@none": [ + "fol. 128v" + ] + }, + "height": 2095, + "width": 1362, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_258", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_258", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_258", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1362, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000258_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000258_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93d653ca-c6d5-44eb-9838-ec31c5479699" + } + ] + }, + { + "label": { + "@none": [ + "fol. 129r" + ] + }, + "height": 2062, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_259", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_259", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_259", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000259_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000259_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0682df1-7d2d-4732-b7af-4d7552fe6198" + } + ] + }, + { + "label": { + "@none": [ + "fol. 129v" + ] + }, + "height": 2081, + "width": 1346, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_260", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_260", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_260", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1346, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000260_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000260_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/abf5e971-598a-46de-aaf3-c7ceb1c92046" + } + ] + }, + { + "label": { + "@none": [ + "fol. 130r" + ] + }, + "height": 2105, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_261", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_261", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_261", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000261_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000261_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6360a05d-b502-41fe-bc10-168b809ce9bb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 130v" + ] + }, + "height": 2090, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_262", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_262", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_262", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000262_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000262_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe1e25f9-63c2-4ceb-bfef-804af8167aa1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 131r" + ] + }, + "height": 2058, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_263", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_263", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_263", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000263_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000263_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7fc322a6-327d-4ac5-938d-3bb3016df6ba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 131v" + ] + }, + "height": 2079, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_264", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_264", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_264", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2079, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000264_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000264_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ad1851b-a6b9-4c6d-a837-cb5f013df669" + } + ] + }, + { + "label": { + "@none": [ + "fol. 132r" + ] + }, + "height": 2101, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_265", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_265", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_265", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000265_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000265_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/78d06702-4738-4f56-afff-72db46dd7ea4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 132v" + ] + }, + "height": 2080, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_266", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_266", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_266", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000266_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000266_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/370b3ac1-4334-4bd8-a51c-4f3b1e8c3d4f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 133r" + ] + }, + "height": 2100, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_267", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_267", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_267", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000267_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000267_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7944ec2a-6f35-4573-a77e-59361d593a3d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 133v" + ] + }, + "height": 2067, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_268", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_268", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_268", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2067, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000268_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000268_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7cbd737-e802-405a-b0ac-d484e61f438d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 134r" + ] + }, + "height": 2103, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_269", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_269", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_269", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000269_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000269_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65152c4d-c4c2-4a40-9d44-c770efcbbf87" + } + ] + }, + { + "label": { + "@none": [ + "fol. 134v" + ] + }, + "height": 2074, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_270", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_270", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_270", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000270_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000270_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9137b33-a9c3-47d6-a168-c4d8e1f3ca70" + } + ] + }, + { + "label": { + "@none": [ + "fol. 135r" + ] + }, + "height": 2097, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_271", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_271", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_271", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2097, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000271_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000271_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/626157ac-d3a3-4d05-b42e-50ede15c8e09" + } + ] + }, + { + "label": { + "@none": [ + "fol. 135v" + ] + }, + "height": 2082, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_272", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_272", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_272", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000272_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000272_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f9833dd-01ac-4081-a810-fab156fcf88e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 136r" + ] + }, + "height": 2116, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_273", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_273", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_273", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000273_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000273_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f072fc6-00df-4164-9e5b-0c964bec7bd4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 136v" + ] + }, + "height": 2080, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_274", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_274", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_274", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000274_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000274_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f12e7eb-d42e-4cd7-91ad-f93f2b568578" + } + ] + }, + { + "label": { + "@none": [ + "fol. 137r" + ] + }, + "height": 2111, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_275", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_275", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_275", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000275_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000275_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/308a6a4d-27e1-4a61-8899-ac6f37db629d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 137v" + ] + }, + "height": 2075, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_276", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_276", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_276", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000276_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000276_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3dd92b80-509d-4f8f-b853-92224b43139e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 138r" + ] + }, + "height": 2108, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_277", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_277", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_277", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000277_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000277_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef4ea391-ee99-4e29-b8e3-f176fda45014" + } + ] + }, + { + "label": { + "@none": [ + "fol. 138v" + ] + }, + "height": 2075, + "width": 1346, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_278", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_278", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_278", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1346, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000278_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000278_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87e10a89-b594-4cfc-876f-b28723886a49" + } + ] + }, + { + "label": { + "@none": [ + "fol. 139r" + ] + }, + "height": 2112, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_279", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_279", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_279", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2112, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000279_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000279_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f8dc148a-69f3-472e-8272-0a36d59441f9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 139v" + ] + }, + "height": 2075, + "width": 1317, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_280", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_280", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_280", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1317, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000280_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000280_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b17f33a9-f9da-4217-8f80-70eb6a323ca5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 140r" + ] + }, + "height": 2111, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_281", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_281", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_281", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000281_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000281_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59af3123-0c7d-4371-b91a-efa6486d7b3a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 140v" + ] + }, + "height": 2095, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_282", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_282", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_282", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000282_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000282_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e4b5566-6468-479d-b039-3a127ac1ec67" + } + ] + }, + { + "label": { + "@none": [ + "fol. 141r" + ] + }, + "height": 2069, + "width": 1319, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_283", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_283", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_283", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1319, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000283_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000283_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/654c937a-a04f-4cbb-bb2a-a91efc6741a8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 141v" + ] + }, + "height": 2069, + "width": 1325, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_284", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_284", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_284", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1325, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000284_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000284_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea4a75ce-eba9-4fc7-81e7-80a00d28a998" + } + ] + }, + { + "label": { + "@none": [ + "fol. 142r" + ] + }, + "height": 2098, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_285", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_285", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_285", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000285_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000285_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6215a8d4-d149-46ca-9143-90a50141ce46" + } + ] + }, + { + "label": { + "@none": [ + "fol. 142v" + ] + }, + "height": 2082, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_286", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_286", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_286", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000286_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000286_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/341a52a8-74b9-48d1-9e70-12bf48582e2b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 143r" + ] + }, + "height": 2083, + "width": 1313, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_287", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_287", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_287", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2083, + "width": 1313, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000287_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000287_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37be9f45-782c-473c-83a7-f6ac7e966dfb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 143v" + ] + }, + "height": 2087, + "width": 1334, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_288", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_288", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_288", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2087, + "width": 1334, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000288_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000288_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7445a1a3-f531-464a-866b-c6f3ac19e824" + } + ] + }, + { + "label": { + "@none": [ + "fol. 144r" + ] + }, + "height": 2105, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_289", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_289", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_289", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000289_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000289_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a84619b-7632-4bf3-ab63-ea374efc2916" + } + ] + }, + { + "label": { + "@none": [ + "fol. 144v" + ] + }, + "height": 2080, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_290", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_290", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_290", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000290_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000290_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62f5bc85-eafe-4d48-8a89-a32bc2ece298" + } + ] + }, + { + "label": { + "@none": [ + "fol. 145r" + ] + }, + "height": 2116, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_291", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_291", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_291", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000291_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000291_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/71cc5c3a-561f-4dc0-abbd-98490fd55a15" + } + ] + }, + { + "label": { + "@none": [ + "fol. 145v" + ] + }, + "height": 2093, + "width": 1344, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_292", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_292", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_292", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1344, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000292_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000292_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ab24406-9b0c-495b-be79-646b4a314e25" + } + ] + }, + { + "label": { + "@none": [ + "fol. 146r" + ] + }, + "height": 2080, + "width": 1354, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_293", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_293", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_293", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1354, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000293_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000293_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94d10ce5-aca0-4fb5-a1db-ccf30d07c7d8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 146v" + ] + }, + "height": 2093, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_294", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_294", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_294", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000294_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000294_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/883d3050-2ede-4c9c-ae63-9f803a3e4507" + } + ] + }, + { + "label": { + "@none": [ + "fol. 147r" + ] + }, + "height": 2093, + "width": 1312, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_295", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_295", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_295", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1312, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000295_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000295_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b2d0de1a-4be8-4dd1-a89a-b4f97cadc2ed" + } + ] + }, + { + "label": { + "@none": [ + "fol. 147v" + ] + }, + "height": 2088, + "width": 1333, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_296", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_296", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_296", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2088, + "width": 1333, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000296_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000296_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a89bb7e6-c80c-4380-be0a-6eda1f88fa68" + } + ] + }, + { + "label": { + "@none": [ + "fol. 148r" + ] + }, + "height": 2093, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_297", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_297", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_297", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000297_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000297_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f047f9cb-5e18-4e72-9320-be794054fa07" + } + ] + }, + { + "label": { + "@none": [ + "fol. 148v" + ] + }, + "height": 2081, + "width": 1365, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_298", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_298", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_298", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1365, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000298_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000298_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/595f7dd8-c27e-4dfd-8915-23975c9d93b8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 149r" + ] + }, + "height": 2048, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_299", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_299", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_299", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000299_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000299_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b7d34a2-c4e9-4523-a9b8-da326ac294c6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 149v" + ] + }, + "height": 2065, + "width": 1318, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_300", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_300", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_300", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2065, + "width": 1318, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000300_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000300_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/17d4b503-261e-4fbd-a385-4193ccb37f8e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 150r" + ] + }, + "height": 2064, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_301", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_301", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_301", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000301_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000301_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff0912fc-c973-4bcf-8fdd-0cd6cace80c1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 150v" + ] + }, + "height": 2061, + "width": 1331, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_302", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_302", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_302", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1331, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000302_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000302_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e1e1b910-6ca3-4ed6-8850-74df09b08fb0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 151r" + ] + }, + "height": 2090, + "width": 1366, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_303", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_303", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_303", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1366, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000303_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000303_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82678f2b-84bd-47b4-a7f0-48318c0dbfe2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 151v" + ] + }, + "height": 2086, + "width": 1336, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_304", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_304", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_304", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2086, + "width": 1336, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000304_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000304_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/283fbd60-5b95-45c4-9c4b-e0d46dcf0c02" + } + ] + }, + { + "label": { + "@none": [ + "fol. 152r" + ] + }, + "height": 2111, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_305", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_305", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_305", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000305_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000305_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/154f6ecc-3d85-491b-8650-ddb64521503e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 152v" + ] + }, + "height": 2068, + "width": 1315, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_306", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_306", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_306", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2068, + "width": 1315, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000306_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000306_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a9df1eb5-171b-4cca-a012-5ee52dc18f85" + } + ] + }, + { + "label": { + "@none": [ + "fol. 153r" + ] + }, + "height": 2100, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_307", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_307", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_307", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000307_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000307_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/30f5b4a8-99bb-413d-b3f8-99cbd06fecae" + } + ] + }, + { + "label": { + "@none": [ + "fol. 153v" + ] + }, + "height": 2066, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_308", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_308", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_308", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000308_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000308_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31c5a353-579c-4aa3-8acc-87eca52f2214" + } + ] + }, + { + "label": { + "@none": [ + "fol. 154r" + ] + }, + "height": 2095, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_309", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_309", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_309", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000309_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000309_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dbaf2d25-8774-494e-ab67-208034fdb3e0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 154v" + ] + }, + "height": 2074, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_310", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_310", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_310", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000310_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000310_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c65cb452-1998-4e8d-b6ba-39dbd2a2feba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 155r" + ] + }, + "height": 2111, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_311", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_311", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_311", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000311_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000311_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22e188d8-9511-4c4a-85a0-515453cb3ce7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 155v" + ] + }, + "height": 2069, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_312", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_312", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_312", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000312_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000312_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d90ae4de-0842-4052-bd79-b8c2a006606f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 156r" + ] + }, + "height": 2098, + "width": 1364, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_313", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_313", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_313", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1364, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000313_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000313_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d35ec94d-8c6c-47df-8731-0c2959654f0d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 156v" + ] + }, + "height": 2069, + "width": 1316, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_314", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_314", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_314", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000314_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000314_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44d8fc1e-d536-4d53-9675-b7808073a5f4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 157r" + ] + }, + "height": 2103, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_315", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_315", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_315", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000315_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000315_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/694b6713-457c-4e6f-8d72-55622f5afb5d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 157v" + ] + }, + "height": 2077, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_316", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_316", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_316", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000316_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000316_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83cb81bc-28ed-42fd-bf71-8cad2f39192e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 158r" + ] + }, + "height": 2101, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_317", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_317", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_317", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000317_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000317_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15144d00-41cb-49a6-8375-3df0a4ef2e22" + } + ] + }, + { + "label": { + "@none": [ + "fol. 158v" + ] + }, + "height": 2074, + "width": 1316, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_318", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_318", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_318", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1316, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000318_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000318_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/23c5313e-1154-4904-996f-624c24be6507" + } + ] + }, + { + "label": { + "@none": [ + "fol. 159r" + ] + }, + "height": 2103, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_319", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_319", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_319", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000319_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000319_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb57804d-e10f-4e3a-bfad-740db3b4f125" + } + ] + }, + { + "label": { + "@none": [ + "fol. 159v" + ] + }, + "height": 2080, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_320", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_320", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_320", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000320_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000320_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c191b46c-cd38-429a-bdee-6ee070f410f5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 160r" + ] + }, + "height": 2111, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_321", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_321", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_321", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000321_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000321_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b523d425-a64b-4fb7-8351-c53d4e7bc5d1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 160v" + ] + }, + "height": 2085, + "width": 1312, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_322", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_322", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_322", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1312, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000322_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000322_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6765a7d5-eb69-4b48-b486-82252fe01b7d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 161r" + ] + }, + "height": 2072, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_323", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_323", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_323", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000323_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000323_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8dc2c756-56a3-42e6-bcab-60691425ba3e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 161v" + ] + }, + "height": 2075, + "width": 1314, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_324", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_324", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_324", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1314, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000324_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000324_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bcf34bf-c16f-4b6a-b751-95948cfda6a4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 162r" + ] + }, + "height": 2064, + "width": 1350, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_325", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_325", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_325", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1350, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000325_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000325_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/da1da2cc-edd9-4bd6-b77e-083270f9c8e3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 162v" + ] + }, + "height": 2069, + "width": 1304, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_326", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_326", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_326", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1304, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000326_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000326_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd3a48bd-2335-4d40-980e-820c373ecbb7" + } + ] + }, + { + "label": { + "@none": [ + "fol. 163r" + ] + }, + "height": 2087, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_327", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_327", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_327", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2087, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000327_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000327_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/957319fe-a0e4-4814-8df8-9f0bd41ebc21" + } + ] + }, + { + "label": { + "@none": [ + "fol. 163v" + ] + }, + "height": 2066, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_328", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_328", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_328", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000328_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000328_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf38286e-b70a-47a0-9276-4f16310e82e6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 164r" + ] + }, + "height": 2103, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_329", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_329", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_329", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000329_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000329_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/262be52a-100c-4fad-8c42-9958f74a61d6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 164v" + ] + }, + "height": 2072, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_330", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_330", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_330", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000330_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000330_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68328c7c-d17c-4c73-b0d4-a20232bcb1a5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 165r" + ] + }, + "height": 2103, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_331", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_331", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_331", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000331_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000331_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f80b3294-1bea-4982-927b-6d8986b33b43" + } + ] + }, + { + "label": { + "@none": [ + "fol. 165v" + ] + }, + "height": 2072, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_332", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_332", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_332", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000332_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000332_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/82079b33-a3f8-4311-a11c-90cd49f37486" + } + ] + }, + { + "label": { + "@none": [ + "fol. 166r" + ] + }, + "height": 2066, + "width": 1317, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_333", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_333", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_333", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1317, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000333_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000333_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/864d8e32-cca3-4b37-a9ba-a4920b88a586" + } + ] + }, + { + "label": { + "@none": [ + "fol. 166v" + ] + }, + "height": 2069, + "width": 1319, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_334", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_334", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_334", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1319, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000334_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000334_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0495e6ba-4996-47a1-8c2b-2c681bbc609d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 167r" + ] + }, + "height": 2096, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_335", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_335", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_335", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2096, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000335_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000335_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edf35f96-8c29-4f8e-b501-94a1a022ff92" + } + ] + }, + { + "label": { + "@none": [ + "fol. 167v" + ] + }, + "height": 2077, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_336", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_336", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_336", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000336_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000336_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fadbf231-bf34-46bb-8395-6489babb3952" + } + ] + }, + { + "label": { + "@none": [ + "fol. 168r" + ] + }, + "height": 2103, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_337", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_337", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_337", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000337_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000337_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd302527-e670-4d6f-ae13-9d33b4c1ea0b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 168v" + ] + }, + "height": 2072, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_338", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_338", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_338", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000338_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000338_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87c217f1-8c08-4297-9442-008aee2bb525" + } + ] + }, + { + "label": { + "@none": [ + "fol. 169r" + ] + }, + "height": 2101, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_339", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_339", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_339", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000339_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000339_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/777083d5-0e25-4c32-be73-690b7ee1c4f6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 169v" + ] + }, + "height": 2082, + "width": 1327, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_340", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_340", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_340", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1327, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000340_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000340_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ca2ef16-c72a-48e2-8ea2-a1538a1bbb75" + } + ] + }, + { + "label": { + "@none": [ + "fol. 170r" + ] + }, + "height": 2090, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_341", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_341", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_341", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000341_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000341_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61e76ddb-6268-4144-950f-cfdeaa4649c0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 170v" + ] + }, + "height": 2056, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_342", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_342", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_342", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000342_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000342_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b46f9a7-2bf4-4e76-be0a-f12873a31392" + } + ] + }, + { + "label": { + "@none": [ + "fol. 171r" + ] + }, + "height": 2095, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_343", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_343", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_343", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000343_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000343_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/96f2b05f-2f21-4d02-8f46-79c8e3961249" + } + ] + }, + { + "label": { + "@none": [ + "fol. 171v" + ] + }, + "height": 2072, + "width": 1309, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_344", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_344", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_344", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1309, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000344_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000344_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52e98cb6-5dfe-4bb3-a639-65762b5929cd" + } + ] + }, + { + "label": { + "@none": [ + "fol. 172r" + ] + }, + "height": 2103, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_345", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_345", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_345", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000345_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000345_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1aca67ab-813b-4617-b9fb-92acc3a1e5f3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 172v" + ] + }, + "height": 2077, + "width": 1311, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_346", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_346", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_346", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1311, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000346_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000346_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/afaa5a08-3371-43c7-9dcd-fd5f6714fea4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 173r" + ] + }, + "height": 2106, + "width": 1337, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_347", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_347", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_347", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1337, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000347_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000347_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1631c977-ff02-4526-b364-ba4c0774f197" + } + ] + }, + { + "label": { + "@none": [ + "fol. 173v" + ] + }, + "height": 2076, + "width": 1298, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_348", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_348", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_348", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2076, + "width": 1298, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000348_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000348_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ee92d03-1aa0-4faf-a44d-4e357bb076aa" + } + ] + }, + { + "label": { + "@none": [ + "fol. 174r" + ] + }, + "height": 2103, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_349", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_349", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_349", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000349_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000349_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1dfd886c-052f-4c1e-891a-4ffb3bcc613e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 174v" + ] + }, + "height": 2081, + "width": 1326, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_350", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_350", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_350", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1326, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000350_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000350_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/92f275c1-43c5-4037-a12e-3954a30ad634" + } + ] + }, + { + "label": { + "@none": [ + "fol. 175r" + ] + }, + "height": 2095, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_351", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_351", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_351", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2095, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000351_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000351_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/695bf292-b531-4f4f-a7a0-1ec7deca8175" + } + ] + }, + { + "label": { + "@none": [ + "fol. 175v" + ] + }, + "height": 2059, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_352", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_352", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_352", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000352_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000352_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f4fbe21-3114-45c5-ac12-d61084b2eef3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 176r" + ] + }, + "height": 2105, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_353", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_353", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_353", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2105, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000353_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000353_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40612596-3ce6-4260-a36f-db54c276d53f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 176v" + ] + }, + "height": 2073, + "width": 1330, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_354", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_354", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_354", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2073, + "width": 1330, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000354_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000354_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7cd7b812-2b53-43e1-8384-069989502f0d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 177r" + ] + }, + "height": 2056, + "width": 1352, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_355", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_355", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_355", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000355_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000355_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/055cf8d3-2d7d-446c-bfa4-a337640bce41" + } + ] + }, + { + "label": { + "@none": [ + "fol. 177v" + ] + }, + "height": 2092, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_356", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_356", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_356", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2092, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000356_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000356_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7b6f5fb-3d07-4f0f-b58d-d45420cf2841" + } + ] + }, + { + "label": { + "@none": [ + "fol. 178r" + ] + }, + "height": 2106, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_357", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_357", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_357", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000357_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000357_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b9c8cb9-11e4-4e1c-af32-1e6bdbf45278" + } + ] + }, + { + "label": { + "@none": [ + "fol. 178v" + ] + }, + "height": 2072, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_358", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_358", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_358", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000358_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000358_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10fd6a90-63bc-4465-b43a-539f236f3c16" + } + ] + }, + { + "label": { + "@none": [ + "fol. 179r" + ] + }, + "height": 2052, + "width": 1352, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_359", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_359", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_359", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2052, + "width": 1352, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000359_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000359_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b3e088d-8f62-4b3e-a6c9-9791b423aa43" + } + ] + }, + { + "label": { + "@none": [ + "fol. 179v" + ] + }, + "height": 2102, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_360", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_360", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_360", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2102, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000360_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000360_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e8c4b9d4-546b-43f2-bdea-3db78123d426" + } + ] + }, + { + "label": { + "@none": [ + "fol. 180r" + ] + }, + "height": 2085, + "width": 1342, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_361", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_361", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_361", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1342, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000361_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000361_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11810f0d-9064-4661-b83a-eb9033e85925" + } + ] + }, + { + "label": { + "@none": [ + "fol. 180v" + ] + }, + "height": 2093, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_362", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_362", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_362", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000362_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000362_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/533216c0-a833-4770-9818-18fc432793e8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 181r" + ] + }, + "height": 2100, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_363", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_363", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_363", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000363_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000363_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b35e9b64-9f90-4ff7-99d8-19554fc99a00" + } + ] + }, + { + "label": { + "@none": [ + "fol. 181v" + ] + }, + "height": 2106, + "width": 1346, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_364", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_364", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_364", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1346, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000364_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000364_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6975d83f-672e-4475-8fd2-5d331a809051" + } + ] + }, + { + "label": { + "@none": [ + "fol. 182r" + ] + }, + "height": 2093, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_365", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_365", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_365", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000365_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000365_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65397402-c38c-44f3-9773-a6523b6ba3cf" + } + ] + }, + { + "label": { + "@none": [ + "fol. 182v" + ] + }, + "height": 2077, + "width": 1342, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_366", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_366", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_366", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1342, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000366_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000366_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1ff5dcd7-b8b2-4034-99ef-debbec601dec" + } + ] + }, + { + "label": { + "@none": [ + "fol. 183r" + ] + }, + "height": 2103, + "width": 1355, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_367", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_367", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_367", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1355, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000367_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000367_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f02833aa-d1e5-4cd9-956d-3c3d8030ca00" + } + ] + }, + { + "label": { + "@none": [ + "fol. 183v" + ] + }, + "height": 2081, + "width": 1376, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_368", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_368", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_368", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2081, + "width": 1376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000368_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000368_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/05b37b95-33bb-4192-ba31-24f2c2b520a0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 184r" + ] + }, + "height": 2103, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_369", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_369", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_369", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000369_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000369_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/56720321-c6cb-4c82-be1b-5f00951bc26b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 184v" + ] + }, + "height": 2059, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_370", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_370", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_370", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000370_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000370_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/445a0a11-6763-4b73-8da5-a0f7f225d6f5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 185r" + ] + }, + "height": 2113, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_371", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_371", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_371", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2113, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000371_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000371_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/447d046f-fb6f-46d7-955e-aaa76f5f6c40" + } + ] + }, + { + "label": { + "@none": [ + "fol. 185v" + ] + }, + "height": 2056, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_372", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_372", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_372", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2056, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000372_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000372_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4aa136b6-893b-4fe8-8f8d-a46c449d50c6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 186r" + ] + }, + "height": 2108, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_373", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_373", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_373", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000373_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000373_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/20ecf0ed-4bb4-4dfd-8bec-61dd35c8b264" + } + ] + }, + { + "label": { + "@none": [ + "fol. 186v" + ] + }, + "height": 2059, + "width": 1348, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_374", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_374", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_374", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1348, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000374_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000374_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2f333e01-5b59-4bd2-bc51-fa7f1dd81dbf" + } + ] + }, + { + "label": { + "@none": [ + "fol. 187r" + ] + }, + "height": 2108, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_375", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_375", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_375", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2108, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000375_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000375_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3030ebe8-19e4-4e99-a8b9-4acaae627aed" + } + ] + }, + { + "label": { + "@none": [ + "fol. 187v" + ] + }, + "height": 2072, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_376", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_376", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_376", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000376_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000376_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11747962-88ef-4902-a225-57526e969705" + } + ] + }, + { + "label": { + "@none": [ + "fol. 188r" + ] + }, + "height": 2093, + "width": 1353, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_377", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_377", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_377", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2093, + "width": 1353, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000377_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000377_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4310b4b9-f8ec-4825-9a6f-9b49fc056b7d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 188v" + ] + }, + "height": 2073, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_378", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_378", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_378", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2073, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000378_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000378_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7a7b2dbd-cf6c-4272-af4f-06f76475d2a0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 189r" + ] + }, + "height": 2111, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_379", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_379", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_379", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000379_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000379_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e963e1d-156f-46e7-91d6-86df67e81159" + } + ] + }, + { + "label": { + "@none": [ + "fol. 189v" + ] + }, + "height": 2061, + "width": 1335, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_380", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_380", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_380", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2061, + "width": 1335, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000380_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000380_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0101eddd-46be-475a-914c-f56b88fd12cf" + } + ] + }, + { + "label": { + "@none": [ + "fol. 190r" + ] + }, + "height": 2100, + "width": 1369, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_381", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_381", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_381", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2100, + "width": 1369, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000381_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000381_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bfa73959-79d2-4e4c-8eec-7f77eadc132b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 190v" + ] + }, + "height": 2072, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_382", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_382", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_382", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000382_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000382_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b239e9ed-baab-494d-9601-784c83dc76e2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 191r" + ] + }, + "height": 2090, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_383", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_383", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_383", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000383_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000383_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b965e5fa-dfde-4820-9818-464715099008" + } + ] + }, + { + "label": { + "@none": [ + "fol. 191v" + ] + }, + "height": 2082, + "width": 1376, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_384", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_384", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_384", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1376, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000384_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000384_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b34cadaf-daaf-4de3-af5b-ca1e000e71f8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 192r" + ] + }, + "height": 2097, + "width": 1347, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_385", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_385", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_385", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2097, + "width": 1347, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000385_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000385_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/354b6223-ee29-4774-bfcc-561c4a017fa6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 192v" + ] + }, + "height": 2075, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_386", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_386", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_386", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000386_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000386_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b66f3f95-53f7-40c9-bc0a-7385595b43fd" + } + ] + }, + { + "label": { + "@none": [ + "fol. 193r" + ] + }, + "height": 2103, + "width": 1332, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_387", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_387", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_387", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1332, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000387_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000387_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93baed3a-5465-4a2c-9059-5c8769266077" + } + ] + }, + { + "label": { + "@none": [ + "fol. 193v" + ] + }, + "height": 2085, + "width": 1358, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_388", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_388", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_388", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1358, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000388_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000388_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/910a811d-0917-41c4-a89f-358f8fcf6153" + } + ] + }, + { + "label": { + "@none": [ + "fol. 194r" + ] + }, + "height": 2098, + "width": 1356, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_389", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_389", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_389", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1356, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000389_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000389_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fb99812-2341-46d5-8657-11d1a42f10b2" + } + ] + }, + { + "label": { + "@none": [ + "fol. 194v" + ] + }, + "height": 2072, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_390", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_390", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_390", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000390_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000390_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8efc2725-ab09-406e-b0e4-7b89f91d9470" + } + ] + }, + { + "label": { + "@none": [ + "fol. 195r" + ] + }, + "height": 2103, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_391", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_391", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_391", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000391_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000391_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2cb02ea9-de08-42c1-ab8d-a7db46e3d806" + } + ] + }, + { + "label": { + "@none": [ + "fol. 195v" + ] + }, + "height": 2069, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_392", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_392", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_392", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000392_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000392_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e4b08ae8-2112-4eee-ad56-f5c7b516a121" + } + ] + }, + { + "label": { + "@none": [ + "fol. 196r" + ] + }, + "height": 2111, + "width": 1322, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_393", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_393", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_393", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1322, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000393_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000393_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bbd643c2-5f6e-4e65-87a4-1e92f0d74fc8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 196v" + ] + }, + "height": 2069, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_394", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_394", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_394", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2069, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000394_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000394_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/49f41074-d792-49a3-9c8e-d8686aaf1819" + } + ] + }, + { + "label": { + "@none": [ + "fol. 197r" + ] + }, + "height": 2048, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_395", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_395", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_395", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000395_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000395_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b222076-3f49-4b4c-8788-3042bab0c355" + } + ] + }, + { + "label": { + "@none": [ + "fol. 197v" + ] + }, + "height": 2103, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_396", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_396", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_396", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000396_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000396_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e096968-2a5a-4da3-81da-93f7e2af0d25" + } + ] + }, + { + "label": { + "@none": [ + "fol. 198r" + ] + }, + "height": 2062, + "width": 1392, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_397", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_397", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_397", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1392, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000397_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000397_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f56fae5-92d6-4ea6-904e-23b6956a76f4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 198v" + ] + }, + "height": 2101, + "width": 1384, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_398", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_398", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_398", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1384, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000398_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000398_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebaf7af3-22bb-42fe-8584-89fe314a5dce" + } + ] + }, + { + "label": { + "@none": [ + "fol. 199r" + ] + }, + "height": 2066, + "width": 1384, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_399", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_399", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_399", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1384, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000399_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000399_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37c2ae44-c020-4a69-9ee5-3a8ee16cc656" + } + ] + }, + { + "label": { + "@none": [ + "fol. 199v" + ] + }, + "height": 2090, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_400", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_400", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_400", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2090, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000400_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000400_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa6e27bd-b5dc-48d7-a1a4-dc8e0f9685b6" + } + ] + }, + { + "label": { + "@none": [ + "fol. 200r" + ] + }, + "height": 2053, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_401", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_401", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_401", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2053, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000401_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000401_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91e2c83d-1272-44ef-a5e9-7717d5106a75" + } + ] + }, + { + "label": { + "@none": [ + "fol. 200v" + ] + }, + "height": 2114, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_402", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_402", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_402", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2114, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000402_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000402_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ad244b8-fbdc-498b-bdae-bea1f0702173" + } + ] + }, + { + "label": { + "@none": [ + "fol. 201r" + ] + }, + "height": 2072, + "width": 1372, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_403", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_403", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_403", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000403_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000403_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5a6ebb8-70a4-4e2d-85cc-576835855fc3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 201v" + ] + }, + "height": 2124, + "width": 1384, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_404", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_404", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_404", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2124, + "width": 1384, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000404_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000404_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80802953-ea54-4bcf-b5ad-bfda9244c437" + } + ] + }, + { + "label": { + "@none": [ + "fol. 202r" + ] + }, + "height": 2059, + "width": 1379, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_405", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_405", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_405", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1379, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000405_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000405_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/65f185b3-9a89-4542-8b8f-e69c1aa12f5b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 202v" + ] + }, + "height": 2127, + "width": 1397, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_406", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_406", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_406", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2127, + "width": 1397, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000406_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000406_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c58e8469-b205-48b6-b50d-3f9c5048654e" + } + ] + }, + { + "label": { + "@none": [ + "fol. 203r" + ] + }, + "height": 2077, + "width": 1345, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_407", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_407", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_407", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1345, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000407_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000407_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8662d92b-1136-42db-9427-5145e4ceff41" + } + ] + }, + { + "label": { + "@none": [ + "fol. 203v" + ] + }, + "height": 2111, + "width": 1389, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_408", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_408", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_408", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1389, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000408_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000408_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ef582d6-ed31-43e6-b0ca-240a389e9a7b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 204r" + ] + }, + "height": 2050, + "width": 1343, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_409", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_409", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_409", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2050, + "width": 1343, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000409_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000409_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0c93090-5fef-4951-b326-5c81c3a91d2a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 204v" + ] + }, + "height": 2111, + "width": 1405, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_410", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_410", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_410", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2111, + "width": 1405, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000410_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000410_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/54da32c7-4b48-4906-be6f-682efcd893e3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 205r" + ] + }, + "height": 2068, + "width": 1363, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_411", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_411", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_411", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2068, + "width": 1363, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000411_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000411_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/258fcab2-ac01-4838-b6fe-1925193595c4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 205v" + ] + }, + "height": 2116, + "width": 1395, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_412", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_412", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_412", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1395, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000412_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000412_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/794f3599-bd79-48f4-a3ce-6391eb5d97a8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 206r" + ] + }, + "height": 2066, + "width": 1351, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_413", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_413", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_413", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2066, + "width": 1351, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000413_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000413_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7f2fe3b-4863-4955-8805-4f76f24faf7f" + } + ] + }, + { + "label": { + "@none": [ + "fol. 206v" + ] + }, + "height": 2116, + "width": 1405, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_414", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_414", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_414", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1405, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000414_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000414_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f56ca3ee-a36b-4877-ac50-408b062f2eec" + } + ] + }, + { + "label": { + "@none": [ + "fol. 207r" + ] + }, + "height": 2060, + "width": 1368, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_415", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_415", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_415", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2060, + "width": 1368, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000415_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000415_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7850308f-beee-4058-95ae-87812c5f84ba" + } + ] + }, + { + "label": { + "@none": [ + "fol. 207v" + ] + }, + "height": 2063, + "width": 1414, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_416", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_416", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_416", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2063, + "width": 1414, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000416_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000416_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b02aa9c8-186a-4e91-a9b5-e217ecc887ed" + } + ] + }, + { + "label": { + "@none": [ + "fol. 208r" + ] + }, + "height": 2048, + "width": 1367, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_417", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_417", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_417", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1367, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000417_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000417_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e6820ab5-11f4-45ab-a800-11d4c910ebf9" + } + ] + }, + { + "label": { + "@none": [ + "fol. 208v" + ] + }, + "height": 2089, + "width": 1422, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_418", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_418", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_418", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2089, + "width": 1422, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000418_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000418_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a98a27e-b189-4920-8606-823b53a00a0d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 209r" + ] + }, + "height": 2058, + "width": 1372, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_419", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_419", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_419", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1372, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000419_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000419_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a4b086c-6227-43a0-b019-27779cf23ce4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 209v" + ] + }, + "height": 2098, + "width": 1432, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_420", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_420", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_420", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2098, + "width": 1432, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000420_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000420_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bcad875b-939d-417f-8f7a-e66776a1dd2a" + } + ] + }, + { + "label": { + "@none": [ + "fol. 210r" + ] + }, + "height": 2058, + "width": 1338, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_421", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_421", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_421", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1338, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000421_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000421_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5169118b-df72-4a6b-993d-f6e26729c8f8" + } + ] + }, + { + "label": { + "@none": [ + "fol. 210v" + ] + }, + "height": 2119, + "width": 1415, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_422", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_422", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_422", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2119, + "width": 1415, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000422_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000422_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8ec21bf4-48ea-4552-9ffc-e74f699c5470" + } + ] + }, + { + "label": { + "@none": [ + "fol. 211r" + ] + }, + "height": 2092, + "width": 1340, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_423", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_423", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_423", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2092, + "width": 1340, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000423_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000423_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4bf66dfb-d79e-4356-b031-318b9dacbf94" + } + ] + }, + { + "label": { + "@none": [ + "fol. 211v" + ] + }, + "height": 2101, + "width": 1402, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_424", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_424", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_424", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1402, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000424_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000424_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25ccb33f-b12d-4ae0-9fde-6def543ded6d" + } + ] + }, + { + "label": { + "@none": [ + "fol. 212r" + ] + }, + "height": 2103, + "width": 1371, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_425", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_425", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_425", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2103, + "width": 1371, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000425_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000425_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a0b20a49-66bb-4b23-b629-b9e2008fdad0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 212v" + ] + }, + "height": 2064, + "width": 1434, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_426", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_426", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_426", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1434, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000426_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000426_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68c25658-2f49-442b-9d76-6e0307a18a4b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 213r" + ] + }, + "height": 2048, + "width": 1388, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_427", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_427", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_427", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000427_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000427_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/80f882b4-279e-4c2e-af56-d435f9c41cef" + } + ] + }, + { + "label": { + "@none": [ + "fol. 213v" + ] + }, + "height": 2071, + "width": 1425, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_428", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_428", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_428", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2071, + "width": 1425, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000428_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000428_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/679a64a5-ffc0-47de-9a64-1f7afb200c57" + } + ] + }, + { + "label": { + "@none": [ + "fol. 214r" + ] + }, + "height": 2070, + "width": 1447, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_429", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_429", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_429", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2070, + "width": 1447, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000429_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000429_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/39527a46-154f-43d5-aede-21b4c04eb2d0" + } + ] + }, + { + "label": { + "@none": [ + "fol. 214v" + ] + }, + "height": 2089, + "width": 1448, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_430", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_430", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_430", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2089, + "width": 1448, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000430_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000430_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/892fa17d-c150-477a-8455-d86a86440bf5" + } + ] + }, + { + "label": { + "@none": [ + "fol. 215r" + ] + }, + "height": 2072, + "width": 1460, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_431", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_431", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_431", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2072, + "width": 1460, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000431_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000431_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18b53953-da90-4e0a-9e1a-8f83c92fec91" + } + ] + }, + { + "label": { + "@none": [ + "fol. 215v" + ] + }, + "height": 2101, + "width": 1408, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_432", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_432", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_432", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2101, + "width": 1408, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000432_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000432_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/93b30978-d3c4-4260-bf84-55a9365ded1b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 216r" + ] + }, + "height": 2079, + "width": 1465, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_433", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_433", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_433", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2079, + "width": 1465, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000433_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000433_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8c06324-e7d7-4bca-9b5c-ddc5ad721d17" + } + ] + }, + { + "label": { + "@none": [ + "fol. 216v" + ] + }, + "height": 2064, + "width": 1442, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_434", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_434", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_434", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2064, + "width": 1442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000434_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000434_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a8f5a8a-fefb-4083-8bff-41eb539c8142" + } + ] + }, + { + "label": { + "@none": [ + "fol. 217r" + ] + }, + "height": 2059, + "width": 1472, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_435", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_435", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_435", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1472, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000435_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000435_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2655cdd4-42f4-4174-b543-7394b147b683" + } + ] + }, + { + "label": { + "@none": [ + "fol. 217v" + ] + }, + "height": 2075, + "width": 1419, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_436", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_436", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_436", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1419, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000436_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000436_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e52fbff5-0800-4f61-a099-5a1d115c1de3" + } + ] + }, + { + "label": { + "@none": [ + "fol. 218r" + ] + }, + "height": 2080, + "width": 1452, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_437", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_437", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_437", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2080, + "width": 1452, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000437_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000437_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee004a21-7077-468d-9f77-48d928377dfb" + } + ] + }, + { + "label": { + "@none": [ + "fol. 218v" + ] + }, + "height": 2077, + "width": 1455, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_438", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_438", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_438", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1455, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000438_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000438_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a5b42f9-73ed-4318-bc56-534ecfd81eec" + } + ] + }, + { + "label": { + "@none": [ + "fol. 219r" + ] + }, + "height": 2057, + "width": 1442, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_439", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_439", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_439", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2057, + "width": 1442, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000439_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000439_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50a4356a-8878-4395-9b73-19eaefd25f47" + } + ] + }, + { + "label": { + "@none": [ + "fol. 219v" + ] + }, + "height": 2077, + "width": 1447, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_440", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_440", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_440", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2077, + "width": 1447, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000440_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000440_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2eb4a2cf-0185-4706-876a-1a9f376a9605" + } + ] + }, + { + "label": { + "@none": [ + "fol. 220r" + ] + }, + "height": 2062, + "width": 1453, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_441", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_441", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_441", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2062, + "width": 1453, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000441_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000441_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d39e2fd-421c-4662-845d-ce2a0c5562e1" + } + ] + }, + { + "label": { + "@none": [ + "fol. 220v" + ] + }, + "height": 2085, + "width": 1447, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_442", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_442", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_442", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2085, + "width": 1447, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000442_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000442_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d05bce6c-5781-4e27-827c-24b64c9a074b" + } + ] + }, + { + "label": { + "@none": [ + "fol. 221r" + ] + }, + "height": 2059, + "width": 1463, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_443", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_443", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_443", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2059, + "width": 1463, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000443_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000443_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0f777c3-d867-423c-ad04-ebefc25893ca" + } + ] + }, + { + "label": { + "@none": [ + "fol. 221v" + ] + }, + "height": 2116, + "width": 1473, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_444", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_444", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_444", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2116, + "width": 1473, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000444_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000444_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a4bf39fd-2151-42e5-a246-e75e61e73fc4" + } + ] + }, + { + "label": { + "@none": [ + "fol. 222r" + ] + }, + "height": 2036, + "width": 1429, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_445", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_445", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_445", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2036, + "width": 1429, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000445_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000445_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/63de173e-bcd9-423c-929f-76ec2fa6d804" + } + ] + }, + { + "label": { + "@none": [ + "fol. 222v" + ] + }, + "height": 2075, + "width": 1463, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_446", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_446", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_446", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2075, + "width": 1463, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000446_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000446_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a7b471b1-3d46-4ed4-a232-795b3c790233" + } + ] + }, + { + "label": { + "@none": [ + "fol. 223r" + ] + }, + "height": 2058, + "width": 1470, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_447", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_447", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_447", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2058, + "width": 1470, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000447_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000447_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98c2ae14-4201-46b7-a4fd-7404e114ff86" + } + ] + }, + { + "label": { + "@none": [ + "fol. 223v" + ] + }, + "height": 2074, + "width": 1488, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_448", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_448", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_448", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2074, + "width": 1488, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000448_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000448_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b63232ca-b72b-4250-b14e-e75c9572fa52" + } + ] + }, + { + "label": { + "@none": [ + "Back flyleaf i, r" + ] + }, + "height": 2053, + "width": 1507, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_449", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_449", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_449", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2053, + "width": 1507, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000449_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000449_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a462a03-d210-470e-9a9d-65a209375143" + } + ] + }, + { + "label": { + "@none": [ + "Back flyleaf i, v" + ] + }, + "height": 2082, + "width": 1494, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_450", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_450", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_450", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2082, + "width": 1494, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000450_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000450_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e8ed414-bb0c-494b-a272-6ae9ec4fb094" + } + ] + }, + { + "label": { + "@none": [ + "Back flyleaf ii, r" + ] + }, + "height": 2048, + "width": 1520, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_451", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_451", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_451", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2048, + "width": 1520, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000451_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000451_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d7a07cb6-b3d4-4bf5-af16-35152a039aab" + } + ] + }, + { + "label": { + "@none": [ + "Back flyleaf ii, v" + ] + }, + "height": 2106, + "width": 1491, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_452", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_452", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_452", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2106, + "width": 1491, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000452_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000452_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88a4dad8-d5a2-4649-8907-d9d40f143fab" + } + ] + }, + { + "label": { + "@none": [ + "Lower board inside" + ] + }, + "height": 2271, + "width": 2162, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_453", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_453", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_453", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2271, + "width": 2162, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000453_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000453_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7acb4529-e498-4870-b525-99a551a1853f" + } + ] + }, + { + "label": { + "@none": [ + "Lower board outside" + ] + }, + "height": 2256, + "width": 2212, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_454", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_454", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_454", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2256, + "width": 2212, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000454_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000454_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1809ceae-e930-4a30-86a0-61bae2102f8d" + } + ] + }, + { + "label": { + "@none": [ + "Spine" + ] + }, + "height": 2597, + "width": 1062, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_455", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_455", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_455", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2597, + "width": 1062, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000455_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000455_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ab5bfdec-68ca-4a26-adb1-e7f8adb71f98" + } + ] + }, + { + "label": { + "@none": [ + "Fore-edge" + ] + }, + "height": 2553, + "width": 971, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_456", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_456", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_456", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 2553, + "width": 971, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000456_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000456_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99db4bef-406c-4f20-baed-40394a41f6be" + } + ] + }, + { + "label": { + "@none": [ + "Head" + ] + }, + "height": 1012, + "width": 2388, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_457", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_457", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_457", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 1012, + "width": 2388, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000457_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000457_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b7949157-a2eb-498d-9837-db311f8c00f3" + } + ] + }, + { + "label": { + "@none": [ + "Tail" + ] + }, + "height": 1044, + "width": 2433, + "type": "Canvas", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_458", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://purl.stanford.edu/qm670kv1873/iiif/annotation/image_458", + "target": [ + { + "id": "https://purl.stanford.edu/qm670kv1873/iiif/canvas/image_458", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 1044, + "width": 2433, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000458_300", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://stacks.stanford.edu/image/iiif/qm670kv1873%2FW168_000458_300/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67866021-74cb-4728-b118-eaa6c9935277" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/www.e-codices.unifr.ch__metadata__iiif__csg-0730__manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/www.e-codices.unifr.ch__metadata__iiif__csg-0730__manifest.json new file mode 100644 index 0000000..c366e10 --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/www.e-codices.unifr.ch__metadata__iiif__csg-0730__manifest.json @@ -0,0 +1,7410 @@ +{ + "label": { + "@none": [ + "St. Gallen, Stiftsbibliothek, Cod. Sang. 730" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "St. Gallen" + ] + } + }, + { + "label": { + "@none": [ + "Collection Name" + ] + }, + "value": { + "@none": [ + "Stiftsbibliothek" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "Cod. Sang. 730" + ] + } + }, + { + "label": { + "@none": [ + "Document Type" + ] + }, + "value": { + "@none": [ + "Manuscript" + ] + } + }, + { + "label": { + "@none": [ + "DOI" + ] + }, + "value": { + "@none": [ + "10.5076/e-codices-csg-0730" + ] + } + }, + { + "label": { + "@none": [ + "Title (English)" + ] + }, + "value": { + "@none": [ + "Edictum Rothari (Veterum Fragmentorum Tomus III)" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "Parchment" + ] + } + }, + { + "label": { + "@none": [ + "Place of Origin (English)" + ] + }, + "value": { + "@none": [ + "Bobbio (?)" + ] + } + }, + { + "label": { + "@none": [ + "Date of Origin (English)" + ] + }, + "value": { + "@none": [ + "670/680" + ] + } + }, + { + "label": { + "@none": [ + "Number of Pages" + ] + }, + "value": { + "@none": [ + "88" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "20.5 x 14 cm" + ] + } + }, + { + "label": { + "@none": [ + "Online Since" + ] + }, + "value": { + "@none": [ + "2009-07-31" + ] + } + }, + { + "label": { + "@none": [ + "Summary (English)" + ] + }, + "value": { + "@none": [ + "The incompletely preserved Edictum Rothari is the oldest extant copy of the early medieval law of the Lombards as decreed by King Rothari (636-652) in 643. This earliest known copy, dating from 670/680 and originating in Bobbio (?) has been preserved only as fragments divided between the Abbey Library of St. Gall, the Badische Landesbibliothek Karlsruhe, the Zentralbibliothek in Zurich and the Zurich cantonal archives. The largest portion of the fragments, which were bound together in the present volume by Abbey Librarian Ildefons von Arx in 1822, is found at the Abbey Library of St. Gall. In 1972, the fragmental parchment leaves of the Edictum Rothari owned by the Abbey Library of St. Gall were rebound into a new volume, in a fashion that does not exactly follow conservational guidelines, together with black and white photos of the fragments that are in Karlsruhe and Zurich. The photos were then removed from this by restorer Martin Strebel in 2008. At the same time, this manuscript, which is significant to the history of law, was rebound using the latest book restoration techniques, thanks to the Friends of the Abbey Library of St. Gall, which covered the costs of the work." + ] + } + }, + { + "label": { + "@none": [ + "Persons" + ] + }, + "value": { + "@none": [ + "Librarian: Arx, Ildefons von; Author: Rothari, Langobardenreich, König" + ] + } + }, + { + "label": { + "@none": [ + "Century" + ] + }, + "value": { + "@none": [ + "7th century" + ] + } + }, + { + "label": { + "@none": [ + "Text Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "en": [ + "The incompletely preserved Edictum Rothari is the oldest extant copy of the early medieval law of the Lombards as decreed by King Rothari (636-652) in 643. This earliest known copy, dating from 670/680 and originating in Bobbio (?) has been preserved only as fragments divided between the Abbey Library of St. Gall, the Badische Landesbibliothek Karlsruhe, the Zentralbibliothek in Zurich and the Zurich cantonal archives. The largest portion of the fragments, which were bound together in the present volume by Abbey Librarian Ildefons von Arx in 1822, is found at the Abbey Library of St. Gall. In 1972, the fragmental parchment leaves of the Edictum Rothari owned by the Abbey Library of St. Gall were rebound into a new volume, in a fashion that does not exactly follow conservational guidelines, together with black and white photos of the fragments that are in Karlsruhe and Zurich. The photos were then removed from this by restorer Martin Strebel in 2008. At the same time, this manuscript, which is significant to the history of law, was rebound using the latest book restoration techniques, thanks to the Friends of the Abbey Library of St. Gall, which covered the costs of the work." + ] + } + } + ], + "logo": [ + { + "id": "https://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "Image" + } + ], + "service": [ + { + "profile": "https://www.w3.org/ns/webmention", + "label": "e-codices Webmention Service", + "id": "https://www.e-codices.unifr.ch/webmention/receive", + "type": "Service" + } + ], + "seeAlso": [ + { + "@format": "application/tei+xml", + "type": "Dataset", + "id": "https://www.e-codices.unifr.ch/xml/tei_published/csg-0730.xml" + } + ], + "type": "Manifest", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "e-codices - Virtual Manuscript Library of Switzerland" + ] + } + }, + "homepage": { + "id": "https://www.e-codices.ch/en/list/one/csg/0730", + "type": "Text" + }, + "partOf": [ + { + "id": "https://www.e-codices.ch/en/list/csg", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "Front cover" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e001.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e001.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e001.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f412715c-49df-4d0e-bc01-63d1a098565a" + } + ] + }, + { + "label": { + "@none": [ + "Front paste-down" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e005.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e005.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e005.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e005.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e005.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac2f8962-1711-46af-88ef-ce4802794f83" + } + ] + }, + { + "label": { + "@none": [ + "V1" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_000a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_000a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_000a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4c71372c-f16c-41c4-a175-e634b95045ce" + } + ] + }, + { + "label": { + "@none": [ + "V2" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_000b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_000b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_000b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0976be72-5be1-4c34-be66-3b7330494265" + } + ] + }, + { + "label": { + "@none": [ + "V3" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_000c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_000c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_000c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c238b50e-3c23-4329-a1b4-79bc711fe8cd" + } + ] + }, + { + "label": { + "@none": [ + "V4" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_000d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_000d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_000d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ff9bc31-6a1d-49e8-9483-8d804ca113e1" + } + ] + }, + { + "label": { + "@none": [ + "1" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_001.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_001.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_001.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_001.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_001.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/900513b3-8cdd-4638-8666-afa3a5b021c2" + } + ] + }, + { + "label": { + "@none": [ + "2" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_002.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_002.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_002.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_002.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_002.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/28b5a1e6-7127-43c9-a78d-9d292b18709b" + } + ] + }, + { + "label": { + "@none": [ + "3" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_003.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_003.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_003.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_003.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_003.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b47a794-dad5-46a7-921e-c6b8fbf63a0e" + } + ] + }, + { + "label": { + "@none": [ + "4" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_004.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_004.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_004.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_004.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_004.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/016b52a6-ba33-489b-9f92-73f1fb4b3716" + } + ] + }, + { + "label": { + "@none": [ + "5" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_005.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_005.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_005.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_005.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_005.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5961b4a4-4698-4dbc-8df4-860b3ba5697a" + } + ] + }, + { + "label": { + "@none": [ + "6" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_006.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_006.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_006.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_006.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_006.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/950d1024-bf23-47d6-bf89-c9624f700d3b" + } + ] + }, + { + "label": { + "@none": [ + "7" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_007.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_007.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_007.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_007.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_007.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/75ba7619-9821-4207-bac4-2271419ffd23" + } + ] + }, + { + "label": { + "@none": [ + "8" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_008.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_008.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_008.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_008.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_008.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bc3290a5-b510-442a-944d-e2898b8900b9" + } + ] + }, + { + "label": { + "@none": [ + "9" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_009.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_009.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_009.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_009.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_009.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1205ec82-fd8a-4ee5-a3fd-de79bd950e99" + } + ] + }, + { + "label": { + "@none": [ + "10" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_010.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_010.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_010.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_010.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_010.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67747f87-7e40-45a1-a3fa-b03eb1f3365c" + } + ] + }, + { + "label": { + "@none": [ + "11" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_011.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_011.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_011.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_011.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_011.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa35b425-dcf5-46a5-8d39-f36ed6c67086" + } + ] + }, + { + "label": { + "@none": [ + "12" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_012.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_012.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_012.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_012.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_012.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce6084e9-ebe9-450b-b08f-adde7c2e8ce4" + } + ] + }, + { + "label": { + "@none": [ + "13" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_013.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_013.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_013.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_013.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_013.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5200117e-f570-4d4a-8557-f5d9ba15e76a" + } + ] + }, + { + "label": { + "@none": [ + "14" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_014.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_014.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_014.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_014.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_014.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a44727a9-77c6-4470-9e1e-3684bf704f15" + } + ] + }, + { + "label": { + "@none": [ + "15" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_015.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_015.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_015.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_015.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_015.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a3feac72-61b5-4638-98be-8936f32ed268" + } + ] + }, + { + "label": { + "@none": [ + "16" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_016.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_016.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_016.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_016.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_016.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14dfe2a8-b585-499f-b421-82ec350be7d2" + } + ] + }, + { + "label": { + "@none": [ + "17" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_017.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_017.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_017.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_017.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_017.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/10ae256d-a321-4d9c-b66d-4c36f41a4dc0" + } + ] + }, + { + "label": { + "@none": [ + "18" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_018.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_018.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_018.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_018.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_018.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8315b55a-bdbc-4e62-b372-19a5455a626c" + } + ] + }, + { + "label": { + "@none": [ + "19" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_019.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_019.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_019.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_019.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_019.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3cc62f44-486a-4a22-90cb-1021f33b3793" + } + ] + }, + { + "label": { + "@none": [ + "20" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_020.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_020.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_020.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_020.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_020.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d48b12d-5e8e-4d0b-8d53-c1c438541812" + } + ] + }, + { + "label": { + "@none": [ + "21" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_021.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_021.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_021.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_021.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_021.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/85668f45-a758-4d1f-ac20-42fb68fcdf7e" + } + ] + }, + { + "label": { + "@none": [ + "22" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_022.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_022.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_022.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_022.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_022.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/989cdcc1-fd94-4ed2-8c8c-a948b2087d6a" + } + ] + }, + { + "label": { + "@none": [ + "23" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_023.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_023.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_023.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_023.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_023.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb7d06b1-f28e-46bf-986a-999ce63dbec5" + } + ] + }, + { + "label": { + "@none": [ + "24" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_024.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_024.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_024.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_024.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_024.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1eed0eda-b6c5-4624-b9aa-c08dceda7b1a" + } + ] + }, + { + "label": { + "@none": [ + "25" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_025.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_025.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_025.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_025.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_025.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e766a93-20b7-489c-9630-cac74a4ad8c3" + } + ] + }, + { + "label": { + "@none": [ + "26" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_026.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_026.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_026.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce38b08a-d34d-4c4a-ae86-033a4c5468a2" + } + ] + }, + { + "label": { + "@none": [ + "26a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_026a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_026a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_026a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c4ed544-ba08-41b5-9885-8f686e9df22f" + } + ] + }, + { + "label": { + "@none": [ + "26b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_026b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_026b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_026b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8da5cb0f-e199-476f-99ae-70e2022d41b9" + } + ] + }, + { + "label": { + "@none": [ + "27" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_027.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_027.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_027.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_027.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_027.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b4b1bc3-2f42-4fb1-9078-5fc1f2d9161c" + } + ] + }, + { + "label": { + "@none": [ + "28" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/016f5e3a-b000-44a4-8dc7-52a82e5367e5" + } + ] + }, + { + "label": { + "@none": [ + "28a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d4b197ee-eb24-4633-8ac3-3034912aa50c" + } + ] + }, + { + "label": { + "@none": [ + "28b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd0e5540-bfc7-4585-85d2-8d529503fd14" + } + ] + }, + { + "label": { + "@none": [ + "28c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8c7c86a-1d2a-4b98-8a8b-9d9da476fe1f" + } + ] + }, + { + "label": { + "@none": [ + "28d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_028d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_028d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_028d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3f68a5c2-a246-441a-9890-b16ec1315d2e" + } + ] + }, + { + "label": { + "@none": [ + "29" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_029.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_029.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_029.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_029.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_029.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f169e2d9-d8dd-4c1e-a516-15bc4c16b806" + } + ] + }, + { + "label": { + "@none": [ + "30" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73b8f474-0045-426b-b709-c32f1a241e31" + } + ] + }, + { + "label": { + "@none": [ + "30a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9a66f49e-e131-467f-9711-075c8d864758" + } + ] + }, + { + "label": { + "@none": [ + "30b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60fc7a96-34f0-424a-b7c1-fbf0eb0070dc" + } + ] + }, + { + "label": { + "@none": [ + "30c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a463fc3-bd98-4328-841d-29d50cb86f9c" + } + ] + }, + { + "label": { + "@none": [ + "30d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44e0b060-ed02-4e1f-9689-ea4585e46793" + } + ] + }, + { + "label": { + "@none": [ + "30e" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030e.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030e.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030e.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d321112f-8022-4f40-8a46-f743bf4a6e00" + } + ] + }, + { + "label": { + "@none": [ + "30f" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_030f.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_030f.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_030f.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73fbab59-f26e-436c-9859-5df2c5cf80a7" + } + ] + }, + { + "label": { + "@none": [ + "31" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_031.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_031.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_031.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_031.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_031.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bb13436-f2f1-4145-9378-a15cfc9cfe5e" + } + ] + }, + { + "label": { + "@none": [ + "32" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d374d88d-a117-4065-84de-d80ac230d759" + } + ] + }, + { + "label": { + "@none": [ + "32a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/515a4acd-a74b-4865-a9a5-259047e5c0c9" + } + ] + }, + { + "label": { + "@none": [ + "32b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac918507-e312-4f7a-8383-f2c80ad9382d" + } + ] + }, + { + "label": { + "@none": [ + "32c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3b67707d-b599-4261-9e48-a98179497a7e" + } + ] + }, + { + "label": { + "@none": [ + "32d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_032d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_032d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_032d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c3961003-871f-439b-bdb5-175f3837c51b" + } + ] + }, + { + "label": { + "@none": [ + "33" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_033.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_033.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_033.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_033.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_033.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7f6f8d53-2a37-4306-a632-6aa469966eb7" + } + ] + }, + { + "label": { + "@none": [ + "34" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43cda489-200a-48da-8117-3bb81e2f1a43" + } + ] + }, + { + "label": { + "@none": [ + "34a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e7e0bea-7760-487f-9ee2-d0c734b97693" + } + ] + }, + { + "label": { + "@none": [ + "34b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64abb778-dba9-402a-9a62-8e6ca1898844" + } + ] + }, + { + "label": { + "@none": [ + "34c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7b90845-294f-4705-9e3a-a9eb2fd9d665" + } + ] + }, + { + "label": { + "@none": [ + "34d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/395b57ca-a926-493c-b2b5-eb73689a2548" + } + ] + }, + { + "label": { + "@none": [ + "34e" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034e.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034e.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034e.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b7a494c5-59eb-41d1-acb0-5384ab452e79" + } + ] + }, + { + "label": { + "@none": [ + "34f" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034f.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034f.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034f.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14d76836-5109-43c7-ab84-81c49924c757" + } + ] + }, + { + "label": { + "@none": [ + "34g" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034g.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034g.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034g.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034g.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034g.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c65d4ccc-1c38-4a01-9e72-1157e19dd754" + } + ] + }, + { + "label": { + "@none": [ + "34h" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034h.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_034h.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034h.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_034h.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_034h.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e0ef3193-f3aa-4c90-acf0-ac05f527d8c9" + } + ] + }, + { + "label": { + "@none": [ + "35" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_035.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_035.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_035.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_035.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_035.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e7ab1e6-adad-474b-8909-9844581b6297" + } + ] + }, + { + "label": { + "@none": [ + "36" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_036.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_036.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_036.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_036.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_036.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/517c56c4-7cdc-4f01-97a0-ce7699167197" + } + ] + }, + { + "label": { + "@none": [ + "37" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_037.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_037.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_037.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_037.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_037.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff1d1766-f770-41e1-8c37-3cf99de5e381" + } + ] + }, + { + "label": { + "@none": [ + "38" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_038.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_038.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_038.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_038.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_038.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3911df77-8342-43b7-8a61-9cb3b17876ab" + } + ] + }, + { + "label": { + "@none": [ + "39" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_039.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_039.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_039.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_039.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_039.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fbaf6331-f13a-449d-9d46-f3d2baceffc1" + } + ] + }, + { + "label": { + "@none": [ + "40" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_040.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_040.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_040.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_040.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_040.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8165ea6f-9502-4453-8d01-952dd1815831" + } + ] + }, + { + "label": { + "@none": [ + "41" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_041.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_041.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_041.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_041.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_041.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e8b2f53-99db-4306-9abf-8df83b459dc8" + } + ] + }, + { + "label": { + "@none": [ + "42" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_042.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_042.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_042.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_042.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_042.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2f7ddc9-b982-48bc-935b-e92012283573" + } + ] + }, + { + "label": { + "@none": [ + "43" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_043.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_043.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_043.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_043.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_043.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6a83fdcb-95c5-478d-b6b2-c4fe52e046d0" + } + ] + }, + { + "label": { + "@none": [ + "44" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_044.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_044.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_044.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_044.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_044.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e88d17a-9555-4024-a9c6-012864a2f037" + } + ] + }, + { + "label": { + "@none": [ + "45" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_045.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_045.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_045.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_045.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_045.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2de1317d-2a12-4600-aa54-6e7586c2e6d9" + } + ] + }, + { + "label": { + "@none": [ + "46" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_046.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_046.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_046.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_046.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_046.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3cc02e96-7146-4b04-875e-013875db1954" + } + ] + }, + { + "label": { + "@none": [ + "47" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_047.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_047.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_047.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_047.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_047.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef2bdb85-13fc-4ce7-9bb6-32633728fc6e" + } + ] + }, + { + "label": { + "@none": [ + "48" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_048.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_048.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_048.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_048.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_048.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/653aa487-6708-44e2-ab3a-549f7c41224c" + } + ] + }, + { + "label": { + "@none": [ + "49" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_049.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_049.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_049.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_049.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_049.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/defd5238-657a-415f-a05f-a3d3b726acde" + } + ] + }, + { + "label": { + "@none": [ + "50" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_050.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_050.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_050.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_050.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_050.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa9f3fef-806a-4b7f-8d4c-fcddd360510c" + } + ] + }, + { + "label": { + "@none": [ + "51" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_051.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_051.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_051.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_051.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_051.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68eee971-319f-4b8d-9f02-e2663cda6ecb" + } + ] + }, + { + "label": { + "@none": [ + "52" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_052.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_052.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_052.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_052.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_052.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9dbad81b-b0d2-4328-bf9b-a6520aa5c256" + } + ] + }, + { + "label": { + "@none": [ + "53" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_053.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_053.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_053.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_053.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_053.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c366394-e149-46eb-982f-95f3fabc7566" + } + ] + }, + { + "label": { + "@none": [ + "54" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_054.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_054.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_054.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_054.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_054.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/907bdd7c-3a19-48ad-ad7a-39bf2f56a831" + } + ] + }, + { + "label": { + "@none": [ + "55" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_055.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_055.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_055.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_055.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_055.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a462a660-0eb6-4ee2-833b-c5eb188e0a45" + } + ] + }, + { + "label": { + "@none": [ + "56" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_056.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_056.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_056.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_056.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_056.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a89243fb-be62-46fc-a647-e47b22cfbbd2" + } + ] + }, + { + "label": { + "@none": [ + "57" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_057.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_057.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_057.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_057.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_057.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1d0433fe-f345-44d7-9c0c-b01d7d51d38e" + } + ] + }, + { + "label": { + "@none": [ + "58" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_058.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_058.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_058.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_058.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_058.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b689a587-e846-4aeb-a149-ef83245f6c31" + } + ] + }, + { + "label": { + "@none": [ + "59" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_059.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_059.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_059.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_059.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_059.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a59f54bc-46d0-4ffa-a135-a7186891d801" + } + ] + }, + { + "label": { + "@none": [ + "60" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_060.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_060.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_060.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_060.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_060.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/02d93351-69b9-44f2-b1e5-eaf4380ddcbe" + } + ] + }, + { + "label": { + "@none": [ + "61" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_061.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_061.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_061.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_061.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_061.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df16b5c8-6d5f-44e3-86e1-484ae9955794" + } + ] + }, + { + "label": { + "@none": [ + "62" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca1de533-6db0-42dd-9760-b7a11416b0b6" + } + ] + }, + { + "label": { + "@none": [ + "62a" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062a.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98e0390d-0fd8-4776-ae2d-5c4a89455a77" + } + ] + }, + { + "label": { + "@none": [ + "62b" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062b.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/079d95bf-2b62-4ec8-aced-a680f325b8f5" + } + ] + }, + { + "label": { + "@none": [ + "62c" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062c.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062c.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062c.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062c.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062c.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5884b3dd-fd6b-4eab-b155-3ff5caa8d1ef" + } + ] + }, + { + "label": { + "@none": [ + "62d" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062d.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062d.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062d.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062d.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062d.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/24d9b35c-04d3-405e-bf96-f80a6a9ca26c" + } + ] + }, + { + "label": { + "@none": [ + "62e" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062e.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062e.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062e.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062e.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062e.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/462f83cc-a818-4d32-a018-bbbe9541342c" + } + ] + }, + { + "label": { + "@none": [ + "62f" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062f.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062f.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062f.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062f.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062f.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee285964-86cb-46b4-a090-449e37fe83e8" + } + ] + }, + { + "label": { + "@none": [ + "62g" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062g.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062g.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062g.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062g.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062g.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5b0045d-2b17-4264-bd51-2a3da6edf883" + } + ] + }, + { + "label": { + "@none": [ + "62h" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062h.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062h.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062h.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062h.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062h.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/953dce8e-0268-49fa-9ae9-b569a6889389" + } + ] + }, + { + "label": { + "@none": [ + "62i" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062i.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062i.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062i.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062i.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062i.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef6a5f65-0da4-4a6e-99e9-0e01ca6bcc74" + } + ] + }, + { + "label": { + "@none": [ + "62j" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062j.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_062j.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062j.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_062j.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_062j.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a5ba30b0-9798-43d8-94e4-c4d6cb3ea476" + } + ] + }, + { + "label": { + "@none": [ + "63" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_063.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_063.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_063.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_063.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_063.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ef550498-b692-4c17-a516-f5dc8e170c8a" + } + ] + }, + { + "label": { + "@none": [ + "64" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_064.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_064.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_064.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_064.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_064.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ce48e720-8f1d-4403-a044-4f5ed42b7f3c" + } + ] + }, + { + "label": { + "@none": [ + "65" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_065.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_065.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_065.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_065.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_065.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f91b13e6-d9c4-4f66-ad98-bcfa886ab1c8" + } + ] + }, + { + "label": { + "@none": [ + "66" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_066.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_066.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_066.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_066.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_066.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51084065-946c-45ec-a8ee-fcbaef340323" + } + ] + }, + { + "label": { + "@none": [ + "67" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_067.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_067.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_067.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_067.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_067.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d18ed372-2445-46e7-8f32-2f112f8fe438" + } + ] + }, + { + "label": { + "@none": [ + "68" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_068.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_068.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_068.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_068.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_068.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/933bbb73-80b2-467a-8174-235f9575c99b" + } + ] + }, + { + "label": { + "@none": [ + "69" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_069.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_069.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_069.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_069.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_069.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/60664e2a-3487-40a4-a054-3d9710c6335a" + } + ] + }, + { + "label": { + "@none": [ + "70" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_070.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_070.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_070.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_070.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_070.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6442e2fa-cbe8-4a8f-bebb-4994c9012c99" + } + ] + }, + { + "label": { + "@none": [ + "71" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_071.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_071.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_071.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_071.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_071.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6670ce7-667c-4886-9173-a393ea2c3415" + } + ] + }, + { + "label": { + "@none": [ + "72" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_072.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_072.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_072.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_072.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_072.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e040c09b-0378-4bed-9377-93ce4f51c99c" + } + ] + }, + { + "label": { + "@none": [ + "73" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_073.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_073.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_073.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_073.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_073.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e0816e0-682d-44a4-a35e-484890a04a42" + } + ] + }, + { + "label": { + "@none": [ + "74" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_074.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_074.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_074.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_074.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_074.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/376bcfc8-33b8-483b-ad3a-054e6a1316a8" + } + ] + }, + { + "label": { + "@none": [ + "Rear paste-down" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e006.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e006.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e006.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e006.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e006.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4f366bf-b269-48ea-9288-fd48408a54c7" + } + ] + }, + { + "label": { + "@none": [ + "Back cover" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e003.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e003.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e003.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e003.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e003.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b40b8d2b-5cbd-4522-a253-39351b84aaa2" + } + ] + }, + { + "label": { + "@none": [ + "Spine" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e002.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e002.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e002.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e002.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e002.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/41d60ce2-18fc-4ad3-8916-dee734f5abe1" + } + ] + }, + { + "label": { + "@none": [ + "Fore edge" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e004.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e004.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e004.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e004.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e004.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ba672bd6-eba4-4ade-a0e0-efbca2739472" + } + ] + }, + { + "label": { + "@none": [ + "Head" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e007.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e007.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e007.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e007.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e007.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a236573c-f324-4d7b-b49d-ea002eb2edbb" + } + ] + }, + { + "label": { + "@none": [ + "Tail" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e008.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_e008.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e008.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_e008.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_e008.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1fe92055-3ab0-4418-953a-11491fc788c9" + } + ] + }, + { + "label": { + "@none": [ + "Ruler on binding" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassE.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_MassE.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassE.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_MassE.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_MassE.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/203286ee-baab-4c78-9c83-d4a68479861f" + } + ] + }, + { + "label": { + "@none": [ + "Ruler on page" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassS.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_MassS.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassS.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_MassS.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_MassS.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fa2ec854-fdb1-439c-8b68-b25e12067223" + } + ] + }, + { + "label": { + "@none": [ + "QP card on binding" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilE.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_ProfilE.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilE.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_ProfilE.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_ProfilE.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3169f0c5-ffc7-452e-8759-9534ec316291" + } + ] + }, + { + "label": { + "@none": [ + "QP card on page" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilS.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_ProfilS.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilS.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_ProfilS.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_ProfilS.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/134173f2-62c7-460d-b820-6d3d6575c926" + } + ] + }, + { + "label": { + "@none": [ + "Digital Colorchecker" + ] + }, + "height": 4872, + "width": 6496, + "type": "Canvas", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilSG.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/annotation/csg-0730_ProfilSG.json", + "target": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilSG.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4872, + "width": 6496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "https://www.e-codices.unifr.ch/loris/csg/csg-0730/csg-0730_ProfilSG.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "https://www.e-codices.unifr.ch:443/loris/csg/csg-0730/csg-0730_ProfilSG.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1c34449e-1e5d-440d-9888-80f5f7389620" + } + ] + } + ], + "structures": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-651.json", + "type": "Range", + "behavior": [ + "sequence" + ], + "items": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e001.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e005.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_000d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_001.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_002.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_003.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_004.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_005.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_006.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_007.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_008.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_009.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_010.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_011.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_012.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_013.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_014.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_015.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_016.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_017.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_018.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_019.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_020.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_021.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_022.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_023.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_024.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_025.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_026b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_027.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_028d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_029.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_030f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_031.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_032d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_033.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_034h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_035.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_036.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_037.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_038.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_039.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_040.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_041.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_042.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_043.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_044.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_045.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_046.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_047.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_048.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_049.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_050.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_051.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_052.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_053.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_054.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_055.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_056.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_057.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_058.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_059.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_060.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_061.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062i.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_062j.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_063.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_064.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_065.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_066.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_067.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_068.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_069.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_070.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_071.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_072.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_073.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_074.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e006.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e003.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e002.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e004.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e007.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_e008.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassE.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_MassS.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilE.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilS.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730_ProfilSG.json", + "type": "Canvas" + } + ], + "label": { + "de": [ + "restaurierte Version (Aufnahmen vom April 2009)" + ], + "en": [ + "restored version (images from April 2009)" + ], + "fr": [ + "version restaurée (images d'avril 2009)" + ], + "it": [ + "versione restaurata (immagini d'aprile 2009)" + ] + } + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/sequence/Sequence-1190.json", + "type": "Range", + "behavior": [ + "sequence" + ], + "items": [ + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e001.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e005.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000i.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000j.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000k.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000l.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000m.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_000n.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_001.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_002.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_002a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_002b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_003.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_004.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_005.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_006.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_007.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_008.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_009.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_010.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_010a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_010b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_011.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_012.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_013.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_014.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_015.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_016.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_017.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_018.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_019.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_020.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_021.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_022.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_023.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_024.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_025.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_026.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_026a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_026b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_027.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_028d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_029.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_030f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_031.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_032d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_033.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_034h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_035.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_036.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_037.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_038.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_039.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_040.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_041.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_042.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_043.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_044.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_045.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_046.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_047.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_048.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_049.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_050.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_051.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_052.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_053.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_054.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_055.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_056.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_057.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_058.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_059.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_060.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_061.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062c.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062d.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062e.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062f.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062g.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062h.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062i.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062j.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062k.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062l.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062m.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062n.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062o.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062p.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062q.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062r.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062s.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062t.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062u.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062v.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062w.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062x.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062y.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_062z.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_063.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_064.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_065.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_066.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_067.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_068.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_069.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_070.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_071.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_072.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_073.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_074.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_999a.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_999b.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e006.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e003.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e002.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e004.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e007.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_e008.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_Mass.json", + "type": "Canvas" + }, + { + "id": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/canvas/csg-0730a_Profil.json", + "type": "Canvas" + } + ], + "label": { + "de": [ + "vor der Restauration (Version von Oktober 2006)" + ], + "en": [ + "before restoration (version as of October 2006)" + ], + "fr": [ + "avant la restauration (version d'octobre 2006)" + ], + "it": [ + "prima del restauro (versione ottobre 2006)" + ] + } + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/www.e-codices.unifr.ch__metadata__iiif__sl-0002__manifest.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/www.e-codices.unifr.ch__metadata__iiif__sl-0002__manifest.json new file mode 100644 index 0000000..b34e0ed --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/www.e-codices.unifr.ch__metadata__iiif__sl-0002__manifest.json @@ -0,0 +1,19635 @@ +{ + "label": { + "@none": [ + "[sine loco], codices restituti, Cod. 2 (Frowinus dispersus)" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Location" + ] + }, + "value": { + "@none": [ + "[sine loco]" + ] + } + }, + { + "label": { + "@none": [ + "Collection Name" + ] + }, + "value": { + "@none": [ + "codices restituti" + ] + } + }, + { + "label": { + "@none": [ + "Shelfmark" + ] + }, + "value": { + "@none": [ + "Cod. 2 (Frowinus dispersus)" + ] + } + }, + { + "label": { + "@none": [ + "Document Type" + ] + }, + "value": { + "@none": [ + "Virtual Manuscript" + ] + } + }, + { + "label": { + "@none": [ + "DOI" + ] + }, + "value": { + "@none": [ + "10.5076/e-codices-sl-0002" + ] + } + }, + { + "label": { + "@none": [ + "Title (English)" + ] + }, + "value": { + "@none": [ + "Gregorius M., Moralia in Job., t. I (Codex restitutus)" + ] + } + }, + { + "label": { + "@none": [ + "Material" + ] + }, + "value": { + "@none": [ + "Parchment" + ] + } + }, + { + "label": { + "@none": [ + "Place of Origin (English)" + ] + }, + "value": { + "@none": [ + "Engelberg" + ] + } + }, + { + "label": { + "@none": [ + "Date of Origin (English)" + ] + }, + "value": { + "@none": [ + "1143-1178" + ] + } + }, + { + "label": { + "@none": [ + "Number of Pages" + ] + }, + "value": { + "@none": [ + "194" + ] + } + }, + { + "label": { + "@none": [ + "Dimensions" + ] + }, + "value": { + "@none": [ + "31.5 x 23 cm" + ] + } + }, + { + "label": { + "@none": [ + "Online Since" + ] + }, + "value": { + "@none": [ + "2014-12-15" + ] + } + }, + { + "label": { + "@none": [ + "Summary (English)" + ] + }, + "value": { + "@none": [ + "This codex contains a virtual reconstruction of Engelberg Abbey Library’s Cod. 20 with the first volume of Gregory the Great’s Moralia in Iob. It contains the first (ff. 6r-99r) and second part (99r-193v), each divided into five books. At the front of the volume there used to be a full-page illustration consisting of an artistic portrayal of Job with his three friends (upper half) and a portrayal of Gregory the Great and a writing monk (lower half), who according to custom represents Peter the Deacon (Petrus Diaconus). This leaf with a verse of dedication by Frowin on the back, the actual recto side, was carefully described by P. Karl Stadler in his hand-written catalog of 1787; this helped to identify the membrum disiectum, which is now held by the The Cleveland Museum of Art, 1955.74 (Purchase from the J.H. Wade Fund), as unequivocally belonging to this volume." + ] + } + }, + { + "label": { + "@none": [ + "Sponsored by" + ] + }, + "value": { + "@none": [ + "CRUS - Rectors' Conference of the Swiss Universities" + ] + } + }, + { + "label": { + "@none": [ + "Digitized by" + ] + }, + "value": { + "@none": [ + "e-codices / The Cleveland Museum of Art" + ] + } + }, + { + "label": { + "@none": [ + "Persons" + ] + }, + "value": { + "@none": [ + "Patron: Frowinus, de Monte Angelorum; Author: Gregorius I, Papa; Librarian: Stadler, Karl" + ] + } + }, + { + "label": { + "@none": [ + "Century" + ] + }, + "value": { + "@none": [ + "12th century" + ] + } + }, + { + "label": { + "@none": [ + "Dated" + ] + }, + "value": { + "@none": [ + "1147-1178" + ] + } + }, + { + "label": { + "@none": [ + "Text Language" + ] + }, + "value": { + "@none": [ + "Latin" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "en": [ + "This codex contains a virtual reconstruction of Engelberg Abbey Library’s Cod. 20 with the first volume of Gregory the Great’s Moralia in Iob. It contains the first (ff. 6r-99r) and second part (99r-193v), each divided into five books. At the front of the volume there used to be a full-page illustration consisting of an artistic portrayal of Job with his three friends (upper half) and a portrayal of Gregory the Great and a writing monk (lower half), who according to custom represents Peter the Deacon (Petrus Diaconus). This leaf with a verse of dedication by Frowin on the back, the actual recto side, was carefully described by P. Karl Stadler in his hand-written catalog of 1787; this helped to identify the membrum disiectum, which is now held by the The Cleveland Museum of Art, 1955.74 (Purchase from the J.H. Wade Fund), as unequivocally belonging to this volume." + ] + } + } + ], + "logo": [ + { + "id": "http://www.e-codices.ch/img/logo-for-iiif-manifest.png", + "type": "Image" + } + ], + "service": [ + { + "profile": "https://www.w3.org/ns/webmention", + "label": "e-codices Webmention Service", + "id": "http://www.e-codices.unifr.ch/webmention/receive", + "type": "Service" + } + ], + "type": "Manifest", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/manifest.json", + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "e-codices - Virtual Manuscript Library of Switzerland" + ] + } + }, + "homepage": { + "id": "http://www.e-codices.ch/en/list/one/sl/0002", + "type": "Text" + }, + "partOf": [ + { + "id": "http://www.e-codices.ch/en/list/sl", + "type": "Collection" + } + ], + "items": [ + { + "label": { + "@none": [ + "Front cover" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e001.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e001.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e001.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e001.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1e200b09-6d91-4153-bc17-3ac605640f96" + } + ] + }, + { + "label": { + "@none": [ + "Front paste-down" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e005.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e005.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e005.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e005.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e005.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1873287f-f748-4289-b177-f1b8ad88322b" + } + ] + }, + { + "label": { + "@none": [ + "Ir" + ] + }, + "height": 4800, + "width": 3594, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000b.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/cma-1955-74_000b.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000b.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4800, + "width": 3594, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/cma/cma-1955-74/cma-1955-74_000b.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/cma/cma-1955-74/cma-1955-74_000b.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7cfec832-d64a-4acc-bfee-3999ef105b6b" + } + ] + }, + { + "label": { + "@none": [ + "Iv" + ] + }, + "height": 4800, + "width": 3594, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000a.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/cma-1955-74_000a.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/cma-1955-74_000a.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4800, + "width": 3594, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/cma/cma-1955-74/cma-1955-74_000a.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/cma/cma-1955-74/cma-1955-74_000a.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37e836c6-b951-42a4-a725-830a476a6183" + } + ] + }, + { + "label": { + "@none": [ + "1r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_001r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_001r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_001r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44750b5e-9bee-4646-b2c7-f268888f3145" + } + ] + }, + { + "label": { + "@none": [ + "1v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_001v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_001v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_001v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_001v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86a4dd4e-1262-4e88-b12f-a760aca956d5" + } + ] + }, + { + "label": { + "@none": [ + "2r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_002r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_002r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_002r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cdb5e5d4-ee47-4d5e-a7ba-ab3a0f17831f" + } + ] + }, + { + "label": { + "@none": [ + "2v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_002v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_002v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_002v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_002v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8247ae9-49a8-4ef2-9f49-9fadfb2808b7" + } + ] + }, + { + "label": { + "@none": [ + "3r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_003r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_003r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_003r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebaf68d4-f9a7-461e-9d9a-6e91e1cab084" + } + ] + }, + { + "label": { + "@none": [ + "3v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_003v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_003v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_003v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_003v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d9b0fd9b-69db-4f86-bf9e-7fde83f0f8de" + } + ] + }, + { + "label": { + "@none": [ + "4r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_004r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_004r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_004r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c373c41e-d5ac-4b25-96b3-0ee003e3a152" + } + ] + }, + { + "label": { + "@none": [ + "4v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_004v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_004v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_004v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_004v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8ded71e-6339-4241-b65a-25deec5ae83a" + } + ] + }, + { + "label": { + "@none": [ + "5r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_005r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_005r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_005r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/464b9541-1f72-4b05-bda5-14b0606f2733" + } + ] + }, + { + "label": { + "@none": [ + "5v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_005v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_005v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_005v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_005v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/50003f43-3fbb-4707-bb44-62bfca0baa4e" + } + ] + }, + { + "label": { + "@none": [ + "6r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_006r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_006r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_006r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2444a06-1881-4aba-8e5f-7deea65ac9f4" + } + ] + }, + { + "label": { + "@none": [ + "6v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_006v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_006v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_006v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_006v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5f4a4b9-1eaf-4d5a-b24b-c03bf36a30d8" + } + ] + }, + { + "label": { + "@none": [ + "7r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_007r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_007r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_007r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6eb1d38-703c-41b7-8be5-d1585870d036" + } + ] + }, + { + "label": { + "@none": [ + "7v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_007v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_007v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_007v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_007v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/57a996c2-e148-4067-85d4-ddbe1654f1f1" + } + ] + }, + { + "label": { + "@none": [ + "8r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_008r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_008r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_008r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88db9cd0-63d0-41f9-acce-90159612504c" + } + ] + }, + { + "label": { + "@none": [ + "8v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_008v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_008v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_008v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_008v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd03178f-efa9-47df-b098-e83b54e496df" + } + ] + }, + { + "label": { + "@none": [ + "9r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_009r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_009r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_009r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/41f6abe9-1130-482b-867f-9d117563e0cd" + } + ] + }, + { + "label": { + "@none": [ + "9v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_009v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_009v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_009v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_009v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c4fdaa48-16fa-4e77-b41c-55d328a8a7a1" + } + ] + }, + { + "label": { + "@none": [ + "10r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_010r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_010r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_010r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3591635e-65f2-4232-a31b-4f3953d98f78" + } + ] + }, + { + "label": { + "@none": [ + "10v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_010v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_010v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_010v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_010v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42324990-82bb-419b-ad60-948714056f1f" + } + ] + }, + { + "label": { + "@none": [ + "11r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_011r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_011r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_011r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dafec4c2-b4be-4dbc-9414-e23ec5b7e55e" + } + ] + }, + { + "label": { + "@none": [ + "11v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_011v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_011v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_011v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_011v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2a37ef6-89b2-4625-8e2d-35a8e2f6c5d9" + } + ] + }, + { + "label": { + "@none": [ + "12r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_012r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_012r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_012r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eee79664-ba0b-433f-8f65-6c3980d89a9a" + } + ] + }, + { + "label": { + "@none": [ + "12v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_012v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_012v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_012v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_012v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44894f92-4ba6-4c99-aba7-6ac538daa1ef" + } + ] + }, + { + "label": { + "@none": [ + "13r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_013r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_013r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_013r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4a99da6d-e8bf-41af-9250-2f3034f9260b" + } + ] + }, + { + "label": { + "@none": [ + "13v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_013v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_013v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_013v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_013v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84834df0-7f4c-4578-ad42-8a3757bab353" + } + ] + }, + { + "label": { + "@none": [ + "14r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_014r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_014r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_014r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4bf7aecb-6434-45b7-8afb-37b00d34a4bd" + } + ] + }, + { + "label": { + "@none": [ + "14v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_014v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_014v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_014v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_014v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/40b8fba3-86ba-47d0-8ebf-9352499a03a4" + } + ] + }, + { + "label": { + "@none": [ + "15r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_015r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_015r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_015r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cbbc721-30c3-4979-8a53-b1bd681eabe6" + } + ] + }, + { + "label": { + "@none": [ + "15v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_015v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_015v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_015v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_015v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/748341c0-af61-4140-9455-84cea9ed24ff" + } + ] + }, + { + "label": { + "@none": [ + "16r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_016r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_016r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_016r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e65077e3-ba85-4cec-8273-ad4a670c9db1" + } + ] + }, + { + "label": { + "@none": [ + "16v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_016v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_016v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_016v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_016v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a30ebed-a04a-45ba-9854-5273f0e16b35" + } + ] + }, + { + "label": { + "@none": [ + "17r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_017r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_017r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_017r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/735d4f66-95d8-4175-b807-aedb2855b90d" + } + ] + }, + { + "label": { + "@none": [ + "17v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_017v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_017v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_017v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_017v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dc539a95-befc-4999-a03b-396c4196c3a2" + } + ] + }, + { + "label": { + "@none": [ + "18r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_018r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_018r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_018r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7088db59-d0f1-4765-914a-f56f6c0eecf8" + } + ] + }, + { + "label": { + "@none": [ + "18v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_018v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_018v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_018v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_018v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06983f2f-4e3d-47ca-a904-0ece33894b60" + } + ] + }, + { + "label": { + "@none": [ + "19r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_019r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_019r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_019r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97f5e370-646a-40aa-909e-76dfeca6542e" + } + ] + }, + { + "label": { + "@none": [ + "19v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_019v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_019v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_019v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_019v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ffe8e083-9cea-46e0-89e8-136a646c962c" + } + ] + }, + { + "label": { + "@none": [ + "20r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_020r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_020r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_020r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70621f4c-46c1-422d-b0d9-2b60b5daa622" + } + ] + }, + { + "label": { + "@none": [ + "20v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_020v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_020v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_020v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_020v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4d79b9e2-f836-4eb0-9d49-911c583cf0d5" + } + ] + }, + { + "label": { + "@none": [ + "21r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_021r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_021r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_021r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aa0c9232-18b1-4701-887b-b4fde2e5e0d0" + } + ] + }, + { + "label": { + "@none": [ + "21v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_021v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_021v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_021v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_021v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3c24b2db-fee7-4052-b754-d3429b6765e8" + } + ] + }, + { + "label": { + "@none": [ + "22r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_022r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_022r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_022r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e3fad3e-e1d3-4168-b224-518efbef691d" + } + ] + }, + { + "label": { + "@none": [ + "22v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_022v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_022v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_022v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_022v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/750c828f-a0e8-4229-ab7a-b435100b31bf" + } + ] + }, + { + "label": { + "@none": [ + "23r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_023r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_023r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_023r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9257516c-0d9b-4a63-ac3f-88f3a753b376" + } + ] + }, + { + "label": { + "@none": [ + "23v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_023v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_023v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_023v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_023v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cccb8398-28ff-4de9-833c-68ba69fca026" + } + ] + }, + { + "label": { + "@none": [ + "24r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_024r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_024r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_024r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86a3d0a7-f315-4046-b231-2aee6a5830ae" + } + ] + }, + { + "label": { + "@none": [ + "24v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_024v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_024v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_024v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_024v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8c0f9b9a-0e21-4bf6-bb31-e4c295c538d1" + } + ] + }, + { + "label": { + "@none": [ + "25r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_025r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_025r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_025r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3046ed53-6168-4e5b-806f-94591cacff33" + } + ] + }, + { + "label": { + "@none": [ + "25v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_025v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_025v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_025v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_025v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/920cf5ab-3258-40b2-99db-97741ab510d5" + } + ] + }, + { + "label": { + "@none": [ + "26r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_026r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_026r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_026r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9b8be07d-0324-4ac6-89a0-9899ae869b12" + } + ] + }, + { + "label": { + "@none": [ + "26v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_026v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_026v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_026v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_026v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d222a7c6-37d7-451a-a35a-a5eb15d47b69" + } + ] + }, + { + "label": { + "@none": [ + "27r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_027r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_027r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_027r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea318314-e9f3-4211-8d32-29f3abe189c5" + } + ] + }, + { + "label": { + "@none": [ + "27v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_027v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_027v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_027v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_027v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/42c4b311-db64-42a1-a23a-49d501571fd4" + } + ] + }, + { + "label": { + "@none": [ + "28r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_028r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_028r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_028r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/488be325-c474-41d1-b67e-139f668dba06" + } + ] + }, + { + "label": { + "@none": [ + "28v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_028v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_028v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_028v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_028v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/acb6cea8-97c8-4bfa-b5f6-74eaf2a884b5" + } + ] + }, + { + "label": { + "@none": [ + "29r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_029r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_029r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_029r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9f45c7ad-9dc9-455b-ba41-606d36437aaa" + } + ] + }, + { + "label": { + "@none": [ + "29v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_029v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_029v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_029v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_029v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b14950cc-ab1c-4ee4-bece-438e53735d9b" + } + ] + }, + { + "label": { + "@none": [ + "30r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_030r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_030r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_030r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/08ee50c4-420d-4a44-8800-e3ead2183347" + } + ] + }, + { + "label": { + "@none": [ + "30v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_030v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_030v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_030v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_030v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8a7890a1-12c8-4470-a585-e06394984043" + } + ] + }, + { + "label": { + "@none": [ + "31r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_031r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_031r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_031r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/609e299d-c3d5-43a7-b8a5-3bd973582184" + } + ] + }, + { + "label": { + "@none": [ + "31v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_031v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_031v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_031v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_031v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b15847e7-67e9-41b0-b1a7-068d0ce54473" + } + ] + }, + { + "label": { + "@none": [ + "32r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_032r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_032r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_032r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7641325c-4111-4ef2-b197-6274c61cd0b2" + } + ] + }, + { + "label": { + "@none": [ + "32v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_032v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_032v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_032v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_032v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8c5b7fff-7d77-40e7-a86e-d05344f4c3b7" + } + ] + }, + { + "label": { + "@none": [ + "33r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_033r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_033r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_033r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c9429067-62da-4869-9603-8067194383f5" + } + ] + }, + { + "label": { + "@none": [ + "33v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_033v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_033v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_033v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_033v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/773ba1b9-6a6a-409f-a635-c912a5b180ed" + } + ] + }, + { + "label": { + "@none": [ + "34r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_034r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_034r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_034r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4435a424-6d4a-4ec8-a41a-d77fe37e6719" + } + ] + }, + { + "label": { + "@none": [ + "34v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_034v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_034v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_034v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_034v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e53dd68b-e543-427e-8990-20b4fb9a5e9a" + } + ] + }, + { + "label": { + "@none": [ + "35r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_035r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_035r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_035r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98a59640-f261-4e8d-a69e-31dc71226e9a" + } + ] + }, + { + "label": { + "@none": [ + "35v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_035v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_035v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_035v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_035v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9c1c49ea-7d74-48a0-a178-5804b7b319cc" + } + ] + }, + { + "label": { + "@none": [ + "36r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_036r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_036r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_036r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c0704115-432c-4b96-aafd-4e2d61ae60e2" + } + ] + }, + { + "label": { + "@none": [ + "36v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_036v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_036v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_036v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_036v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f077d5a0-08df-4f05-a6ea-9a70aeccd3cd" + } + ] + }, + { + "label": { + "@none": [ + "37r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_037r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_037r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_037r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b32a8946-07f7-449b-a62a-add97613118c" + } + ] + }, + { + "label": { + "@none": [ + "37v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_037v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_037v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_037v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_037v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12094f3b-08b4-49df-95e3-cf66f1e6dbd3" + } + ] + }, + { + "label": { + "@none": [ + "38r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_038r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_038r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_038r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/88f7243c-820d-49e8-8af3-3513df32741a" + } + ] + }, + { + "label": { + "@none": [ + "38v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_038v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_038v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_038v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_038v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/56330745-3143-4691-8d08-35e060feade4" + } + ] + }, + { + "label": { + "@none": [ + "39r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_039r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_039r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_039r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9617112-52b1-4459-a711-6a5b91cd2bf8" + } + ] + }, + { + "label": { + "@none": [ + "39v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_039v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_039v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_039v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_039v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8f23fa46-6bc2-4057-ac5b-51d1d8038768" + } + ] + }, + { + "label": { + "@none": [ + "40r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_040r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_040r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_040r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48732add-2cc7-4323-986a-c81ed030d4dc" + } + ] + }, + { + "label": { + "@none": [ + "40v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_040v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_040v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_040v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_040v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87f77c1c-2c96-443e-b434-182d943f41a9" + } + ] + }, + { + "label": { + "@none": [ + "41r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_041r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_041r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_041r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b497d76-7609-46b5-954e-a75c3373f4ac" + } + ] + }, + { + "label": { + "@none": [ + "41v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_041v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_041v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_041v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_041v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aada1b22-1f34-4fa6-8c63-abedf17ddad1" + } + ] + }, + { + "label": { + "@none": [ + "42r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_042r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_042r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_042r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e405a73-c143-4d39-966c-e69082415a5f" + } + ] + }, + { + "label": { + "@none": [ + "42v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_042v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_042v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_042v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_042v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a47b98ec-d69c-41ce-bea0-f9daa5f8f4fc" + } + ] + }, + { + "label": { + "@none": [ + "43r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_043r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_043r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_043r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df511927-6544-4ae2-acfb-88613c637808" + } + ] + }, + { + "label": { + "@none": [ + "43v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_043v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_043v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_043v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_043v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df8d73ee-6c40-4d76-b5f6-6c7ba626d9b0" + } + ] + }, + { + "label": { + "@none": [ + "44r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_044r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_044r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_044r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a2fccdda-626f-4785-a9d9-85a65e8f3ff4" + } + ] + }, + { + "label": { + "@none": [ + "44v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_044v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_044v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_044v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_044v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cf6b2135-80d8-4d8c-a572-63ccd4b4762c" + } + ] + }, + { + "label": { + "@none": [ + "45r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_045r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_045r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_045r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d295e71a-9c1d-4261-8e1a-96a473780161" + } + ] + }, + { + "label": { + "@none": [ + "45v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_045v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_045v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_045v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_045v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e3d295eb-6966-431f-8d63-b433ac9c5213" + } + ] + }, + { + "label": { + "@none": [ + "46r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_046r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_046r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_046r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff63818b-ceba-4f91-b361-bec0267033c6" + } + ] + }, + { + "label": { + "@none": [ + "46v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_046v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_046v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_046v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_046v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9af9e9a4-82c5-4faf-9673-9c6603800410" + } + ] + }, + { + "label": { + "@none": [ + "47r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_047r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_047r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_047r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/345c25b9-e636-4ad5-bbf3-52b25e8d8f79" + } + ] + }, + { + "label": { + "@none": [ + "47v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_047v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_047v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_047v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_047v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/adf1cba6-ba26-4469-b810-02c3134a1ee1" + } + ] + }, + { + "label": { + "@none": [ + "48r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_048r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_048r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_048r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62736ae5-635e-4f44-9117-75734e1886a1" + } + ] + }, + { + "label": { + "@none": [ + "48v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_048v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_048v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_048v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_048v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2243a897-d8fa-4e52-ae4c-e41d567d5f90" + } + ] + }, + { + "label": { + "@none": [ + "49r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_049r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_049r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_049r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7c3cc057-1b6e-49cd-8097-96fc4217ce76" + } + ] + }, + { + "label": { + "@none": [ + "49v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_049v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_049v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_049v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_049v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cae19445-b0cd-4d31-ac41-cb3f9ab764c1" + } + ] + }, + { + "label": { + "@none": [ + "50r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_050r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_050r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_050r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/79ee388c-bf0a-4691-ac7a-a9fdc1fe164d" + } + ] + }, + { + "label": { + "@none": [ + "50v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_050v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_050v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_050v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_050v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3820460f-c39e-4918-b53c-d7eca309cdb1" + } + ] + }, + { + "label": { + "@none": [ + "51r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_051r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_051r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_051r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b3aba4d9-0284-4bd3-8674-5c3ec9341b08" + } + ] + }, + { + "label": { + "@none": [ + "51v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_051v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_051v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_051v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_051v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51c1494b-26dc-4a8c-a87f-a0cd80ff17de" + } + ] + }, + { + "label": { + "@none": [ + "52r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_052r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_052r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_052r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/282664cb-b60d-4582-908c-1f47ae19b801" + } + ] + }, + { + "label": { + "@none": [ + "52v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_052v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_052v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_052v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_052v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3058ca57-712e-40bf-ae0c-8c1512448be0" + } + ] + }, + { + "label": { + "@none": [ + "53r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_053r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_053r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_053r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d41b137a-2a8d-4112-8837-9f55549379f5" + } + ] + }, + { + "label": { + "@none": [ + "53v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_053v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_053v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_053v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_053v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f91f574b-c783-415c-8ed1-3cb6095393c2" + } + ] + }, + { + "label": { + "@none": [ + "54r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_054r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_054r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_054r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebf0a65d-3bdc-4862-be17-0d2ea5b0cc8f" + } + ] + }, + { + "label": { + "@none": [ + "54v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_054v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_054v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_054v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_054v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64df0431-4cd5-4ba0-a567-e0ba816b023c" + } + ] + }, + { + "label": { + "@none": [ + "55r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_055r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_055r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_055r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f9c77500-0c0c-4b90-9db7-8b16a3dcbf5b" + } + ] + }, + { + "label": { + "@none": [ + "55v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_055v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_055v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_055v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_055v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c1dcf704-37bb-4a65-b05a-9ed41a5c8c20" + } + ] + }, + { + "label": { + "@none": [ + "56r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_056r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_056r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_056r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2deeab21-1906-4984-8262-2830e6823d57" + } + ] + }, + { + "label": { + "@none": [ + "56v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_056v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_056v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_056v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_056v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6e76347e-eb01-4025-aa5e-29ab3d6e35a3" + } + ] + }, + { + "label": { + "@none": [ + "57r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_057r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_057r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_057r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f569677c-e00e-4b8f-a11d-ac067a2e825a" + } + ] + }, + { + "label": { + "@none": [ + "57v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_057v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_057v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_057v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_057v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a783d68-807e-4193-959c-e6706218ac1b" + } + ] + }, + { + "label": { + "@none": [ + "58r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_058r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_058r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_058r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/379a9dca-2841-4a37-b25d-bff2427055ac" + } + ] + }, + { + "label": { + "@none": [ + "58v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_058v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_058v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_058v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_058v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e76432f0-a43e-4757-a5b7-dc95c0e3176b" + } + ] + }, + { + "label": { + "@none": [ + "59r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_059r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_059r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_059r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb79b875-f1cc-44e0-9063-4492fd458543" + } + ] + }, + { + "label": { + "@none": [ + "59v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_059v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_059v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_059v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_059v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e904ced7-b050-4179-b092-0b3038a77ecf" + } + ] + }, + { + "label": { + "@none": [ + "60r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_060r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_060r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_060r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ff3d421-09bd-4267-aa9e-5f73cb9bdbab" + } + ] + }, + { + "label": { + "@none": [ + "60v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_060v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_060v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_060v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_060v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e80ec3d1-2c9d-4e5d-8956-e1e06fa1f37d" + } + ] + }, + { + "label": { + "@none": [ + "61r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_061r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_061r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_061r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6eb58635-dad4-48ff-ac18-cee68d035fd8" + } + ] + }, + { + "label": { + "@none": [ + "61v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_061v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_061v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_061v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_061v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb3cf9dc-e455-46c0-b4c6-b597a012ee90" + } + ] + }, + { + "label": { + "@none": [ + "62r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_062r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_062r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_062r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33a36884-0dd2-467b-9d61-b02391acbb68" + } + ] + }, + { + "label": { + "@none": [ + "62v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_062v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_062v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_062v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_062v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31e465fe-05ca-434f-b008-8e339a01e431" + } + ] + }, + { + "label": { + "@none": [ + "63r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_063r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_063r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_063r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0103995f-0c35-4ccf-a3e4-759a86b50ec0" + } + ] + }, + { + "label": { + "@none": [ + "63v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_063v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_063v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_063v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_063v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5118f32a-f8ad-42c6-a352-9d3fab54a930" + } + ] + }, + { + "label": { + "@none": [ + "64r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_064r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_064r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_064r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9ac37fe-4c56-4cd0-8e6b-5dd55c6e5768" + } + ] + }, + { + "label": { + "@none": [ + "64v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_064v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_064v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_064v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_064v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/33c1b4d9-9332-4175-b647-af5ec2c5f320" + } + ] + }, + { + "label": { + "@none": [ + "65r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_065r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_065r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_065r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5c3b5c92-ea3a-41ba-a085-0c5332afeb29" + } + ] + }, + { + "label": { + "@none": [ + "65v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_065v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_065v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_065v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_065v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/845c7dd5-5de0-4e0c-a222-0d831004d48e" + } + ] + }, + { + "label": { + "@none": [ + "66r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_066r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_066r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_066r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34ee24a8-92f6-4875-b66a-cf519217ae83" + } + ] + }, + { + "label": { + "@none": [ + "66v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_066v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_066v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_066v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_066v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e7695782-5cb1-4150-ae19-15e2f1c5bc87" + } + ] + }, + { + "label": { + "@none": [ + "67r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_067r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_067r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_067r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/12ef0125-dee7-4968-894e-86b0feb85fd4" + } + ] + }, + { + "label": { + "@none": [ + "67v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_067v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_067v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_067v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_067v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ebf5450a-1447-4c85-bf3a-16d85d7a7b1e" + } + ] + }, + { + "label": { + "@none": [ + "68r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_068r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_068r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_068r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8eb4eb2c-c91f-4687-981f-363c88833215" + } + ] + }, + { + "label": { + "@none": [ + "68v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_068v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_068v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_068v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_068v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cead4a2-28e0-412a-9eb5-1b092fde6f47" + } + ] + }, + { + "label": { + "@none": [ + "69r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_069r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_069r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_069r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c36b158-3c13-437f-b71e-2b075c6fd951" + } + ] + }, + { + "label": { + "@none": [ + "69v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_069v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_069v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_069v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_069v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca0f686e-0d59-4d8b-b2e4-6e1603592af2" + } + ] + }, + { + "label": { + "@none": [ + "70r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_070r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_070r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_070r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3dbdf194-0f1f-47e6-9e52-014e7b15cba1" + } + ] + }, + { + "label": { + "@none": [ + "70v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_070v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_070v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_070v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_070v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8299fec5-cdf5-44e6-ad3a-c71171a04453" + } + ] + }, + { + "label": { + "@none": [ + "71r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_071r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_071r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_071r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8af25156-3c8a-4987-bfd0-61a8ee5763db" + } + ] + }, + { + "label": { + "@none": [ + "71v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_071v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_071v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_071v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_071v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2b548387-ce94-487c-9edd-8f91372e4e7d" + } + ] + }, + { + "label": { + "@none": [ + "72r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_072r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_072r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_072r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a5181bea-2328-4854-adea-b03bcd97df4b" + } + ] + }, + { + "label": { + "@none": [ + "72v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_072v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_072v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_072v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_072v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e5926f4d-70dd-45ea-a448-3f04c138a478" + } + ] + }, + { + "label": { + "@none": [ + "73r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_073r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_073r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_073r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2ef7146d-e98e-4f9a-811b-d65401a1b434" + } + ] + }, + { + "label": { + "@none": [ + "73v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_073v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_073v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_073v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_073v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3ac01b61-c07c-42fb-807d-87c4087e99f0" + } + ] + }, + { + "label": { + "@none": [ + "74r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_074r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_074r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_074r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a99d00a4-6b56-4f50-8f3e-b2fd6cfb3785" + } + ] + }, + { + "label": { + "@none": [ + "74v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_074v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_074v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_074v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_074v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7d5fdf5a-1ea1-434e-96d2-a89ca2f2f92c" + } + ] + }, + { + "label": { + "@none": [ + "75r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_075r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_075r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_075r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/71984aa3-6a86-45d1-beb7-a2021b471825" + } + ] + }, + { + "label": { + "@none": [ + "75v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_075v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_075v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_075v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_075v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/45323ce4-5a49-4271-98a3-67cf417f3bdd" + } + ] + }, + { + "label": { + "@none": [ + "76r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_076r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_076r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_076r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7c07a359-9a34-40f1-8e7d-0b85051b9e6b" + } + ] + }, + { + "label": { + "@none": [ + "76v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_076v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_076v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_076v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_076v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3433b9c0-e221-4915-aae2-14c7abd3cd2f" + } + ] + }, + { + "label": { + "@none": [ + "77r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_077r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_077r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_077r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e340f40f-a493-4d6f-8bcf-46d5f5575ba2" + } + ] + }, + { + "label": { + "@none": [ + "77v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_077v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_077v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_077v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_077v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31d97cce-b321-4ee7-98b6-94540cf28136" + } + ] + }, + { + "label": { + "@none": [ + "78r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_078r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_078r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_078r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/79719dee-c2dc-47db-8a77-599200cad14e" + } + ] + }, + { + "label": { + "@none": [ + "78v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_078v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_078v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_078v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_078v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8fb25db3-b961-48a8-a5d9-a01b84fb6b9e" + } + ] + }, + { + "label": { + "@none": [ + "79r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_079r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_079r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_079r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b715283e-8839-475f-8ad2-dbd1ad74301e" + } + ] + }, + { + "label": { + "@none": [ + "79v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_079v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_079v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_079v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_079v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/94a730d7-16c2-4353-84c9-857aecf247d1" + } + ] + }, + { + "label": { + "@none": [ + "80r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_080r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_080r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_080r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37885192-903f-4e58-9af7-da1f1d283610" + } + ] + }, + { + "label": { + "@none": [ + "80v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_080v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_080v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_080v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_080v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4f0e10e-87a5-4d2e-8a99-40c0fb85946e" + } + ] + }, + { + "label": { + "@none": [ + "81r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_081r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_081r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_081r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bb76044-e8b1-4f16-9c4b-20c9c5a41507" + } + ] + }, + { + "label": { + "@none": [ + "81v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_081v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_081v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_081v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_081v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7127a206-27a2-4055-970d-16469fccdfad" + } + ] + }, + { + "label": { + "@none": [ + "82r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_082r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_082r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_082r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/511275ba-b6f0-4ce6-929d-618de96b29ab" + } + ] + }, + { + "label": { + "@none": [ + "82v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_082v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_082v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_082v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_082v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44db171a-ac5e-43c1-8a25-0e51f441c3ae" + } + ] + }, + { + "label": { + "@none": [ + "83r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_083r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_083r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_083r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd0c8e74-8384-475b-9879-5d85364c34fa" + } + ] + }, + { + "label": { + "@none": [ + "83v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_083v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_083v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_083v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_083v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d1a517fb-8d6c-4461-87d5-c570c28bb475" + } + ] + }, + { + "label": { + "@none": [ + "84r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_084r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_084r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_084r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/806756bc-2bba-4e18-a5fa-ce9fd09f2258" + } + ] + }, + { + "label": { + "@none": [ + "84v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_084v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_084v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_084v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_084v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f1b1692b-df46-4ae2-9ed9-ff3db10a2371" + } + ] + }, + { + "label": { + "@none": [ + "85r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_085r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_085r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_085r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d2d76436-004f-4e2a-970c-98191df97140" + } + ] + }, + { + "label": { + "@none": [ + "85v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_085v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_085v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_085v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_085v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ddff8e02-e54e-4b7f-a47d-620db68993c2" + } + ] + }, + { + "label": { + "@none": [ + "86r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_086r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_086r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_086r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/98f4a2a7-b6a5-4734-a1c2-ed17d4c2f399" + } + ] + }, + { + "label": { + "@none": [ + "86v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_086v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_086v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_086v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_086v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8872f3d9-e60a-418d-955f-773c72471111" + } + ] + }, + { + "label": { + "@none": [ + "87r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_087r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_087r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_087r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d07c66e4-2895-4ade-bf4e-2fc2a59c9be4" + } + ] + }, + { + "label": { + "@none": [ + "87v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_087v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_087v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_087v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_087v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/03f308a1-3cd0-483e-a547-9afb0d1f6103" + } + ] + }, + { + "label": { + "@none": [ + "88r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_088r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_088r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_088r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ad9ebf3-c1cf-4213-9964-b1f2d57a8532" + } + ] + }, + { + "label": { + "@none": [ + "88v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_088v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_088v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_088v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_088v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6b262b95-257e-4a68-98f3-a984cc2ede77" + } + ] + }, + { + "label": { + "@none": [ + "89r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_089r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_089r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_089r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ddef9e2b-eaa5-409e-a91a-710fb0e1c889" + } + ] + }, + { + "label": { + "@none": [ + "89v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_089v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_089v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_089v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_089v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/11354299-8f5d-4295-8050-c8b6f4ca94f4" + } + ] + }, + { + "label": { + "@none": [ + "90r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_090r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_090r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_090r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f393d6c6-d984-4d71-84a3-1fe964800a6b" + } + ] + }, + { + "label": { + "@none": [ + "90v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_090v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_090v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_090v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_090v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/86aefe00-d93c-44d4-9972-f3452776c560" + } + ] + }, + { + "label": { + "@none": [ + "91r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_091r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_091r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_091r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc68b530-b2ee-4285-a1a4-a3134a6b5cdc" + } + ] + }, + { + "label": { + "@none": [ + "91v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_091v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_091v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_091v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_091v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/796909f5-ac97-4219-a45e-2a40c517f6f7" + } + ] + }, + { + "label": { + "@none": [ + "92r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_092r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_092r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_092r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72544779-ffcc-4ad3-b3d1-3a43a4a15821" + } + ] + }, + { + "label": { + "@none": [ + "92v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_092v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_092v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_092v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_092v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3bf69273-1de9-41b4-a9f0-b485aa3b4a80" + } + ] + }, + { + "label": { + "@none": [ + "93r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_093r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_093r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_093r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c20aab0d-ba2e-44be-b719-5ca00d933a8f" + } + ] + }, + { + "label": { + "@none": [ + "93v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_093v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_093v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_093v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_093v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df7d73c3-7b03-46f6-b1b3-8a532bee6ffc" + } + ] + }, + { + "label": { + "@none": [ + "94r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_094r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_094r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_094r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5dc493e-440a-471f-a6e8-c8f0f4fb3a8b" + } + ] + }, + { + "label": { + "@none": [ + "94v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_094v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_094v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_094v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_094v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f96f4fca-8962-4727-98b1-7c4f0e6a36e6" + } + ] + }, + { + "label": { + "@none": [ + "95r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_095r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_095r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_095r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8da7b562-2e6c-48b5-ae46-803b4c9f083a" + } + ] + }, + { + "label": { + "@none": [ + "95v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_095v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_095v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_095v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_095v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca40a29f-a1a5-4f77-b99d-056d354954ac" + } + ] + }, + { + "label": { + "@none": [ + "96r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_096r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_096r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_096r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3106fa2e-b7c0-4310-8f4a-7e0a80f1667e" + } + ] + }, + { + "label": { + "@none": [ + "96v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_096v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_096v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_096v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_096v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70444566-655f-4cbb-bb45-82d24ffe2b0d" + } + ] + }, + { + "label": { + "@none": [ + "97r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_097r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_097r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_097r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/16fb97d7-31be-4457-b667-dfdfd7a71539" + } + ] + }, + { + "label": { + "@none": [ + "97v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_097v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_097v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_097v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_097v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f843a99a-f2e5-48c7-9e44-a4c87b0e0640" + } + ] + }, + { + "label": { + "@none": [ + "98r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_098r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_098r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_098r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f34a22a-289e-43d4-93fd-7578714f4cb2" + } + ] + }, + { + "label": { + "@none": [ + "98v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_098v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_098v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_098v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_098v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/724e7183-df5f-4bfd-a4cc-a4c7e895fc93" + } + ] + }, + { + "label": { + "@none": [ + "99r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_099r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_099r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_099r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61c67adb-d103-4e50-810d-8387ac7f6213" + } + ] + }, + { + "label": { + "@none": [ + "99v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_099v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_099v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_099v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_099v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cde81247-ca74-444e-9769-3f5305df53d7" + } + ] + }, + { + "label": { + "@none": [ + "100r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_100r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_100r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_100r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97daae99-d894-4799-8342-11bd85649752" + } + ] + }, + { + "label": { + "@none": [ + "100v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_100v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_100v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_100v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_100v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2a5ed4b9-d6dd-4847-a342-1fb4f9e25611" + } + ] + }, + { + "label": { + "@none": [ + "101r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_101r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_101r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_101r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4faf172c-0497-4c91-b3c1-c69adeabee49" + } + ] + }, + { + "label": { + "@none": [ + "101v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_101v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_101v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_101v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_101v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8e20650d-5832-4255-9b19-14c9e1037bb3" + } + ] + }, + { + "label": { + "@none": [ + "102r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_102r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_102r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_102r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/de3e63fe-8c2f-4cbe-92be-0b84dc6e081c" + } + ] + }, + { + "label": { + "@none": [ + "102v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_102v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_102v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_102v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_102v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f301df14-2909-4df5-9144-62f68824c6d4" + } + ] + }, + { + "label": { + "@none": [ + "103r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_103r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_103r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_103r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8390f4f3-9044-40f5-9436-8e2e4b1e2faa" + } + ] + }, + { + "label": { + "@none": [ + "103v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_103v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_103v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_103v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_103v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d55abdb4-9147-4a91-815a-bbe1c750aca8" + } + ] + }, + { + "label": { + "@none": [ + "104r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_104r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_104r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_104r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9e23cfa0-2115-43f2-9a68-44d4b5fdbe7b" + } + ] + }, + { + "label": { + "@none": [ + "104v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_104v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_104v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_104v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_104v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1a621bf-9168-458b-87d1-d4c61d84d49e" + } + ] + }, + { + "label": { + "@none": [ + "105r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_105r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_105r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_105r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/843ea709-edf5-4792-bc29-73cd95971846" + } + ] + }, + { + "label": { + "@none": [ + "105v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_105v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_105v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_105v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_105v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/02d19b6b-f38e-45ca-9e01-93b5d13582bf" + } + ] + }, + { + "label": { + "@none": [ + "106r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_106r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_106r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_106r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/81c04e09-c4a7-4ce5-9210-fa86bc70c5d7" + } + ] + }, + { + "label": { + "@none": [ + "106v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_106v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_106v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_106v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_106v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6f16d804-eb96-4222-ba81-8aad32ded8bd" + } + ] + }, + { + "label": { + "@none": [ + "107r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_107r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_107r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_107r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4498828f-4f13-4e1c-a236-425b355c7794" + } + ] + }, + { + "label": { + "@none": [ + "107v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_107v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_107v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_107v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_107v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7db4cce5-6413-4733-b0e4-920b46269117" + } + ] + }, + { + "label": { + "@none": [ + "108r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_108r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_108r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_108r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d51a052d-6e87-408f-8307-59581c7b2edc" + } + ] + }, + { + "label": { + "@none": [ + "108v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_108v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_108v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_108v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_108v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f95a57a3-f52a-4780-8c5b-82c8bc5db779" + } + ] + }, + { + "label": { + "@none": [ + "109r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_109r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_109r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_109r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/707617c2-5f56-4eb6-9be7-ac01ed30a9ad" + } + ] + }, + { + "label": { + "@none": [ + "109v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_109v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_109v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_109v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_109v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f2b5ebd4-f341-4c37-a54f-95fb3390a366" + } + ] + }, + { + "label": { + "@none": [ + "110r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_110r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_110r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_110r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59f50c59-5fab-40b0-9bff-bcc3409e65fe" + } + ] + }, + { + "label": { + "@none": [ + "110v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_110v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_110v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_110v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_110v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/87939f2a-0885-478b-9cc8-08f5bc66ebfb" + } + ] + }, + { + "label": { + "@none": [ + "111r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_111r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_111r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_111r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9bd053d0-afeb-4eaa-867f-a1d24ab6705e" + } + ] + }, + { + "label": { + "@none": [ + "111v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_111v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_111v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_111v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_111v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4fed0300-df95-4513-a0b9-40e301029551" + } + ] + }, + { + "label": { + "@none": [ + "112r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_112r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_112r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_112r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/368bee0a-89f1-4f66-9781-8a2bb23fdff1" + } + ] + }, + { + "label": { + "@none": [ + "112v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_112v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_112v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_112v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_112v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/14985e4c-1b76-4987-8395-90940a6215bb" + } + ] + }, + { + "label": { + "@none": [ + "113r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_113r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_113r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_113r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7e81b6c2-7866-4cc8-87b8-66f3a619773d" + } + ] + }, + { + "label": { + "@none": [ + "113v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_113v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_113v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_113v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_113v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/67506817-9c8e-48dc-86f6-983f0033d3dc" + } + ] + }, + { + "label": { + "@none": [ + "114r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_114r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_114r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_114r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/306da573-9417-4a57-872e-16b2232ca1ff" + } + ] + }, + { + "label": { + "@none": [ + "114v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_114v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_114v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_114v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_114v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/72f315d5-258f-4947-9bed-a663ecdefa69" + } + ] + }, + { + "label": { + "@none": [ + "115r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_115r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_115r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_115r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8761871-a433-4789-9d0b-4618097d07f3" + } + ] + }, + { + "label": { + "@none": [ + "115v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_115v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_115v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_115v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_115v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac53d88d-a900-40c2-a9a1-b74341563322" + } + ] + }, + { + "label": { + "@none": [ + "116r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_116r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_116r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_116r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e546b04a-2793-42ba-8882-e560b04f30fb" + } + ] + }, + { + "label": { + "@none": [ + "116v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_116v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_116v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_116v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_116v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99564094-1d3f-44a8-a16c-4c302482bbfa" + } + ] + }, + { + "label": { + "@none": [ + "117r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_117r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_117r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_117r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/25c55025-823b-4db2-bb6d-4756a0ad9374" + } + ] + }, + { + "label": { + "@none": [ + "117v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_117v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_117v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_117v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_117v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/981dc0f8-d373-4cd3-b972-4a4b6357cb8d" + } + ] + }, + { + "label": { + "@none": [ + "118r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_118r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_118r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_118r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00a2830b-e4a5-47fc-b8ad-04782e390a58" + } + ] + }, + { + "label": { + "@none": [ + "118v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_118v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_118v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_118v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_118v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/abf94f6d-e6ea-4b56-a3e0-273ae77e7a92" + } + ] + }, + { + "label": { + "@none": [ + "119r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_119r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_119r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_119r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1680df8b-4e05-43a5-8166-7c8fbca0252d" + } + ] + }, + { + "label": { + "@none": [ + "119v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_119v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_119v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_119v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_119v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ca9a17da-dd17-4c07-997d-ffe7ac96865a" + } + ] + }, + { + "label": { + "@none": [ + "120r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_120r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_120r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_120r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d11ff8a7-282f-4651-9959-dc9712a44e09" + } + ] + }, + { + "label": { + "@none": [ + "120v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_120v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_120v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_120v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/70a1b5bb-f5c0-4deb-a58c-355d024831d2" + } + ] + }, + { + "label": { + "@none": [ + "120ar" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120ar.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_120ar.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120ar.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_120ar.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_120ar.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b5563187-9d5b-4546-a6a0-99b3a45dcb1e" + } + ] + }, + { + "label": { + "@none": [ + "120av" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120av.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_120av.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_120av.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_120av.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_120av.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f20cb18d-e00c-4222-9e34-855653e6fa6e" + } + ] + }, + { + "label": { + "@none": [ + "121r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_121r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_121r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_121r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/97181ea2-7146-419d-a2f0-795c35e86db7" + } + ] + }, + { + "label": { + "@none": [ + "121v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_121v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_121v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_121v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_121v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc9c21ca-2648-4b6c-9711-16926308da7c" + } + ] + }, + { + "label": { + "@none": [ + "122r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_122r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_122r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_122r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b4068915-0995-4a9d-a139-e15b7e3eedc9" + } + ] + }, + { + "label": { + "@none": [ + "122v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_122v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_122v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_122v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_122v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99010d4f-7637-43d1-9b08-c158eacf7b58" + } + ] + }, + { + "label": { + "@none": [ + "123r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_123r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_123r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_123r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fcbf93d8-0ac8-40a8-9945-4eda9236ece6" + } + ] + }, + { + "label": { + "@none": [ + "123v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_123v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_123v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_123v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_123v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ff84b5cf-9d90-4f90-90a0-54c86c4ea1ed" + } + ] + }, + { + "label": { + "@none": [ + "124r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_124r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_124r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_124r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e28746f8-10a6-4a82-8a54-43251036fadd" + } + ] + }, + { + "label": { + "@none": [ + "124v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_124v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_124v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_124v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_124v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53503538-c569-4d4e-980d-e8b546cb8235" + } + ] + }, + { + "label": { + "@none": [ + "125r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_125r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_125r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_125r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3255644d-d1ff-4a10-b95d-b7e93bc529d1" + } + ] + }, + { + "label": { + "@none": [ + "125v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_125v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_125v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_125v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_125v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c25eb9d7-cd23-4139-9d32-d8ea6a125494" + } + ] + }, + { + "label": { + "@none": [ + "126r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_126r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_126r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_126r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f59d9ed2-8083-4030-a215-0dca1770a732" + } + ] + }, + { + "label": { + "@none": [ + "126v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_126v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_126v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_126v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_126v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/780d659e-c54c-4663-b670-a3a4d2b361cd" + } + ] + }, + { + "label": { + "@none": [ + "127r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_127r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_127r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_127r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0499702b-635b-4d45-848e-c316ec92ac9b" + } + ] + }, + { + "label": { + "@none": [ + "127v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_127v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_127v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_127v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_127v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b9665796-aaef-486b-ba9f-a42908416b3b" + } + ] + }, + { + "label": { + "@none": [ + "128r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_128r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_128r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_128r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e917b462-9454-42e9-91c2-0d19c03a8120" + } + ] + }, + { + "label": { + "@none": [ + "128v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_128v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_128v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_128v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_128v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eb65ae5e-f3cb-4590-81b4-cb22962fca73" + } + ] + }, + { + "label": { + "@none": [ + "129r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_129r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_129r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_129r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/69c36e06-ba26-47fe-bd06-8e81fb5d2bf2" + } + ] + }, + { + "label": { + "@none": [ + "129v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_129v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_129v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_129v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_129v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6c2372e8-ad56-4266-92dd-c5453f20f675" + } + ] + }, + { + "label": { + "@none": [ + "130r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_130r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_130r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_130r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d0377ad2-62d6-4657-82a1-752f7ab7212a" + } + ] + }, + { + "label": { + "@none": [ + "130v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_130v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_130v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_130v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_130v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/584e2228-0374-4e9e-8a7b-9fc3943f46b2" + } + ] + }, + { + "label": { + "@none": [ + "131r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_131r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_131r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_131r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd3d3640-207e-4c7e-91bd-2e2b59cd17b6" + } + ] + }, + { + "label": { + "@none": [ + "131v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_131v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_131v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_131v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_131v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6cfdd80f-b997-4d99-97bf-aac5fc44c092" + } + ] + }, + { + "label": { + "@none": [ + "132r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_132r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_132r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_132r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/53adff37-91f7-4991-a445-e05aceb5e95c" + } + ] + }, + { + "label": { + "@none": [ + "132v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_132v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_132v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_132v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_132v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a5ba1f9-a6a0-4417-bac6-56640bb5df49" + } + ] + }, + { + "label": { + "@none": [ + "133r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_133r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_133r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_133r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7061022d-e385-4827-8132-38cb7be34cf8" + } + ] + }, + { + "label": { + "@none": [ + "133v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_133v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_133v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_133v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_133v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9aabadd2-b776-4e44-b5f6-f7d896b999a7" + } + ] + }, + { + "label": { + "@none": [ + "134r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_134r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_134r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_134r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7c6ec936-d7c9-4112-906c-8edb56a6c0e9" + } + ] + }, + { + "label": { + "@none": [ + "134v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_134v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_134v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_134v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_134v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fd19cc0a-d790-4724-9189-e9186a490b86" + } + ] + }, + { + "label": { + "@none": [ + "135r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_135r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_135r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_135r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b6bdb31-6839-4adf-9021-ac7155649f37" + } + ] + }, + { + "label": { + "@none": [ + "135v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_135v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_135v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_135v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_135v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0ac2ef45-9b92-4620-af13-2a2860815ec2" + } + ] + }, + { + "label": { + "@none": [ + "136r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_136r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_136r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_136r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5bc0c8b6-4200-4ab0-bc8d-18c4b43975b0" + } + ] + }, + { + "label": { + "@none": [ + "136v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_136v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_136v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_136v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_136v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e3480d0-908c-4cf2-9a7d-0a5b1238790b" + } + ] + }, + { + "label": { + "@none": [ + "137r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_137r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_137r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_137r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1a352bd2-995c-41ff-b1e7-3fe8df48c203" + } + ] + }, + { + "label": { + "@none": [ + "137v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_137v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_137v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_137v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_137v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/00f8787e-9cf3-4397-b6b2-1c4f8f8f423e" + } + ] + }, + { + "label": { + "@none": [ + "138r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_138r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_138r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_138r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/37ebdb4a-1388-46fb-a281-a0281f6bd5eb" + } + ] + }, + { + "label": { + "@none": [ + "138v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_138v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_138v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_138v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_138v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a5cdb912-13cb-441b-a423-923d567773b1" + } + ] + }, + { + "label": { + "@none": [ + "139r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_139r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_139r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_139r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd95d9a5-068d-4c75-91f3-aeee13aea9dc" + } + ] + }, + { + "label": { + "@none": [ + "139v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_139v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_139v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_139v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_139v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9acfe5ea-d79b-433c-bd87-5f7b0ddc6f09" + } + ] + }, + { + "label": { + "@none": [ + "140r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_140r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_140r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_140r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0bc44d0-5b4a-402d-bb5f-118818450dae" + } + ] + }, + { + "label": { + "@none": [ + "140v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_140v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_140v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_140v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_140v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/665b259d-d906-4613-b324-59512c5db463" + } + ] + }, + { + "label": { + "@none": [ + "141r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_141r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_141r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_141r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7aca7ab0-b103-40f2-a93b-18c0e779012e" + } + ] + }, + { + "label": { + "@none": [ + "141v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_141v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_141v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_141v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_141v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/272d80d0-43e7-4745-8f45-e56004a3ff25" + } + ] + }, + { + "label": { + "@none": [ + "142r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_142r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_142r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_142r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f6dabe9-d102-4aae-b133-5696031baa99" + } + ] + }, + { + "label": { + "@none": [ + "142v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_142v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_142v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_142v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_142v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83441ae5-e661-4842-9a74-6ae3725ea3d5" + } + ] + }, + { + "label": { + "@none": [ + "143r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_143r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_143r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_143r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/43941399-8ae5-47fa-acc4-192f77b0722f" + } + ] + }, + { + "label": { + "@none": [ + "143v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_143v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_143v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_143v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_143v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0e9de4a1-2e56-46b4-b7b5-44977f8c1c70" + } + ] + }, + { + "label": { + "@none": [ + "144r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_144r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_144r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_144r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/73eb23d8-e150-49a4-ab11-5a40ac6d4a87" + } + ] + }, + { + "label": { + "@none": [ + "144v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_144v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_144v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_144v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_144v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/51c7203a-858d-4df9-9f0a-4fc5e9c50917" + } + ] + }, + { + "label": { + "@none": [ + "145r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_145r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_145r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_145r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b1af9f7c-03f8-463b-938e-dc2df4458d1d" + } + ] + }, + { + "label": { + "@none": [ + "145v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_145v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_145v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_145v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_145v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5b1504db-d603-4930-b0c2-f2cbe33502d7" + } + ] + }, + { + "label": { + "@none": [ + "146r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_146r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_146r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_146r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/145834c1-8d95-4ced-8ef9-6eac61fae577" + } + ] + }, + { + "label": { + "@none": [ + "146v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_146v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_146v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_146v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_146v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/84c3ce16-5d27-4899-92ab-3b3eb1ba0413" + } + ] + }, + { + "label": { + "@none": [ + "147r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_147r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_147r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_147r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f4288775-3489-4613-85c6-b6c2583c782f" + } + ] + }, + { + "label": { + "@none": [ + "147v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_147v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_147v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_147v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_147v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8ac0be5-2b4c-4098-815f-7544ec86856e" + } + ] + }, + { + "label": { + "@none": [ + "148r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_148r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_148r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_148r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df01c664-b6b6-4f7c-9ba9-66d261c185c6" + } + ] + }, + { + "label": { + "@none": [ + "148v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_148v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_148v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_148v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_148v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/64139a6e-c40e-46e5-a689-b5b3305ff6f9" + } + ] + }, + { + "label": { + "@none": [ + "149r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_149r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_149r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_149r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d8d42e19-0d8a-4ff6-a6e1-65e870f51f42" + } + ] + }, + { + "label": { + "@none": [ + "149v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_149v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_149v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_149v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_149v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/959ccbac-5a5b-47f2-9981-99e79dec9f11" + } + ] + }, + { + "label": { + "@none": [ + "150r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_150r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_150r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_150r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cdabc768-bb49-4b99-875d-1669e95cb5a7" + } + ] + }, + { + "label": { + "@none": [ + "150v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_150v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_150v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_150v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_150v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fad088cd-d8ad-4afc-b9d4-529201049918" + } + ] + }, + { + "label": { + "@none": [ + "151r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_151r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_151r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_151r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ad164bcf-627c-4194-adf7-8808d7de1d80" + } + ] + }, + { + "label": { + "@none": [ + "151v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_151v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_151v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_151v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_151v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cb894273-7ffc-4f5b-af4f-09a7f79b0536" + } + ] + }, + { + "label": { + "@none": [ + "152r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_152r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_152r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_152r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6dc299f3-6be5-41c1-836d-c64cb854f67c" + } + ] + }, + { + "label": { + "@none": [ + "152v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_152v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_152v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_152v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_152v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c8c9fdca-dd03-48b3-beed-f564ea78b0e0" + } + ] + }, + { + "label": { + "@none": [ + "153r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_153r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_153r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_153r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/83f086b7-749d-4493-897e-7ef7e1cb0150" + } + ] + }, + { + "label": { + "@none": [ + "153v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_153v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_153v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_153v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_153v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cba82ea1-b876-4846-954b-9fce7f55359f" + } + ] + }, + { + "label": { + "@none": [ + "154r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_154r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_154r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_154r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edb11ed3-c433-4b1a-a0fa-201703289d3f" + } + ] + }, + { + "label": { + "@none": [ + "154v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_154v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_154v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_154v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_154v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4ff09162-ddca-45c1-8b92-0bbb8265c500" + } + ] + }, + { + "label": { + "@none": [ + "155r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_155r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_155r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_155r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/931e8431-464a-4e23-807b-93c0a67b4370" + } + ] + }, + { + "label": { + "@none": [ + "155v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_155v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_155v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_155v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_155v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edaa389c-ca9c-48f9-b487-8d6ba01bcf20" + } + ] + }, + { + "label": { + "@none": [ + "156r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_156r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_156r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_156r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/aca8e998-86d6-4dc7-92c4-40c381d0fdeb" + } + ] + }, + { + "label": { + "@none": [ + "156v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_156v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_156v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_156v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_156v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/276f3e14-4564-40a8-acd2-6f9189670d92" + } + ] + }, + { + "label": { + "@none": [ + "157r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_157r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_157r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_157r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7fdeea83-8908-44dd-9150-7419ec919b34" + } + ] + }, + { + "label": { + "@none": [ + "157v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_157v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_157v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_157v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_157v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3a03a046-8a4a-4764-b716-724e9a119715" + } + ] + }, + { + "label": { + "@none": [ + "158r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_158r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_158r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_158r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bdeba5e4-32c7-43f1-abac-b6b44072ee55" + } + ] + }, + { + "label": { + "@none": [ + "158v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_158v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_158v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_158v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_158v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b40e62e0-b989-4b4f-b63c-aeeb1784f211" + } + ] + }, + { + "label": { + "@none": [ + "159r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_159r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_159r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_159r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8419b8a4-0f5d-44b5-bdaa-fe22d95cfe0c" + } + ] + }, + { + "label": { + "@none": [ + "159v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_159v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_159v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_159v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_159v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e37b8609-5823-487a-af85-5a1c9c21f038" + } + ] + }, + { + "label": { + "@none": [ + "160r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_160r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_160r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_160r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee7ca32a-4f55-48bc-9812-83c113976c9b" + } + ] + }, + { + "label": { + "@none": [ + "160v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_160v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_160v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_160v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_160v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0f82b58c-48c5-40da-8bb9-4440a89638a5" + } + ] + }, + { + "label": { + "@none": [ + "161r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_161r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_161r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_161r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62bf46d3-dbc2-4ec6-bf17-43042430a1fd" + } + ] + }, + { + "label": { + "@none": [ + "161v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_161v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_161v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_161v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_161v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5fd87875-a3d1-4560-afb4-6201527ff751" + } + ] + }, + { + "label": { + "@none": [ + "162r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_162r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_162r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_162r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dd32ee9e-591a-49fd-9212-5b89c0762168" + } + ] + }, + { + "label": { + "@none": [ + "162v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_162v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_162v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_162v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_162v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d554db2c-bd3b-4495-b0e9-32f8af00ba38" + } + ] + }, + { + "label": { + "@none": [ + "163r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_163r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_163r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_163r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f6cb2eba-d929-4c28-8ea1-95a2c4239626" + } + ] + }, + { + "label": { + "@none": [ + "163v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_163v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_163v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_163v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_163v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4b35d3d9-23f2-4f4d-a007-721064ab513e" + } + ] + }, + { + "label": { + "@none": [ + "164r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_164r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_164r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_164r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/480f326c-f058-4d5a-964a-4c7646b646f2" + } + ] + }, + { + "label": { + "@none": [ + "164v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_164v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_164v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_164v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_164v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a68bece9-76f4-48ef-ae2f-4f65c92130e4" + } + ] + }, + { + "label": { + "@none": [ + "165r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_165r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_165r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_165r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/faff3cc2-dc2d-47f7-a43d-7ca589966b62" + } + ] + }, + { + "label": { + "@none": [ + "165v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_165v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_165v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_165v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_165v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5f82e22c-4b62-4606-81ba-8c50f1b7cc1f" + } + ] + }, + { + "label": { + "@none": [ + "166r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_166r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_166r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_166r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e8297ef0-8a4c-43f3-b1f4-3f8f1cdf5952" + } + ] + }, + { + "label": { + "@none": [ + "166v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_166v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_166v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_166v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_166v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9426022c-6ee0-4842-b88f-e93bf3fbab3e" + } + ] + }, + { + "label": { + "@none": [ + "167r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_167r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_167r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_167r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6e5bad0-3935-4d95-a420-b9e872db7999" + } + ] + }, + { + "label": { + "@none": [ + "167v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_167v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_167v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_167v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_167v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/71896145-349a-48f3-a2a2-fbbbb2128026" + } + ] + }, + { + "label": { + "@none": [ + "168r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_168r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_168r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_168r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a3fe010d-38e6-4c4d-aa28-4e40ce8d626a" + } + ] + }, + { + "label": { + "@none": [ + "168v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_168v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_168v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_168v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_168v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0a6886e-be3b-41b8-bc0a-a187dbc5ab6e" + } + ] + }, + { + "label": { + "@none": [ + "169r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_169r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_169r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_169r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9215f01a-6caa-4f9e-a5b5-abdff98ff557" + } + ] + }, + { + "label": { + "@none": [ + "169v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_169v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_169v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_169v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_169v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/5008b625-0344-45b0-9821-0de18ec33b80" + } + ] + }, + { + "label": { + "@none": [ + "170r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_170r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_170r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_170r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/edb1c1c5-033c-4659-a213-6cfaaaecc2de" + } + ] + }, + { + "label": { + "@none": [ + "170v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_170v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_170v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_170v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_170v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/271893a6-a415-46ac-97fb-2015abe64afb" + } + ] + }, + { + "label": { + "@none": [ + "171r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_171r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_171r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_171r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/74cdb13b-f7d6-45af-97b9-0d0ecd5dd93a" + } + ] + }, + { + "label": { + "@none": [ + "171v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_171v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_171v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_171v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_171v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/99bcfaf2-9370-4f1e-b608-64efe9d6fc38" + } + ] + }, + { + "label": { + "@none": [ + "172r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_172r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_172r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_172r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c10b6a17-a965-4313-8192-1a87fbe43c5f" + } + ] + }, + { + "label": { + "@none": [ + "172v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_172v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_172v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_172v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_172v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e9b50b45-e3c3-4e37-8efa-6e1af53434d4" + } + ] + }, + { + "label": { + "@none": [ + "173r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_173r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_173r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_173r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d3a41cf5-a397-403f-aadb-b4e91eda9f89" + } + ] + }, + { + "label": { + "@none": [ + "173v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_173v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_173v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_173v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_173v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bf3ccf91-740d-4d47-927e-d9506646247d" + } + ] + }, + { + "label": { + "@none": [ + "174r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_174r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_174r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_174r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/04edd4c5-6520-4f16-be31-377f8209876d" + } + ] + }, + { + "label": { + "@none": [ + "174v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_174v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_174v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_174v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_174v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34e9b874-90f2-4418-bf30-4d2f1a83b64b" + } + ] + }, + { + "label": { + "@none": [ + "175r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_175r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_175r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_175r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/36859e9c-ea8e-473f-a35b-f878706ad869" + } + ] + }, + { + "label": { + "@none": [ + "175v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_175v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_175v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_175v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_175v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3fea7c89-6ca7-40d5-b40f-4107115e4763" + } + ] + }, + { + "label": { + "@none": [ + "176r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_176r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_176r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_176r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e479254c-3e22-403f-8cfb-367de91f3689" + } + ] + }, + { + "label": { + "@none": [ + "176v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_176v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_176v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_176v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_176v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bd92c171-2809-4fe6-b6f4-13ad67b7dfe1" + } + ] + }, + { + "label": { + "@none": [ + "177r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_177r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_177r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_177r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/867e996d-5090-4b53-83eb-e8c0d9530985" + } + ] + }, + { + "label": { + "@none": [ + "177v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_177v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_177v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_177v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_177v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b84eebde-fdd1-46b5-8ba0-64d484131497" + } + ] + }, + { + "label": { + "@none": [ + "178r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_178r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_178r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_178r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6399cea2-3672-426d-84a9-95a7bba6e34e" + } + ] + }, + { + "label": { + "@none": [ + "178v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_178v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_178v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_178v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_178v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/15c4e927-ecb6-402b-8323-4fa966bd7a31" + } + ] + }, + { + "label": { + "@none": [ + "179r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_179r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_179r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_179r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/48246b7d-5601-4f0f-8283-007ff06267dd" + } + ] + }, + { + "label": { + "@none": [ + "179v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_179v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_179v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_179v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_179v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d69571f6-06c9-42e2-a2a7-e7656e480db3" + } + ] + }, + { + "label": { + "@none": [ + "180r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_180r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_180r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_180r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d6a6c27-f566-4788-a43d-eed666a9a72a" + } + ] + }, + { + "label": { + "@none": [ + "180v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_180v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_180v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_180v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_180v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6d40862e-b971-484d-a0fc-580f25b93656" + } + ] + }, + { + "label": { + "@none": [ + "181r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_181r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_181r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_181r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0908b9e-1478-4ea2-81e1-efefcfef5fd1" + } + ] + }, + { + "label": { + "@none": [ + "181v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_181v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_181v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_181v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_181v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/dc4a8b9b-134d-43d4-8dc6-fe8ef4078333" + } + ] + }, + { + "label": { + "@none": [ + "182r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_182r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_182r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_182r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9ba6f33d-b0cb-4ee7-805d-0c35c9a57943" + } + ] + }, + { + "label": { + "@none": [ + "182v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_182v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_182v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_182v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_182v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8d00d413-9f1d-4cd1-870a-f8a0e5b6209a" + } + ] + }, + { + "label": { + "@none": [ + "183r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_183r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_183r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_183r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/398a06a7-e54f-4e4b-8022-083b9176ab25" + } + ] + }, + { + "label": { + "@none": [ + "183v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_183v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_183v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_183v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_183v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a08f8528-1641-4603-b9bd-912b30263fa5" + } + ] + }, + { + "label": { + "@none": [ + "184r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_184r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_184r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_184r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/562b0d45-d78b-44d9-bca4-098bc3fcccf9" + } + ] + }, + { + "label": { + "@none": [ + "184v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_184v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_184v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_184v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_184v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fc58b9b8-e6b7-4a70-b0f1-7358fee0928e" + } + ] + }, + { + "label": { + "@none": [ + "185r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_185r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_185r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_185r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/e959b399-08fb-4f82-b2d8-f9058a4fc66b" + } + ] + }, + { + "label": { + "@none": [ + "185v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_185v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_185v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_185v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_185v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/52b0f1ee-9672-4bae-8e94-948c3ed08028" + } + ] + }, + { + "label": { + "@none": [ + "186r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_186r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_186r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_186r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d837089a-8ca8-43d9-ba30-d9066d5e928a" + } + ] + }, + { + "label": { + "@none": [ + "186v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_186v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_186v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_186v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_186v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1f260cd9-beab-40d0-a96c-3291dc287cf7" + } + ] + }, + { + "label": { + "@none": [ + "187r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_187r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_187r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_187r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0af816ed-9dd7-45d1-a409-3d2ae3b81181" + } + ] + }, + { + "label": { + "@none": [ + "187v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_187v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_187v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_187v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_187v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/91f11366-a7a7-415b-9121-a97d749877c7" + } + ] + }, + { + "label": { + "@none": [ + "188r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_188r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_188r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_188r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4629186e-66c8-4ca1-a2d3-ff3bed5f3aad" + } + ] + }, + { + "label": { + "@none": [ + "188v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_188v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_188v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_188v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_188v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18557b6c-13d5-4ac6-89e0-9e51f493c16f" + } + ] + }, + { + "label": { + "@none": [ + "189r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_189r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_189r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_189r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c7e28662-b605-4529-b33e-08861d199440" + } + ] + }, + { + "label": { + "@none": [ + "189v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_189v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_189v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_189v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_189v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/31f3326a-9739-4a5d-a0cf-f21e4233d3ba" + } + ] + }, + { + "label": { + "@none": [ + "190r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_190r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_190r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_190r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f5b0bbed-a7b8-4572-a9f5-2022ff26acd1" + } + ] + }, + { + "label": { + "@none": [ + "190v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_190v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_190v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_190v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_190v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/afdc42c5-c814-4d1e-b047-9345874464d7" + } + ] + }, + { + "label": { + "@none": [ + "191r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_191r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_191r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_191r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ae0f4959-49ac-4a8b-ba70-5145c2b78026" + } + ] + }, + { + "label": { + "@none": [ + "191v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_191v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_191v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_191v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_191v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ac9a80ef-c13b-4abd-bc45-ce13e89b09a4" + } + ] + }, + { + "label": { + "@none": [ + "192r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_192r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_192r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_192r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/22becaa9-296e-4516-9082-6f285eac7dca" + } + ] + }, + { + "label": { + "@none": [ + "192v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_192v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_192v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_192v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_192v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/38aa1b58-14b6-4ad0-944d-53b9d648b3c0" + } + ] + }, + { + "label": { + "@none": [ + "193r" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193r.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_193r.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193r.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_193r.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_193r.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/62c0daa4-8eed-42ea-a5e6-1e59c4a1d5f0" + } + ] + }, + { + "label": { + "@none": [ + "193v" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193v.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_193v.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_193v.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_193v.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_193v.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/1b177fa0-a9bb-4a4b-a65b-7e6c6eb27d31" + } + ] + }, + { + "label": { + "@none": [ + "Rear paste-down" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e006.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e006.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e006.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e006.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e006.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0773d7f6-ddd5-467e-9f71-826dff06c1d7" + } + ] + }, + { + "label": { + "@none": [ + "Back cover" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e003.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e003.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e003.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e003.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e003.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f7e2c894-b40a-4eb6-b1d6-fdce3297ac37" + } + ] + }, + { + "label": { + "@none": [ + "Spine" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e002.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e002.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e002.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e002.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e002.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d134eacf-a7de-4196-82f4-82a59ced9a28" + } + ] + }, + { + "label": { + "@none": [ + "Fore edge" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e004.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e004.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e004.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e004.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e004.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3e19fe43-70b8-4a09-9139-fcec78229263" + } + ] + }, + { + "label": { + "@none": [ + "Head" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e007.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e007.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e007.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e007.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e007.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/0542ffc3-16d0-4fdd-8084-0cd8e4038aed" + } + ] + }, + { + "label": { + "@none": [ + "Tail" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e008.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_e008.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_e008.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_e008.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_e008.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d9d05f25-d891-4a3c-a5d8-d43b6e106d07" + } + ] + }, + { + "label": { + "@none": [ + "Ruler on binding" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassE.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_MassE.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassE.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_MassE.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_MassE.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/34dce263-2297-426e-a993-8928d03d9ac2" + } + ] + }, + { + "label": { + "@none": [ + "Ruler on page" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassS.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_MassS.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_MassS.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_MassS.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_MassS.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/009812ea-e565-48c7-b126-d834dfc12aff" + } + ] + }, + { + "label": { + "@none": [ + "QP card on binding" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilE.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_ProfilE.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilE.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_ProfilE.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_ProfilE.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b8667532-fffe-47e4-8533-e8d46af817bb" + } + ] + }, + { + "label": { + "@none": [ + "QP card on page" + ] + }, + "height": 6496, + "width": 4872, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilS.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_ProfilS.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilS.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 6496, + "width": 4872, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_ProfilS.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_ProfilS.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/61d5e290-6745-4154-8b7f-13f315a33604" + } + ] + }, + { + "label": { + "@none": [ + "Digital Colorchecker" + ] + }, + "height": 4872, + "width": 6496, + "type": "Canvas", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilSG.json", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/annotation/bke-0020_ProfilSG.json", + "target": [ + { + "id": "http://www.e-codices.unifr.ch/metadata/iiif/sl-0002/canvas/bke-0020_ProfilSG.json", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "height": 4872, + "width": 6496, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level2.json", + "id": "http://www.e-codices.unifr.ch/loris/bke/bke-0020/bke-0020_ProfilSG.jp2", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www.e-codices.unifr.ch:80/loris/bke/bke-0020/bke-0020_ProfilSG.jp2/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b74c8f5c-bb0f-4d95-8519-59054404d320" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/2-to-3-converted/manifests/www2.dhii.jp__nijl__NIJL0018__099-0014__manifest_tags.json b/fixtures/3-to-4-converted/2-to-3-converted/manifests/www2.dhii.jp__nijl__NIJL0018__099-0014__manifest_tags.json new file mode 100644 index 0000000..6f41fcd --- /dev/null +++ b/fixtures/3-to-4-converted/2-to-3-converted/manifests/www2.dhii.jp__nijl__NIJL0018__099-0014__manifest_tags.json @@ -0,0 +1,2724 @@ +{ + "label": { + "@none": [ + "唐糸草紙" + ] + }, + "metadata": [ + { + "label": { + "@none": [ + "Author" + ] + }, + "value": { + "@none": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "published" + ] + }, + "value": { + "ja": [ + "" + ] + } + }, + { + "label": { + "@none": [ + "Source" + ] + }, + "value": { + "@none": [ + "From: IDR in NII http://www.nii.ac.jp/dsc/idr/nijl/nijl.html" + ] + } + }, + { + "label": { + "@none": [ + "Description" + ] + }, + "value": { + "@none": [ + "" + ] + } + } + ], + "viewingDirection": "right-to-left", + "logo": [ + { + "id": "http://www.nijl.ac.jp/pages/images/footer_icon.gif", + "type": "Image" + } + ], + "seeAlso": [ + { + "id": "http://www2.dhii.jp/nijl_opendata/NIJL0018/099-0014/", + "type": "Dataset" + } + ], + "type": "Manifest", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/manifest.json", + "rights": "http://creativecommons.org/licenses/by-sa/4.0/", + "requiredStatement": { + "label": { + "@none": [ + "Attribution" + ] + }, + "value": { + "@none": [ + "http://www.nijl.ac.jp/index_e.html" + ] + } + }, + "behavior": [ + "paged" + ], + "homepage": { + "format": "text/html", + "type": "Text", + "id": "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html" + }, + "partOf": [ + { + "id": "http://www.nii.ac.jp/dsc/idr/nijl/nijl.html", + "type": "Text" + } + ], + "items": [ + { + "label": { + "@none": [ + "p. 1" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano1", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p1", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00000.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/be1c28f6-7ec7-4a05-a85a-b15320a56822" + } + ] + }, + { + "label": { + "@none": [ + "p. 2" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p2", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano2", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p2", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00001.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00001.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/905c468b-d65a-4703-bb97-51382f695051" + } + ] + }, + { + "label": { + "@none": [ + "p. 3" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p3", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano3", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p3", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00002.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00002.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/44f03f45-da75-4fa5-b710-6aec0e82de87" + } + ] + }, + { + "label": { + "@none": [ + "p. 4" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p4", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano4", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p4", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00003.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00003.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/18194b84-6f17-48fa-941d-c42eaeb567ea" + } + ] + }, + { + "label": { + "@none": [ + "p. 5" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p5", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p5.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano5", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p5", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00004.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00004.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/864d6dd4-017c-41e6-9bb3-89c90abd846a" + } + ] + }, + { + "label": { + "@none": [ + "p. 6" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p6", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p6.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano6", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p6", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00005.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00005.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe4c92e3-88ed-45ef-9718-de09d781a557" + } + ] + }, + { + "label": { + "@none": [ + "p. 7" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p7", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p7.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano7", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p7", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00006.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00006.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/68d2dcf1-309d-41d7-b206-c1923b63b1ea" + } + ] + }, + { + "label": { + "@none": [ + "p. 8" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p8", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p8.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano8", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p8", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00007.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00007.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b742fd4c-3226-4512-9dfa-2ce89a723d3d" + } + ] + }, + { + "label": { + "@none": [ + "p. 9" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p9", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p9.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano9", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p9", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00008.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00008.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/8de80fe2-9fb7-45d5-9e42-b511afaa8237" + } + ] + }, + { + "label": { + "@none": [ + "p. 10" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p10", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p10.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano10", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p10", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00009.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00009.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c02537b2-0d7d-4408-aacb-e7edfa9889b0" + } + ] + }, + { + "label": { + "@none": [ + "p. 11" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p11", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p11.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano11", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p11", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00010.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00010.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3d0a724b-064e-4b76-aa6c-aa903f49bf9f" + } + ] + }, + { + "label": { + "@none": [ + "p. 12" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p12", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p12.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano12", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p12", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00011.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00011.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/468e9e16-927d-4f99-ad9e-33c261eeb27e" + } + ] + }, + { + "label": { + "@none": [ + "p. 13" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p13", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p13.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano13", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p13", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00012.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00012.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/6071ed82-2cfa-43b3-8eae-606845d2aa9a" + } + ] + }, + { + "label": { + "@none": [ + "p. 14" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p14", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p14.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano14", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p14", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00013.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00013.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4922f1cd-5009-470b-8918-dbee4c13a592" + } + ] + }, + { + "label": { + "@none": [ + "p. 15" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p15", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p15.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano15", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p15", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00014.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00014.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/407962ea-9ed5-49e0-b375-b5a042741d55" + } + ] + }, + { + "label": { + "@none": [ + "p. 16" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p16", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p16.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano16", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p16", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00015.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00015.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2bf3221d-21e9-412c-9fda-95f85392ea22" + } + ] + }, + { + "label": { + "@none": [ + "p. 17" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p17", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p17.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano17", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p17", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00016.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00016.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a17b9084-912f-4f63-8dbe-267dcf42d93c" + } + ] + }, + { + "label": { + "@none": [ + "p. 18" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p18", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p18.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano18", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p18", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00017.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00017.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4f35cb4f-4a08-4581-8f82-f2159fb46466" + } + ] + }, + { + "label": { + "@none": [ + "p. 19" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p19", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano19", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p19", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00018.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00018.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/f73c21f6-92f3-490f-9b4e-f16243255436" + } + ] + }, + { + "label": { + "@none": [ + "p. 20" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p20", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano20", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p20", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00019.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00019.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ee3d5852-7b5a-421f-a564-a899fcaa6396" + } + ] + }, + { + "label": { + "@none": [ + "p. 21" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p21", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano21", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p21", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00020.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00020.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/c5bb99e8-8a93-41d8-87b9-1063b3acd745" + } + ] + }, + { + "label": { + "@none": [ + "p. 22" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p22", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano22", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p22", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00021.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00021.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/3875eeb7-f72c-4f86-9e14-1f7fa002b26a" + } + ] + }, + { + "label": { + "@none": [ + "p. 23" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p23", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano23", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p23", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00022.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00022.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/763f160c-994b-48ea-ace3-ac50ed154d64" + } + ] + }, + { + "label": { + "@none": [ + "p. 24" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p24", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano24", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p24", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00023.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00023.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/59ac2d49-2b8d-407c-a69c-f817cdb9e8b9" + } + ] + }, + { + "label": { + "@none": [ + "p. 25" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p25", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p25.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano25", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p25", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00024.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00024.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/ea5f5453-4c42-43d2-815d-16c0030126ea" + } + ] + }, + { + "label": { + "@none": [ + "p. 26" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p26", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p26.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano26", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p26", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00025.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00025.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d953b83-9ce7-4cd5-9532-1c3dd73904de" + } + ] + }, + { + "label": { + "@none": [ + "p. 27" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p27", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p27.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano27", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p27", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00026.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00026.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0b7e61a-fe77-4ca4-9105-1069cbfd013d" + } + ] + }, + { + "label": { + "@none": [ + "p. 28" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p28", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p28.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano28", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p28", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00027.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00027.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a8424ad7-b09a-429e-a1e9-f09c01fa194d" + } + ] + }, + { + "label": { + "@none": [ + "p. 29" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p29", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p29.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano29", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p29", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00028.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00028.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/827dec7b-9f24-4287-a969-23d713498488" + } + ] + }, + { + "label": { + "@none": [ + "p. 30" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p30", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p30.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano30", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p30", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00029.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00029.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/06025b60-9147-4cfd-9b85-ad5efbac58a1" + } + ] + }, + { + "label": { + "@none": [ + "p. 31" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p31", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p31.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano31", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p31", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00030.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00030.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2e6353c4-9d52-42c0-b87c-c07f4d874b50" + } + ] + }, + { + "label": { + "@none": [ + "p. 32" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p32", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p32.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano32", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p32", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00031.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00031.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/7ec1dfa6-a85a-4136-8b18-6c75fa401e60" + } + ] + }, + { + "label": { + "@none": [ + "p. 33" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p33", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p33.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano33", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p33", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00032.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00032.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/bb813dd4-cf18-43bc-bdfd-4c5dea396cc0" + } + ] + }, + { + "label": { + "@none": [ + "p. 34" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p34", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p34.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano34", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p34", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00033.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00033.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/2221646b-8819-4514-b44d-c90fa382666f" + } + ] + }, + { + "label": { + "@none": [ + "p. 35" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p35", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p35.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano35", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p35", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00034.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00034.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/4e963cff-6dcc-4df4-bda6-8701a6a9bd46" + } + ] + }, + { + "label": { + "@none": [ + "p. 36" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p36", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p36.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano36", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p36", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00035.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00035.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/cd3a47b9-843d-45fb-9faf-f2774f047ded" + } + ] + }, + { + "label": { + "@none": [ + "p. 37" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p37", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p37.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano37", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p37", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00036.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00036.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b3017a40-0575-4bed-8a8b-fdd07f1c13cf" + } + ] + }, + { + "label": { + "@none": [ + "p. 38" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p38", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p38.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano38", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p38", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00037.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00037.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fe6da15e-8b49-44be-8cc7-b5ab85d98c76" + } + ] + }, + { + "label": { + "@none": [ + "p. 39" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p39", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p39.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano39", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p39", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00038.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00038.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/df295177-ff96-4382-b320-48c806c54502" + } + ] + }, + { + "label": { + "@none": [ + "p. 40" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p40", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p40.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano40", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p40", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00039.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00039.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/fdba19fe-9431-40a3-940c-506775215066" + } + ] + }, + { + "label": { + "@none": [ + "p. 41" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p41", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p41.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano41", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p41", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00040.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00040.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/55f4d884-42a5-46cc-856e-f5b6c19ee793" + } + ] + }, + { + "label": { + "@none": [ + "p. 42" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p42", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p42.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano42", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p42", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00041.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00041.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d6987c7e-1543-4b93-a66c-e514c2e9a9de" + } + ] + }, + { + "label": { + "@none": [ + "p. 43" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p43", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p43.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano43", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p43", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00042.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00042.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/eefca492-693c-45d5-a832-8af6531a6088" + } + ] + }, + { + "label": { + "@none": [ + "p. 44" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p44", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p44.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano44", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p44", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00043.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00043.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b11c4244-7aae-4067-a0ce-bce1558908ee" + } + ] + }, + { + "label": { + "@none": [ + "p. 45" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p45", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p45.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano45", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p45", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00044.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00044.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/d435cfef-9020-467a-a08f-670ea78f2da0" + } + ] + }, + { + "label": { + "@none": [ + "p. 46" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p46", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p46.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano46", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p46", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00045.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00045.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/210e528d-2d0d-40eb-a6c0-ee9e4cda1323" + } + ] + }, + { + "label": { + "@none": [ + "p. 47" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p47", + "annotations": [ + { + "type": "AnnotationPage", + "id": "http://www2.dhii.jp/nijl/NIJL0018/099-0014/list/p47.json" + } + ], + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano47", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p47", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00046.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00046.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/a74bb21f-7d77-4496-8749-3e2905c3e540" + } + ] + }, + { + "label": { + "@none": [ + "p. 48" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p48", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano48", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p48", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00047.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00047.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/9d0b3462-be0c-4b47-b52d-0ae8c929932b" + } + ] + }, + { + "label": { + "@none": [ + "p. 49" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p49", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano49", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p49", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00048.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00048.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/216e8ae6-65ba-46f6-a598-ee72db2836ed" + } + ] + }, + { + "label": { + "@none": [ + "p. 50" + ] + }, + "width": 5616, + "height": 3744, + "type": "Canvas", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p50", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/ano50", + "target": [ + { + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/p50", + "type": "Canvas" + } + ], + "body": [ + { + "format": "image/jpeg", + "width": 5616, + "height": 3744, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00049.jpg", + "type": "ImageService2" + } + ], + "type": "Image", + "id": "http://www2.dhii.jp/loris/NIJL0018/099-0014/099-0014-00049.jpg/full/full/0/default.jpg" + } + ] + } + ], + "id": "https://example.org/uuid/b0edaca8-e4eb-4cf5-a260-3bc2833cb0bd" + } + ] + } + ], + "@context": "http://iiif.io/api/presentation/4/context.json" +} diff --git a/fixtures/3-to-4-converted/_index.json b/fixtures/3-to-4-converted/_index.json new file mode 100644 index 0000000..a797301 --- /dev/null +++ b/fixtures/3-to-4-converted/_index.json @@ -0,0 +1,101 @@ +[ + "2-to-3-converted/manifests/british-library-manifest.json", + "2-to-3-converted/manifests/data.getty.edu__museum__api__iiif__298147__manifest.json", + "2-to-3-converted/manifests/data.ucd.ie__api__img__manifests__ucdlib:33064.json", + "2-to-3-converted/manifests/demos.biblissima-condorcet.fr__iiif__metadata__BVMM__chateauroux__manifest.json", + "2-to-3-converted/manifests/dzkimgs.l.u-tokyo.ac.jp__iiif__zuzoubu__12b02__manifest.json", + "2-to-3-converted/manifests/ghent-university-manifest.json", + "2-to-3-converted/manifests/iiif.bodleian.ox.ac.uk__iiif__manifest__60834383-7146-41ab-bfe1-48ee97bc04be.json", + "2-to-3-converted/manifests/iiif.harvardartmuseums.org__manifests__object__299843.json", + "2-to-3-converted/manifests/iiif.io__api__presentation__2.1__example__fixtures__1__manifest.json", + "2-to-3-converted/manifests/iiif.lib.harvard.edu__manifests__drs:48309543.json", + "2-to-3-converted/manifests/lbiiif.riksarkivet.se__arkis!R0000004__manifest.json", + "2-to-3-converted/manifests/manifests.britishart.yale.edu__manifest__1474.json", + "2-to-3-converted/manifests/manifests.ydc2.yale.edu__manifest__Admont43.json", + "2-to-3-converted/manifests/media.nga.gov__public__manifests__nga_highlights.json", + "2-to-3-converted/manifests/ncsu-libraries-manifest.json", + "2-to-3-converted/manifests/nlw-manuscript-manifest.json", + "2-to-3-converted/manifests/nlw-newspaper-manifest.json", + "2-to-3-converted/manifests/princeton-manifest.json", + "2-to-3-converted/manifests/purl.stanford.edu__qm670kv1873__iiif__manifest.json", + "2-to-3-converted/manifests/www.e-codices.unifr.ch__metadata__iiif__csg-0730__manifest.json", + "2-to-3-converted/manifests/www.e-codices.unifr.ch__metadata__iiif__sl-0002__manifest.json", + "2-to-3-converted/manifests/www2.dhii.jp__nijl__NIJL0018__099-0014__manifest_tags.json", + "cookbook/0001-mvm-image.json", + "cookbook/0002-mvm-audio.json", + "cookbook/0003-mvm-video.json", + "cookbook/0004-canvas-size.json", + "cookbook/0005-image-service.json", + "cookbook/0006-text-language.json", + "cookbook/0007-string-formats.json", + "cookbook/0008-rights.json", + "cookbook/0009-book-1.json", + "cookbook/0010-book-2-viewing-direction-manifest-rtl.json", + "cookbook/0010-book-2-viewing-direction-manifest-ttb.json", + "cookbook/0011-book-3-behavior-manifest-continuous.json", + "cookbook/0011-book-3-behavior-manifest-individuals.json", + "cookbook/0013-placeholderCanvas.json", + "cookbook/0014-accompanyingcanvas.json", + "cookbook/0015-start.json", + "cookbook/0017-transcription-av.json", + "cookbook/0019-html-in-annotations.json", + "cookbook/0021-tagging.json", + "cookbook/0022-linking-with-a-hotspot.json", + "cookbook/0024-book-4-toc.json", + "cookbook/0026-toc-opera.json", + "cookbook/0029-metadata-anywhere.json", + "cookbook/0030-multi-volume-manifest_v1.json", + "cookbook/0030-multi-volume-manifest_v2.json", + "cookbook/0031-bound-multivolume.json", + "cookbook/0032-collection-manifest-01.json", + "cookbook/0032-collection-manifest-02.json", + "cookbook/0033-choice.json", + "cookbook/0035-foldouts.json", + "cookbook/0036-composition-from-multiple-images.json", + "cookbook/0040-image-rotation-service-manifest-css.json", + "cookbook/0040-image-rotation-service-manifest-service.json", + "cookbook/0046-rendering.json", + "cookbook/0047-homepage.json", + "cookbook/0053-seeAlso.json", + "cookbook/0064-opera-one-canvas.json", + "cookbook/0065-opera-multiple-canvases.json", + "cookbook/0074-multiple-language-captions.json", + "cookbook/0117-add-image-thumbnail.json", + "cookbook/0118-multivalue.json", + "cookbook/0135-annotating-point-in-canvas.json", + "cookbook/0139-geolocate-canvas-fragment.json", + "cookbook/0154-geo-extension.json", + "cookbook/0202-start-canvas.json", + "cookbook/0219-using-caption-file.json", + "cookbook/0229-behavior-ranges.json", + "cookbook/0230-navdate-navdate_map_1-manifest.json", + "cookbook/0230-navdate-navdate_map_2-manifest.json", + "cookbook/0234-provider.json", + "cookbook/0240-navPlace-on-canvases.json", + "cookbook/0258-tagging-external-resource.json", + "cookbook/0261-non-rectangular-commenting.json", + "cookbook/0266-full-canvas-annotation.json", + "cookbook/0269-embedded-or-referenced-annotations.json", + "cookbook/0283-missing-image.json", + "cookbook/0299-region.json", + "cookbook/0306-linking-annotations-to-manifests.json", + "cookbook/0309-annotation-collection.json", + "cookbook/0326-annotating-image-layer.json", + "cookbook/0346-multilingual-annotation-body.json", + "cookbook/0377-image-in-annotation.json", + "cookbook/0434-choice-av.json", + "cookbook/0489-multimedia-canvas.json", + "presentation-3/accompanying-canvas.json", + "presentation-3/bl-ranges.json", + "presentation-3/bodleian.json", + "presentation-3/css.json", + "presentation-3/exhibition-1.json", + "presentation-3/ghent-choices.json", + "presentation-3/has-part.json", + "presentation-3/ldmax.json", + "presentation-3/ocean-liners.json", + "presentation-3/specific-resource-infer.json", + "presentation-3/start-canvas.json", + "presentation-3/wellcome-p3-2.json", + "presentation-3/wellcome-p3.json" +] diff --git a/fixtures/3-to-4-converted/cookbook/0001-mvm-image.json b/fixtures/3-to-4-converted/cookbook/0001-mvm-image.json new file mode 100644 index 0000000..1ac9d55 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0001-mvm-image.json @@ -0,0 +1,48 @@ +{ + "@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": [ + "Single Image Example" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "type": "Canvas", + "height": 1800, + "width": 1200, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0002-mvm-audio.json b/fixtures/3-to-4-converted/cookbook/0002-mvm-audio.json new file mode 100644 index 0000000..af3c90b --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0002-mvm-audio.json @@ -0,0 +1,46 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Audio Example 1" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "type": "Canvas", + "duration": 1985.024, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas/page/annotation", + "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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0002-mvm-audio/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0003-mvm-video.json b/fixtures/3-to-4-converted/cookbook/0003-mvm-video.json new file mode 100644 index 0000000..bdf6756 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0003-mvm-video.json @@ -0,0 +1,50 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Video Example 3" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "type": "Canvas", + "height": 360, + "width": 480, + "duration": 572.034, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0003-mvm-video/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0004-canvas-size.json b/fixtures/3-to-4-converted/cookbook/0004-canvas-size.json new file mode 100644 index 0000000..912bdfb --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0004-canvas-size.json @@ -0,0 +1,48 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Still image from an opera performance at Indiana University" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "type": "Canvas", + "height": 1080, + "width": 1920, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "format": "image/png", + "height": 360, + "width": 640 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0004-canvas-size/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0005-image-service.json b/fixtures/3-to-4-converted/cookbook/0005-image-service.json new file mode 100644 index 0000000..12da955 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0005-image-service.json @@ -0,0 +1,60 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Canvas with a single IIIF image" + ] + }, + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0006-text-language.json b/fixtures/3-to-4-converted/cookbook/0006-text-language.json new file mode 100644 index 0000000..3966637 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0006-text-language.json @@ -0,0 +1,116 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Whistler's Mother" + ], + "fr": [ + "La Mère de Whistler" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Creator" + ], + "fr": [ + "Auteur" + ] + }, + "value": { + "none": [ + "Whistler, James Abbott McNeill" + ] + } + }, + { + "label": { + "en": [ + "Subject" + ], + "fr": [ + "Sujet" + ] + }, + "value": { + "en": [ + "McNeill Anna Matilda, mother of Whistler (1804-1881)" + ], + "fr": [ + "McNeill Anna Matilda, mère de Whistler (1804-1881)" + ] + } + } + ], + "summary": { + "en": [ + "Arrangement in Grey and Black No. 1, also called Portrait of the Artist's Mother." + ], + "fr": [ + "Arrangement en gris et noir n°1, also called Portrait de la mère de l'artiste." + ] + }, + "requiredStatement": { + "label": { + "en": [ + "Held By" + ], + "fr": [ + "Détenu par" + ] + }, + "value": { + "none": [ + "Musée d'Orsay, Paris, France" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "type": "Canvas", + "width": 1114, + "height": 991, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 1114, + "height": 991, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Whistlers_Mother", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0006-text-language/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0007-string-formats.json b/fixtures/3-to-4-converted/cookbook/0007-string-formats.json new file mode 100644 index 0000000..8f6c451 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0007-string-formats.json @@ -0,0 +1,87 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Author" + ] + }, + "value": { + "none": [ + "Glen Robson" + ] + } + } + ], + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 " + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0007-string-formats/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0008-rights.json b/fixtures/3-to-4-converted/cookbook/0008-rights.json new file mode 100644 index 0000000..a045792 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0008-rights.json @@ -0,0 +1,73 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "summary": { + "en": [ + "

Picture taken by the IIIF Technical Coordinator

" + ] + }, + "rights": "http://creativecommons.org/licenses/by-sa/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Glen Robson, IIIF Technical Coordinator. CC BY-SA 3.0 " + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0008-rights/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0009-book-1.json b/fixtures/3-to-4-converted/cookbook/0009-book-1.json new file mode 100644 index 0000000..9d9396b --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0009-book-1.json @@ -0,0 +1,255 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simple Manifest - Book" + ] + }, + "behavior": [ + "paged" + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Frontispiece" + ] + }, + "width": 3186, + "height": 4612, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Title page" + ] + }, + "width": 3204, + "height": 4613, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "width": 3174, + "height": 4578, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Bookplate" + ] + }, + "width": 3198, + "height": 4632, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0009-book-1/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0010-book-2-viewing-direction-manifest-rtl.json b/fixtures/3-to-4-converted/cookbook/0010-book-2-viewing-direction-manifest-rtl.json new file mode 100644 index 0000000..ec4024c --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0010-book-2-viewing-direction-manifest-rtl.json @@ -0,0 +1,258 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-rtl.json", + "type": "Manifest", + "label": { + "en": [ + "Book with Right-to-Left Viewing Direction" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "pages 1–2" + ] + }, + "width": 6062, + "height": 4804, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6062, + "height": 4804, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "pages 3–4" + ] + }, + "width": 6127, + "height": 4776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6127, + "height": 4776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "pages 5–6" + ] + }, + "width": 6124, + "height": 4751, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6124, + "height": 4751, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "back cover" + ] + }, + "width": 3510, + "height": 4808, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3510, + "height": 4808, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0010-book-2-viewing-direction-manifest-ttb.json b/fixtures/3-to-4-converted/cookbook/0010-book-2-viewing-direction-manifest-ttb.json new file mode 100644 index 0000000..edba3e7 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0010-book-2-viewing-direction-manifest-ttb.json @@ -0,0 +1,210 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/manifest-ttb.json", + "type": "Manifest", + "label": { + "en": [ + "Diary with Top-to-Bottom Viewing Direction" + ] + }, + "summary": { + "en": [ + "William Lewis Sachtleben was an American long-distance cyclist who rode across Asia from Istanbul to Peking in 1891 to 1892 with Thomas Gaskell Allen Jr., his classmate from Washington University. This was part of a longer journey that began the day after they had graduated from college, when they travelled to New York and on to Liverpool; in all they travelled 15,044 miles by bicycle, 'the longest continuous land journey ever made around the world' as reported in their book Across Asia on a bicycle (1895). Sachtleben documented his travels with photographs and diaries, the latter of which he numbered sequentially. The diary of notebook 'No. 10' covers a portion of their journey through the Armenian area of Turkey from April 12 to May 9 (there is a 2-page reading list at the end). During this time they rode from Ankara (Angora in the diary) to Sivas, where they stayed for ten days while Allen had a bout of typhoid fever, and the first half of a ten-day excursion to Merzifon (Mersovan in the diary), taken by Sachtleben to give Allen additional time to recover." + ] + }, + "viewingDirection": "top-to-bottom", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas", + "label": { + "en": [ + "image 1" + ] + }, + "width": 2251, + "height": 3152, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2251, + "height": 3152, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "type": "Canvas", + "label": { + "en": [ + "image 2" + ] + }, + "width": 2268, + "height": 3135, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2268, + "height": 3135, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "type": "Canvas", + "label": { + "en": [ + "image 3" + ] + }, + "width": 2274, + "height": 3135, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2274, + "height": 3135, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_04", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "type": "Canvas", + "label": { + "en": [ + "image 4" + ] + }, + "width": 2268, + "height": 3135, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/page/v4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/annotation/v0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2268, + "height": 3135, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_05", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0010-book-2-viewing-direction/canvas/v4", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0011-book-3-behavior-manifest-continuous.json b/fixtures/3-to-4-converted/cookbook/0011-book-3-behavior-manifest-continuous.json new file mode 100644 index 0000000..c705447 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0011-book-3-behavior-manifest-continuous.json @@ -0,0 +1,207 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-continuous.json", + "type": "Manifest", + "label": { + "gez": [ + "Ms. 21 Māzemurā Dāwit, Asmat [መዝሙረ ዳዊት]" + ] + }, + "behavior": [ + "continuous" + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "type": "Canvas", + "label": { + "en": [ + "Section 1 [Recto]" + ] + }, + "width": 11368, + "height": 1592, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 11368, + "height": 1592, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmd9_1300412_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", + "type": "Canvas", + "label": { + "en": [ + "Section 2 [Recto]" + ] + }, + "width": 11608, + "height": 1536, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 11608, + "height": 1536, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmft_1300418_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", + "type": "Canvas", + "label": { + "en": [ + "Section 3 [Recto]" + ] + }, + "width": 10576, + "height": 1504, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 10576, + "height": 1504, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmgb_1300426_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", + "type": "Canvas", + "label": { + "en": [ + "Section 4 [Recto]" + ] + }, + "width": 2488, + "height": 1464, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/s4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/s0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2488, + "height": 1464, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/8c169124171e6b2253b698a22a938f07-21198-zz001hbmhv_1300436_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/s4", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0011-book-3-behavior-manifest-individuals.json b/fixtures/3-to-4-converted/cookbook/0011-book-3-behavior-manifest-individuals.json new file mode 100644 index 0000000..ed609a3 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0011-book-3-behavior-manifest-individuals.json @@ -0,0 +1,207 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/manifest-individuals.json", + "type": "Manifest", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "behavior": [ + "individuals" + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas", + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 3375, + "height": 2250, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "type": "Canvas", + "label": { + "en": [ + "2v, 3r" + ] + }, + "width": 3375, + "height": 2250, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-1-21198-zz00022882-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "type": "Canvas", + "label": { + "en": [ + "3v, 4r" + ] + }, + "width": 3375, + "height": 2250, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-2-21198-zz000228b3-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "type": "Canvas", + "label": { + "en": [ + "4v, 5r" + ] + }, + "width": 3375, + "height": 2250, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/page/v4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/annotation/v0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3375, + "height": 2250, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-3-21198-zz000228d4-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0011-book-3-behavior/canvas/v4", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0013-placeholderCanvas.json b/fixtures/3-to-4-converted/cookbook/0013-placeholderCanvas.json new file mode 100644 index 0000000..72fbcc5 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0013-placeholderCanvas.json @@ -0,0 +1,86 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Video recording of Donizetti's _The Elixer of Love_" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "type": "Canvas", + "duration": 7278.466, + "width": 640, + "height": 360, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/donizetti/1-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video", + "duration": 7278.466, + "width": 640, + "height": 360, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti", + "type": "Canvas" + } + ] + } + ] + } + ], + "placeholderContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas", + "width": 640, + "height": 360, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder/1-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image", + "format": "image/png", + "width": 640, + "height": 360 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder", + "type": "Canvas" + } + ] + } + ] + } + ] + } + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0014-accompanyingcanvas.json b/fixtures/3-to-4-converted/cookbook/0014-accompanyingcanvas.json new file mode 100644 index 0000000..5427d46 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0014-accompanyingcanvas.json @@ -0,0 +1,99 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Partial audio recording of Gustav Mahler's _Symphony No. 3_" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Gustav Mahler, Symphony No. 3, CD 1" + ] + }, + "duration": 1985.024, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "duration": 1985.024, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "accompanyingContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas", + "label": { + "en": [ + "First page of score for Gustav Mahler, Symphony No. 3" + ] + }, + "height": 998, + "width": 772, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 998, + "width": 772, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + } + ] + } + ] + } + ] + } + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0015-start.json b/fixtures/3-to-4-converted/cookbook/0015-start.json new file mode 100644 index 0000000..6b258d6 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0015-start.json @@ -0,0 +1,68 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0015-start/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Video of a 30-minute digital clock" + ] + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas-start/segment1", + "type": "SpecificResource", + "source": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "selector": { + "type": "PointSelector", + "t": 120.5 + } + }, + "rights": "http://creativecommons.org/licenses/by/3.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "The video was created by DrLex1 and was released using a Creative Commons Attribution license" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas", + "duration": 1801.055, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/annotation/segment1-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video", + "duration": 1801.055, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0015-start/canvas/segment1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0017-transcription-av.json b/fixtures/3-to-4-converted/cookbook/0017-transcription-av.json new file mode 100644 index 0000000..a3e341c --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0017-transcription-av.json @@ -0,0 +1,62 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Volleyball for Boys" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Canvas", + "height": 1080, + "width": 1920, + "duration": 662.037, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0017-transcription-av/canvas", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/high/volleyball-for-boys.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 662.037 + } + ] + } + ] + } + ], + "rendering": [ + { + "id": "https://fixtures.iiif.io/video/indiana/volleyball/volleyball.txt", + "type": "Text", + "label": { + "en": [ + "Transcript" + ] + }, + "format": "text/plain" + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0019-html-in-annotations.json b/fixtures/3-to-4-converted/cookbook/0019-html-in-annotations.json new file mode 100644 index 0000000..e98963e --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0019-html-in-annotations.json @@ -0,0 +1,84 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "TextualBody", + "language": "de", + "format": "text/html", + "value": "

Göttinger Marktplatz mit Gänseliesel Brunnen Wikipedia logo

" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0019-html-in-annotations/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0021-tagging.json b/fixtures/3-to-4-converted/cookbook/0021-tagging.json new file mode 100644 index 0000000..fc854ce --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0021-tagging.json @@ -0,0 +1,84 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", + "language": "de", + "format": "text/plain" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0021-tagging/canvas/p1#xywh=265,661,1260,1239", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0022-linking-with-a-hotspot.json b/fixtures/3-to-4-converted/cookbook/0022-linking-with-a-hotspot.json new file mode 100644 index 0000000..54e6db6 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0022-linking-with-a-hotspot.json @@ -0,0 +1,140 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p1/2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-link", + "type": "Annotation", + "motivation": [ + "linking" + ], + "body": [ + { + "type": "TextualBody", + "language": "de", + "format": "text/plain", + "value": "A link to a close up of Gänseliesel-Brunnen fountain." + }, + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/manifest.json", + "type": "Manifest" + } + ] + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p1#xywh=265,661,1260,1239", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas", + "height": 4032, + "width": 3024, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4032, + "width": 3024, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0022-linking-with-a-hotspot/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0024-book-4-toc.json b/fixtures/3-to-4-converted/cookbook/0024-book-4-toc.json new file mode 100644 index 0000000..6ed6738 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0024-book-4-toc.json @@ -0,0 +1,381 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Ethiopic Ms 10" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "f. 1r" + ] + }, + "height": 2504, + "width": 1768, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "f. 1v" + ] + }, + "height": 2512, + "width": 1792, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "f. 2r" + ] + }, + "height": 2456, + "width": 1792, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "f. 2v" + ] + }, + "height": 2440, + "width": 1760, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "f. 3r" + ] + }, + "height": 2416, + "width": 1776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas", + "label": { + "en": [ + "f. 3v" + ] + }, + "height": 2416, + "width": 1776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/page/p6/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r0", + "type": "Range", + "label": { + "en": [ + "Table of Contents" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r1", + "type": "Range", + "label": { + "gez": [ + "Tabiba Tabiban [ጠቢበ ጠቢባን]" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p1", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2", + "type": "Range", + "label": { + "gez": [ + "Arede'et [አርድዕት]" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/1", + "type": "Range", + "label": { + "en": [ + "Monday" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p3", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p4", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/range/r2/2", + "type": "Range", + "label": { + "en": [ + "Tuesday" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p5", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0024-book-4-toc/canvas/p6", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0026-toc-opera.json b/fixtures/3-to-4-converted/cookbook/0026-toc-opera.json new file mode 100644 index 0000000..bddca3e --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0026-toc-opera.json @@ -0,0 +1,122 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas", + "width": 1920, + "height": 1080, + "duration": 7278.422, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 7278.422 + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/1", + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/2", + "label": { + "it": [ + "Atto Primo" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/3", + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=0,302.05" + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/4", + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=302.05,3971.24" + } + ] + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/range/5", + "label": { + "it": [ + "Atto Secondo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0026-toc-opera/canvas/1#t=3971.24" + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0029-metadata-anywhere.json b/fixtures/3-to-4-converted/cookbook/0029-metadata-anywhere.json new file mode 100644 index 0000000..9cb4302 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0029-metadata-anywhere.json @@ -0,0 +1,198 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "John Dee performing an experiment before Queen Elizabeth I." + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Glindoni, Henry Gillard, 1852-1913" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1800-1899" + ] + } + }, + { + "label": { + "en": [ + "Physical Description" + ] + }, + "value": { + "en": [ + "1 painting : oil on canvas ; canvas 152 x 244.4 cm" + ] + } + }, + { + "label": { + "en": [ + "Reference" + ] + }, + "value": { + "en": [ + "Wellcome Library no. 47369i" + ] + } + } + ], + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ] + }, + "value": { + "en": [ + "Wellcome Collection. Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Painting under natural light" + ] + }, + "height": 1271, + "width": 2000, + "metadata": [ + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The scene is the house at Mortlake of Dr John Dee (1527-1608). At the court of Queen Elizabeth I, Dee was revered for the range of his scientific knowledge, which embraced the fields of mathematics, navigation, geography, alchemy/chemistry, medicine and optics. In the painting he is showing the effect of combining two elements, either to cause combustion or to extinguish it. Behind him is his assistant Edward Kelly, wearing a long skullcap to conceal the fact that his ears had been cropped as a punishment for forgery." + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "X-ray view of painting" + ] + }, + "height": 1271, + "width": 2000, + "metadata": [ + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The painting originally showed Dee standing in a circle of skulls on the floor, stretching from the floor area in front of the Queen (on the left) to the floor near Edward Kelly (on the right). The skulls were at an early stage painted over, but have since become visible. Another pentimento is visible in the tapestry on the right: shelves containing monstrous animals are visible behind it. The pentimenti were clarified when the painting was X-rayed in 2015." + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0029-metadata-anywhere/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0030-multi-volume-manifest_v1.json b/fixtures/3-to-4-converted/cookbook/0030-multi-volume-manifest_v1.json new file mode 100644 index 0000000..faedccf --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0030-multi-volume-manifest_v1.json @@ -0,0 +1,256 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v1.json", + "type": "Manifest", + "label": { + "en": [ + "Seirō ehon nenjū gyōji : kan 1 | 青楼絵本年中行事 : 巻 1" + ] + }, + "behavior": [ + "individuals" + ], + "viewingDirection": "right-to-left", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Front cover" + ] + }, + "height": 5730, + "width": 4301, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5730, + "width": 4301, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Page spread 1" + ] + }, + "height": 5702, + "width": 7451, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5702, + "width": 7451, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Page spread 2" + ] + }, + "height": 5702, + "width": 7451, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5702, + "width": 7451, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Page spread 3" + ] + }, + "height": 5702, + "width": 7451, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5702, + "width": 7451, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_007", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Page spread 4" + ] + }, + "height": 5702, + "width": 7451, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5702, + "width": 7451, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/5b0b39c2bf5591d21d807f9aadb437fa-uclaeal_wahon_A06_bib1974505_vol01_008", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0030-multi-volume-manifest_v2.json b/fixtures/3-to-4-converted/cookbook/0030-multi-volume-manifest_v2.json new file mode 100644 index 0000000..c09a6ee --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0030-multi-volume-manifest_v2.json @@ -0,0 +1,256 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/manifest_v2.json", + "type": "Manifest", + "label": { + "en": [ + "Seirō ehon nenjū gyōji : kan 2 | 青楼絵本年中行事 : 巻 2" + ] + }, + "behavior": [ + "individuals" + ], + "viewingDirection": "right-to-left", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Front cover" + ] + }, + "height": 5745, + "width": 4114, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 4114, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Page spread 1" + ] + }, + "height": 5745, + "width": 7253, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 7253, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Page spread 2" + ] + }, + "height": 5745, + "width": 7253, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 7253, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Page spread 3" + ] + }, + "height": 5745, + "width": 7253, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 7253, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_004", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Page spread 4" + ] + }, + "height": 5745, + "width": 7253, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5745, + "width": 7253, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/ecbc73b7cd459faf609e54eb4305da1f-uclaeal_wahon_A06_bib1974505_vol02_005", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0030-multi-volume/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0031-bound-multivolume.json b/fixtures/3-to-4-converted/cookbook/0031-bound-multivolume.json new file mode 100644 index 0000000..68dc326 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0031-bound-multivolume.json @@ -0,0 +1,370 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/manifest.json", + "type": "Manifest", + "label": { + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Front cover" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-1_frontcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Inside front cover" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-2_insidefrontcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Vol. 1 title page" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-3_titlepage1", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Vol. 1 title page (verso)" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-4_titlepage1_verso", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Vol. 2 title page" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2/max/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-5_titlepage2", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Canvas", + "label": { + "en": [ + "Vol. 2 title page (verso)" + ] + }, + "height": 7230, + "width": 5428, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/page/p6/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/annotation/p0006-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso/max/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7230, + "width": 5428, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/15f769d62ca9a3a2deca390efed75d73-6_titlepage2_verso", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r0", + "type": "Range", + "label": { + "de": [ + "Gottesdienstliche Ceremonien, Oder H. Kirchen-Gebräuche Und Religions-Pflichten Der Christen" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r1", + "type": "Range", + "label": { + "en": [ + "Front Matter" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p1", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r2", + "type": "Range", + "label": { + "de": [ + "Erste Ausgabe. Begreift die Ceremonien der Lutheraner von der Augspurgischen Confession, der Reformirten, der Holländischen u. a. Kirchen" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p3", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p4", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/range/r3", + "type": "Range", + "label": { + "de": [ + "Zweyte Ausgabe. Begreift die Ceremonien der Engl. hohen Kirche : Der Quacker, der Anabaptisten, der Adamiten, der Flagellanten, der Frey-Maurer, der Rhinsbürger..." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p5", + "type": "Canvas" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0031-bound-multivolume/canvas/p6", + "type": "Canvas" + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0032-collection-manifest-01.json b/fixtures/3-to-4-converted/cookbook/0032-collection-manifest-01.json new file mode 100644 index 0000000..abbc403 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0032-collection-manifest-01.json @@ -0,0 +1,81 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-01.json", + "type": "Manifest", + "label": { + "en": [ + "The Gulf Stream" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1899" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas", + "height": 3540, + "width": 5886, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3540, + "width": 5886, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Winslow_Homer_-_The_Gulf_Stream_-_Metropolitan_Museum_of_Art", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/1/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0032-collection-manifest-02.json b/fixtures/3-to-4-converted/cookbook/0032-collection-manifest-02.json new file mode 100644 index 0000000..8156350 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0032-collection-manifest-02.json @@ -0,0 +1,81 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest-02.json", + "type": "Manifest", + "label": { + "en": [ + "Northeaster" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Winslow Homer (1836–1910)" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1895" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas", + "height": 2572, + "width": 3764, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2572, + "width": 3764, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/329817fc8a251a01c393f517d8a17d87-Northeaster_by_Winslow_Homer_1895", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0032-collection/manifest/2/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0033-choice.json b/fixtures/3-to-4-converted/cookbook/0033-choice.json new file mode 100644 index 0000000..40a2fa6 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0033-choice.json @@ -0,0 +1,84 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "John Dee performing an experiment before Queen Elizabeth I." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "Canvas", + "height": 1271, + "width": 2000, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2000, + "height": 1271, + "label": { + "en": [ + "Natural Light" + ] + }, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2000, + "height": 1271, + "label": { + "en": [ + "X-Ray" + ] + }, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0033-choice/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0035-foldouts.json b/fixtures/3-to-4-converted/cookbook/0035-foldouts.json new file mode 100644 index 0000000..1dcc362 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0035-foldouts.json @@ -0,0 +1,450 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Outlines of geology being the substance of a course of lectures delivered in the Theatre of the Royal Institution in the year 1816" + ] + }, + "behavior": [ + "paged" + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "type": "Canvas", + "height": 4429, + "width": 2533, + "label": { + "en": [ + "Front cover" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4429, + "width": 2533, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-1_frontcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Inside front cover" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-2_insidefrontcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", + "type": "Canvas", + "height": 4278, + "width": 2197, + "label": { + "en": [ + "Foldout, folded" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4278, + "width": 2197, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-folded", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", + "type": "Canvas", + "behavior": [ + "non-paged" + ], + "height": 1968, + "width": 3688, + "label": { + "en": [ + "Foldout, unfolded" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1968, + "width": 3688, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-4_foldout", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", + "type": "Canvas", + "height": 1968, + "width": 3688, + "label": { + "en": [ + "Foldout, folded (recto)" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1968, + "width": 3688, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-3_foldout-rotated", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/5", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Title page" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/6/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0006-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-5_titlepage", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/6", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Back of title page" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/7/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0007-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-6_titlepage-recto", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/7", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Inside back cover" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/8/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0008-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-8_insidebackcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/8", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "type": "Canvas", + "height": 4315, + "width": 2490, + "label": { + "en": [ + "Back cover" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/page/9/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/annotation/0009-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4315, + "width": 2490, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/0a469c27256eda739d43124cc448a3ba-9_backcover", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0035-foldouts/canvas/9", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0036-composition-from-multiple-images.json b/fixtures/3-to-4-converted/cookbook/0036-composition-from-multiple-images.json new file mode 100644 index 0000000..63ded9f --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0036-composition-from-multiple-images.json @@ -0,0 +1,94 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Folio from Grandes Chroniques de France, ca. 1460" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas", + "label": { + "none": [ + "f. 033v-034r [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]" + ] + }, + "height": 5412, + "width": 7216, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5412, + "width": 7216, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "label": { + "fr": [ + "Miniature [Chilpéric Ier tue Galswinthe, se remarie et est assassiné]" + ] + }, + "width": 2138, + "height": 2414, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/899da506920824588764bc12b10fc800-bnf_chateauroux_miniature", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0036-composition-from-multiple-images/canvas/p1#xywh=3949,994,1091,1232", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0040-image-rotation-service-manifest-css.json b/fixtures/3-to-4-converted/cookbook/0040-image-rotation-service-manifest-css.json new file mode 100644 index 0000000..36a5ce7 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0040-image-rotation-service-manifest-css.json @@ -0,0 +1,69 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-css.json", + "type": "Manifest", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 2105, + "height": 1523, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "stylesheet": { + "type": "CssStylesheet", + "value": ".rotated { transform-origin: center; transform: rotate(90deg); }" + }, + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/sr1", + "type": "SpecificResource", + "styleClass": "rotated", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 1523, + "height": 2105, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0040-image-rotation-service-manifest-service.json b/fixtures/3-to-4-converted/cookbook/0040-image-rotation-service-manifest-service.json new file mode 100644 index 0000000..4164faf --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0040-image-rotation-service-manifest-service.json @@ -0,0 +1,68 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/manifest-service.json ", + "type": "Manifest", + "label": { + "ca": [ + "[Conoximent de las orines] Ihesus, Ihesus. En nom de Deu et dela beneyeta sa mare e de tots los angels i archangels e de tots los sants e santes de paradis yo micer Johannes comense aquest libre de reseptes en l’ayn Mi 466." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "inside cover; 1r" + ] + }, + "width": 2105, + "height": 1523, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/annotation/v0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/body/v0001-image", + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 1523, + "height": 2105, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/85a96c630f077e6ac6cb984f1b752bbf-0-21198-zz00022840-1-page1", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "selector": { + "type": "ImageApiSelector", + "rotation": "90" + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0040-image-rotation-service/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0046-rendering.json b/fixtures/3-to-4-converted/cookbook/0046-rendering.json new file mode 100644 index 0000000..74ba221 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0046-rendering.json @@ -0,0 +1,270 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Alternative Representations Through Rendering" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "rendering": [ + { + "id": "https://fixtures.iiif.io/other/UCLA/kabuki_ezukushi_rtl.pdf", + "type": "Text", + "label": { + "en": [ + "PDF version" + ] + }, + "format": "application/pdf" + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3497, + "height": 4823, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "pages 1–2" + ] + }, + "width": 6062, + "height": 4804, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6062, + "height": 4804, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "pages 3–4" + ] + }, + "width": 6127, + "height": 4776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6127, + "height": 4776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "pages 5–6" + ] + }, + "width": 6124, + "height": 4751, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6124, + "height": 4751, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "back cover" + ] + }, + "width": 3510, + "height": 4808, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3510, + "height": 4808, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0046-rendering/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0047-homepage.json b/fixtures/3-to-4-converted/cookbook/0047-homepage.json new file mode 100644 index 0000000..6f50afd --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0047-homepage.json @@ -0,0 +1,75 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/manifest.json", + "type": "Manifest", + "label": { + "none": [ + "Laocöon" + ] + }, + "homepage": [ + { + "id": "https://www.getty.edu/art/collection/object/103RQQ", + "type": "Text", + "label": { + "en": [ + "Home page at the Getty Museum Collection" + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas", + "label": { + "none": [ + "Front" + ] + }, + "height": 3000, + "width": 2315, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1/page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/!500,500/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "type": "ImageService3", + "profile": "level1" + } + ], + "height": 3000, + "width": 2315 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0047-homepage/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0053-seeAlso.json b/fixtures/3-to-4-converted/cookbook/0053-seeAlso.json new file mode 100644 index 0000000..2a317f4 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0053-seeAlso.json @@ -0,0 +1,271 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Linking to Structured Metadata" + ] + }, + "summary": { + "en": [ + "Playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "viewingDirection": "right-to-left", + "seeAlso": [ + { + "id": "https://fixtures.iiif.io/other/UCLA/ezukushi_mods.xml", + "type": "Dataset", + "label": { + "en": [ + "MODS metadata" + ] + }, + "format": "text/xml", + "profile": "http://www.loc.gov/mods/v3" + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "front cover" + ] + }, + "width": 3497, + "height": 4823, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "pages 1–2" + ] + }, + "width": 6062, + "height": 4804, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6062, + "height": 4804, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_002", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "pages 3–4" + ] + }, + "width": 6127, + "height": 4776, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6127, + "height": 4776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_003", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "pages 5–6" + ] + }, + "width": 6124, + "height": 4751, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 6124, + "height": 4751, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_004", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "back cover" + ] + }, + "width": 3510, + "height": 4808, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3510, + "height": 4808, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_005", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0053-seeAlso/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0064-opera-one-canvas.json b/fixtures/3-to-4-converted/cookbook/0064-opera-one-canvas.json new file mode 100644 index 0000000..6b812e0 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0064-opera-one-canvas.json @@ -0,0 +1,177 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Date Issued" + ] + }, + "value": { + "en": [ + "2019" + ] + } + }, + { + "label": { + "en": [ + "Publisher" + ] + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1", + "type": "Canvas", + "width": 1920, + "height": 1080, + "duration": 7278.422, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,3971.24", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3971.24 + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3307.22 + } + ] + } + ] + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image" + } + ] + } + ], + "structures": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/1", + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/2", + "label": { + "it": [ + "Atto Primo" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/3", + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=0,302.05" + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/4", + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=302.05,3971.24" + } + ] + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/range/5", + "label": { + "it": [ + "Atto Secondo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0064-opera-one-canvas/canvas/1#t=3971.24,7278.422" + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0065-opera-multiple-canvases.json b/fixtures/3-to-4-converted/cookbook/0065-opera-multiple-canvases.json new file mode 100644 index 0000000..4fced10 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0065-opera-multiple-canvases.json @@ -0,0 +1,208 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "L'Elisir D'Amore" + ], + "en": [ + "The Elixir of Love" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Date Issued" + ] + }, + "value": { + "en": [ + "2019" + ] + } + }, + { + "label": { + "en": [ + "Publisher" + ] + }, + "value": { + "en": [ + "Indiana University Jacobs School of Music" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas", + "width": 1920, + "height": 1080, + "duration": 3971.24, + "label": { + "en": [ + "Atto Primo" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_1.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3971.24 + } + ] + } + ] + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act1-thumbnail.png", + "type": "Image" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "type": "Canvas", + "width": 1920, + "height": 1080, + "duration": 3307.22, + "label": { + "en": [ + "Atto Secondo" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3307.22 + } + ] + } + ] + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/act2-thumbnail.png", + "type": "Image" + } + ] + } + ], + "structures": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/1", + "label": { + "it": [ + "Gaetano Donizetti, L'Elisir D'Amore" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/2", + "label": { + "en": [ + "Atto Primo" + ] + }, + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/3", + "label": { + "it": [ + "Preludio e Coro d'introduzione – Bel conforto al mietitore" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=0,302.05" + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/4", + "label": { + "en": [ + "Remainder of Atto Primo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/1#t=302.05,3971.24" + } + ] + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/range/5", + "label": { + "en": [ + "Atto Secondo" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0065-opera-multiple-canvases/canvas/2#t=0,3307.22" + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0074-multiple-language-captions.json b/fixtures/3-to-4-converted/cookbook/0074-multiple-language-captions.json new file mode 100644 index 0000000..87b2eef --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0074-multiple-language-captions.json @@ -0,0 +1,116 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "Per voi signore. Modelli francesi" + ], + "en": [ + "For ladies. French models" + ] + }, + "rights": "http://rightsstatements.org/vocab/InC/1.0/", + "requiredStatement": { + "label": { + "en": [ + "Rights" + ] + }, + "value": { + "en": [ + "All rights reserved Cinecittà Luce spa" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas", + "height": 384, + "width": 288, + "duration": 65, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/europeana/Per_voi_signore_Modelli_francesi.mp4", + "type": "Video", + "height": 384, + "width": 288, + "duration": 65, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/anno/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/manifest.json/subtitles_captions-files-vtt", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_en.vtt", + "type": "Text", + "format": "text/vtt", + "label": { + "en": [ + "Captions in WebVTT format" + ] + }, + "language": "en" + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/Per_voi_signore_Modelli_francesi_it.vtt", + "type": "Text", + "format": "text/vtt", + "label": { + "it": [ + "Sottotitoli in formato WebVTT" + ] + }, + "language": "it" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0074-multiple-language-captions/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0117-add-image-thumbnail.json b/fixtures/3-to-4-converted/cookbook/0117-add-image-thumbnail.json new file mode 100644 index 0000000..45cf250 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0117-add-image-thumbnail.json @@ -0,0 +1,104 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Playbill Cover with Manifest Thumbnail" + ] + }, + "summary": { + "en": [ + "Cover of playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "thumbnail": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4823, + "width": 3497, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001", + "type": "ImageService3", + "profile": "level1", + "height": 4823, + "width": 3497, + "extraFormats": [ + "png" + ], + "extraQualities": [ + "default", + "color", + "gray" + ], + "protocol": "http://iiif.io/api/image", + "tiles": [ + { + "height": 512, + "scaleFactors": [ + 1, + 2, + 4, + 8 + ], + "width": 512 + } + ] + } + ] + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas", + "label": { + "en": [ + "front cover with color bar" + ] + }, + "width": 4520, + "height": 5312, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/page/p0/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/annotation/p0000-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 5312, + "width": 4520, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0117-add-image-thumbnail/canvas/p0", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0118-multivalue.json b/fixtures/3-to-4-converted/cookbook/0118-multivalue.json new file mode 100644 index 0000000..bc106f2 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0118-multivalue.json @@ -0,0 +1,70 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/manifest.json", + "type": "Manifest", + "label": { + "fr": [ + "Arrangement en gris et noir no 1" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Alternative titles" + ] + }, + "value": { + "en": [ + "Whistler's Mother", + "Arrangement in Grey and Black No. 1" + ], + "fr": [ + "Portrait de la mère de l'artiste", + "La Mère de Whistler" + ] + } + } + ], + "summary": { + "en": [ + "A painting in oil on canvas created by the American-born painter James McNeill Whistler, in 1871." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas", + "width": 1114, + "height": 991, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1/page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Whistlers_Mother_high_res.jpg/1114px-Whistlers_Mother_high_res.jpg", + "type": "Image", + "format": "image/jpeg" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0118-multivalue/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0135-annotating-point-in-canvas.json b/fixtures/3-to-4-converted/cookbook/0135-annotating-point-in-canvas.json new file mode 100644 index 0000000..bf7f839 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0135-annotating-point-in-canvas.json @@ -0,0 +1,102 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Using a point selector for annotating a location on a map." + ] + }, + "summary": { + "en": [ + "A map containing an point with an annotation of the location." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas", + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet" + ] + }, + "height": 7072, + "width": 5212, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/contentPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/content.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7072, + "width": 5212, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "TextualBody", + "value": "Town Creek Aqueduct", + "language": "en", + "format": "text/plain" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0135-annotating-point-in-canvas/canvas.json", + "type": "Canvas" + }, + "selector": { + "type": "PointSelector", + "x": 3385, + "y": 1464 + } + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0139-geolocate-canvas-fragment.json b/fixtures/3-to-4-converted/cookbook/0139-geolocate-canvas-fragment.json new file mode 100644 index 0000000..d8e532b --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0139-geolocate-canvas-fragment.json @@ -0,0 +1,122 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Recipe Manifest for #139" + ] + }, + "summary": { + "en": [ + "A IIIF Presentation API 3.0 Manifest containing a GeoJSON-LD Web Annotation which targets a Canvas fragment." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas", + "label": { + "en": [ + "Chesapeake and Ohio Canal Pamphlet" + ] + }, + "width": 5212, + "height": 7072, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/contentPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/content.json", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674", + "type": "ImageService3", + "profile": "level1" + } + ], + "width": 5212, + "height": 7072 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/supplementingPage.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geoAnno.json", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/geo.json", + "type": "Feature", + "properties": { + "label": { + "en": [ + "Targeted Map from Chesapeake and Ohio Canal Pamphlet" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.019853, + 38.913101 + ], + [ + -77.110013, + 38.843254 + ], + [ + -77.284698, + 38.997574 + ], + [ + -77.188911, + 39.062648 + ] + ] + ] + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0139-geolocate-canvas-fragment/canvas.json#xywh=920,3600,1510,3000", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0154-geo-extension.json b/fixtures/3-to-4-converted/cookbook/0154-geo-extension.json new file mode 100644 index 0000000..c04bf0f --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0154-geo-extension.json @@ -0,0 +1,87 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/manifest.json", + "type": "Manifest", + "label": { + "it": [ + "Bronzo Laocoonte e i suoi figli" + ] + }, + "navPlace": { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature-collection/1", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/feature/1", + "type": "Feature", + "properties": { + "label": { + "en": [ + "The Laocoön Bronze" + ], + "it": [ + "Bronzo Laocoonte e i suoi figli" + ] + } + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.4745559, + 34.0776376 + ] + } + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas", + "height": 3000, + "width": 2315, + "label": { + "en": [ + "Front of Bronze" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno-page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/anno/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3000, + "width": 2315, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0154-geo-extension/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0202-start-canvas.json b/fixtures/3-to-4-converted/cookbook/0202-start-canvas.json new file mode 100644 index 0000000..da16079 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0202-start-canvas.json @@ -0,0 +1,256 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Multiple Related Images (Book, etc.)" + ] + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Frontispiece" + ] + }, + "width": 3186, + "height": 4612, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Title page" + ] + }, + "width": 3204, + "height": 4613, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "width": 3174, + "height": 4578, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Bookplate" + ] + }, + "width": 3198, + "height": 4632, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0219-using-caption-file.json b/fixtures/3-to-4-converted/cookbook/0219-using-caption-file.json new file mode 100644 index 0000000..652af98 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0219-using-caption-file.json @@ -0,0 +1,84 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Lunchroom Manners" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas", + "height": 360, + "width": 480, + "duration": 572.034, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page/annotation1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas/page2/a1", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "type": "Text", + "format": "text/vtt", + "label": { + "en": [ + "Captions in WebVTT format" + ] + }, + "language": "en" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0219-using-caption-file/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0229-behavior-ranges.json b/fixtures/3-to-4-converted/cookbook/0229-behavior-ranges.json new file mode 100644 index 0000000..2239718 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0229-behavior-ranges.json @@ -0,0 +1,319 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/manifest.json ", + "type": "Manifest", + "label": { + "en": [ + "Video navigation with thumbnails in a Range" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "type": "Canvas", + "height": 1080, + "width": 1920, + "duration": 3307.22, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1/annotation_page/1/annotation/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/vae0637_accessH264_low_act_2.mp4", + "type": "Video", + "format": "video/mp4", + "height": 1080, + "width": 1920, + "duration": 3307.22 + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1", + "type": "Range", + "label": { + "en": [ + "Thumbnail Navigation" + ] + }, + "behavior": [ + "thumbnail-nav" + ], + "items": [ + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/1.1", + "behavior": [ + "no-nav" + ], + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=0,9" + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/2", + "label": { + "en": [ + "9s – 305s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=9,305" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-01.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/3", + "label": { + "en": [ + "305s – 610s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=305,610" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-02.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/4", + "label": { + "en": [ + "610s – 915s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=610,915" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-03.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/5", + "label": { + "en": [ + "915s – 1220s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=915,1220" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-04.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/6", + "label": { + "en": [ + "1220s – 1525s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1220,1525" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-05.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/7", + "label": { + "en": [ + "1525s – 1830s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1525,1830" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-06.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/8", + "label": { + "en": [ + "1830s – 2135s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=1830,2135" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-07.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/9", + "label": { + "en": [ + "2135s – 2440s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2135,2440" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-08.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/10", + "label": { + "en": [ + "2440s – 2745s" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2440,2745" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-09.png", + "type": "Image", + "format": "image/png", + "height": 1266, + "width": 2250 + } + ] + }, + { + "type": "Range", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/range/11", + "label": { + "en": [ + "2745s – end" + ] + }, + "items": [ + { + "type": "Canvas", + "id": "https://iiif.io/api/cookbook/recipe/0229-behavior-ranges/canvas/1#t=2745,3307.22" + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/video/indiana/donizetti-elixir/thumbnails/thumb-nav-10.png", + "type": "Image", + "format": "image/png", + "width": 2250, + "height": 1266 + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0230-navdate-navdate_map_1-manifest.json b/fixtures/3-to-4-converted/cookbook/0230-navdate-navdate_map_1-manifest.json new file mode 100644 index 0000000..d973f97 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0230-navdate-navdate_map_1-manifest.json @@ -0,0 +1,61 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_1-manifest.json", + "type": "Manifest", + "label": { + "en": [ + "1987 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide" + ] + }, + "navDate": "1987-01-01T00:00:00+00:00", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "1987 Map, recto and verso, with a date of publication" + ] + }, + "height": 7072, + "width": 5212, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 7072, + "width": 5212, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-88695674/", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0230-navdate-navdate_map_2-manifest.json b/fixtures/3-to-4-converted/cookbook/0230-navdate-navdate_map_2-manifest.json new file mode 100644 index 0000000..74d9252 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0230-navdate-navdate_map_2-manifest.json @@ -0,0 +1,61 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/navdate_map_2-manifest.json", + "type": "Manifest", + "label": { + "en": [ + "1986 Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide" + ] + }, + "navDate": "1986-01-01T00:00:00+00:00", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "1986 Map, recto and verso, with a date of publication" + ] + }, + "height": 1765, + "width": 1286, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 1765, + "width": 1286, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/43153e2ec7531f14dd1c9b2fc401678a-87691274-1986/", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0230-navdate/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0234-provider.json b/fixtures/3-to-4-converted/cookbook/0234-provider.json new file mode 100644 index 0000000..13c3c4c --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0234-provider.json @@ -0,0 +1,133 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Playbill Cover" + ] + }, + "summary": { + "en": [ + "Cover of playbill for \"Akiba gongen kaisen-banashi,\" \"Futatsu chōchō kuruwa nikki\" and \"Godairiki koi no fūjime\" performed at the Chikugo Theater in Osaka from the fifth month of Kaei 2 (May, 1849); main actors: Gadō Kataoka II, Ebizō Ichikawa VI, Kitō Sawamura II, Daigorō Mimasu IV, and Karoku Nakamura I; on front cover: producer Mominosuke Ichikawa's crest." + ] + }, + "provider": [ + { + "id": "https://id.loc.gov/authorities/n79055331", + "type": "Agent", + "label": { + "en": [ + "UCLA Library" + ] + }, + "homepage": [ + { + "id": "https://digital.library.ucla.edu/", + "type": "Text", + "label": { + "en": [ + "UCLA Library Digital Collections" + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "logo": [ + { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2/full/max/0/default.png", + "type": "Image", + "service": [ + { + "id": "https://iiif.library.ucla.edu/iiif/2/UCLA-Library-Logo-double-line-2", + "type": "ImageService3", + "profile": "level2", + "width": 1200, + "height": 502, + "sizes": [ + { + "width": 300, + "height": 126 + }, + { + "width": 600, + "height": 251 + }, + { + "width": 1200, + "height": 502 + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://id.loc.gov/authorities/names/n79055331.madsxml.xml", + "type": "Dataset", + "label": { + "en": [ + "US Library of Congress data about the UCLA Library" + ] + }, + "format": "application/xml", + "profile": "http://www.loc.gov/mads/v2" + } + ] + } + ], + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas", + "label": { + "en": [ + "front cover with color bar" + ] + }, + "width": 4520, + "height": 5312, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/page/p0/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/annotation/p0000-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 4520, + "height": 5312, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4f92cceb12dd53b52433425ce44308c7-ucla_bib1987273_no001_rs_001_full", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0234-provider/canvas/p0", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0240-navPlace-on-canvases.json b/fixtures/3-to-4-converted/cookbook/0240-navPlace-on-canvases.json new file mode 100644 index 0000000..e41c47c --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0240-navPlace-on-canvases.json @@ -0,0 +1,159 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Laocöon, geolocated sculpture and painting." + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas", + "height": 3000, + "width": 2315, + "label": { + "en": [ + "Front of Bronze" + ] + }, + "navPlace": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/1", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/1", + "type": "Feature", + "properties": { + "label": { + "en": [ + "Current Location of the Laocoön Bronze" + ], + "it": [ + "Ubicazione attuale del Bronzo Laocoonte e i suoi figli" + ] + } + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.4745559, + 34.0776376 + ] + } + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3000, + "width": 2315, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/28473c77da3deebe4375c3a50572d9d3-laocoon", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "type": "Canvas", + "height": 3259, + "width": 4096, + "label": { + "en": [ + "Painting" + ] + }, + "navPlace": { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature-collection/2", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/feature/2", + "type": "Feature", + "properties": { + "label": { + "en": [ + "Current Location of Painting" + ] + } + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0199025, + 38.8920717 + ] + } + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno-page/2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/anno/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3259, + "width": 4096, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/58763298b61c2a99f78ff94d8364c639-laocoon_1946_18_1", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0240-navPlace-on-canvases/canvas/2", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0258-tagging-external-resource.json b/fixtures/3-to-4-converted/cookbook/0258-tagging-external-resource.json new file mode 100644 index 0000000..a3322de --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0258-tagging-external-resource.json @@ -0,0 +1,88 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/annotation/anno/p0002-wikidata", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "SpecificResource", + "source": "http://www.wikidata.org/entity/Q18624915" + }, + { + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", + "format": "text/plain", + "language": "de" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0258-tagging-external-resource/canvas/p1#xywh=749,1054,338,460", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0261-non-rectangular-commenting.json b/fixtures/3-to-4-converted/cookbook/0261-non-rectangular-commenting.json new file mode 100644 index 0000000..6a8856d --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0261-non-rectangular-commenting.json @@ -0,0 +1,91 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/annotation/p0002-svg", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "TextualBody", + "value": "Gänseliesel-Brunnen", + "language": "de", + "format": "text/plain" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/cookbook/recipe/0261-non-rectangular-commenting/canvas/p1", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + } + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0266-full-canvas-annotation.json b/fixtures/3-to-4-converted/cookbook/0266-full-canvas-annotation.json new file mode 100644 index 0000000..4514132 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0266-full-canvas-annotation.json @@ -0,0 +1,84 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "TextualBody", + "language": "de", + "format": "text/plain", + "value": "Göttinger Marktplatz mit Gänseliesel Brunnen" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0269-embedded-or-referenced-annotations.json b/fixtures/3-to-4-converted/cookbook/0269-embedded-or-referenced-annotations.json new file mode 100644 index 0000000..dfde89d --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0269-embedded-or-referenced-annotations.json @@ -0,0 +1,61 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0269-embedded-or-referenced-annotations/annotationpage.json", + "type": "AnnotationPage" + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0283-missing-image.json b/fixtures/3-to-4-converted/cookbook/0283-missing-image.json new file mode 100644 index 0000000..fa82f94 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0283-missing-image.json @@ -0,0 +1,182 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Ethiopic Ms 10" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "f. 1r" + ] + }, + "height": 2504, + "width": 1768, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "f. 1v — MISSING" + ] + }, + "height": 2504, + "width": 1768, + "metadata": [ + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Image unavailable or does not exist" + ] + } + } + ], + "items": [] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "f. 2r" + ] + }, + "height": 2456, + "width": 1792, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "f. 2v" + ] + }, + "height": 2440, + "width": 1760, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0283-missing-image/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0299-region.json b/fixtures/3-to-4-converted/cookbook/0299-region.json new file mode 100644 index 0000000..091b371 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0299-region.json @@ -0,0 +1,63 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0299-region/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Berliner Tageblatt article, 'Ein neuer Sicherungsplan?'" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Canvas", + "height": 2080, + "width": 1768, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/body/b1", + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4999, + "width": 3536, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "profile": "level1", + "type": "ImageService3" + } + ] + }, + "selector": { + "type": "ImageApiSelector", + "region": "1768,2423,1768,2080" + } + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0299-region/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0306-linking-annotations-to-manifests.json b/fixtures/3-to-4-converted/cookbook/0306-linking-annotations-to-manifests.json new file mode 100644 index 0000000..4706ff5 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0306-linking-annotations-to-manifests.json @@ -0,0 +1,61 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0306-linking-annotations-to-manifests/annotationpage.json", + "type": "AnnotationPage" + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0309-annotation-collection.json b/fixtures/3-to-4-converted/cookbook/0309-annotation-collection.json new file mode 100644 index 0000000..c6be894 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0309-annotation-collection.json @@ -0,0 +1,159 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/manifest.json", + "type": "Manifest", + "label": { + "de": [ + "Berliner Tageblatt - 1925-02-16" + ] + }, + "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/cookbook/recipe/0309-annotation-collection/canvas/p1", + "type": "Canvas", + "label": { + "none": [ + "p. 1" + ] + }, + "height": 5000, + "width": 3602, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "type": "AnnotationPage", + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "type": "AnnotationCollection", + "label": { + "en": [ + "Newspaper layout markup" + ] + }, + "total": 8, + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json" + } + ], + "next": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "type": "Canvas", + "label": { + "none": [ + "p. 2" + ] + }, + "height": 5000, + "width": 3602, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/annotation_page_painting/ap2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json", + "type": "AnnotationPage", + "partOf": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_coll.json", + "type": "AnnotationCollection", + "label": { + "en": [ + "Newspaper layout markup" + ] + }, + "total": 8, + "first": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json", + "last": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p2.json" + } + ], + "prev": "https://iiif.io/api/cookbook/recipe/0309-annotation-collection/anno_p1.json" + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0326-annotating-image-layer.json b/fixtures/3-to-4-converted/cookbook/0326-annotating-image-layer.json new file mode 100644 index 0000000..aa15795 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0326-annotating-image-layer.json @@ -0,0 +1,121 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Choice Example with layer specific annotation" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas", + "height": 1271, + "width": 2000, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural/full/max/0/default.jpg", + "type": "Image", + "label": { + "en": [ + "Natural Light" + ] + }, + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray/full/2000,1271/0/default.jpg", + "type": "Image", + "label": { + "en": [ + "X-ray" + ] + }, + "format": "image/jpeg", + "height": 1271, + "width": 2000, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3", + "profile": "level1" + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/annotation/p0002-tag", + "type": "Annotation", + "motivation": [ + "tagging" + ], + "body": [ + { + "type": "TextualBody", + "value": "A group of skulls.", + "language": "en", + "format": "text/plain" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-xray", + "type": "ImageService3" + }, + "selector": { + "type": "ImageApiSelector", + "region": "810,900,260,370", + "size": "2000,1271" + } + } + ] + } + ] + } + ] + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0326-annotating-image-layer/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0346-multilingual-annotation-body.json b/fixtures/3-to-4-converted/cookbook/0346-multilingual-annotation-body.json new file mode 100644 index 0000000..b5c0003 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0346-multilingual-annotation-body.json @@ -0,0 +1,98 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Koto, chess, calligraphy, and painting" + ], + "ja": [ + "琴棋書画図屏風" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas", + "height": 31722, + "width": 70399, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/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": 31722, + "width": 70399, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/annotation/p0001-comment", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "type": "TextualBody", + "value": "Koto with a cover being carried", + "language": "en", + "format": "text/plain" + }, + { + "type": "TextualBody", + "value": "袋に収められた琴", + "language": "ja", + "format": "text/plain" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0346-multilingual-annotation-body/canvas/p1#xywh=1650,1200,925,1250", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0377-image-in-annotation.json b/fixtures/3-to-4-converted/cookbook/0377-image-in-annotation.json new file mode 100644 index 0000000..7827932 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0377-image-in-annotation.json @@ -0,0 +1,88 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas", + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-1/anno-1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1/annopage-2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-fountain/full/300,/0/default.jpg", + "type": "Image", + "format": "image/jpeg" + }, + { + "type": "TextualBody", + "language": "en", + "value": "Night picture of the Gänseliesel fountain in Göttingen taken during the 2019 IIIF Conference" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0377-image-in-annotation/canvas-1#xywh=138,550,1477,1710", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0434-choice-av.json b/fixtures/3-to-4-converted/cookbook/0434-choice-av.json new file mode 100644 index 0000000..b24687b --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0434-choice-av.json @@ -0,0 +1,117 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Excerpt from Egbe Iyawo" + ] + }, + "summary": { + "en": [ + "Excerpt from a performance of Egbe Iyawo recorded in Kabba Division, Kwara State. " + ] + }, + "rights": "http://creativecommons.org/publicdomain/zero/1.0/", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "type": "Canvas", + "duration": 16, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1/annotation_page/1/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0434-choice-av/canvas/1", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.m4a", + "type": "Sound", + "format": "audio/alac", + "duration": 16, + "label": { + "en": [ + "ALAC" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mp3", + "type": "Sound", + "format": "audio/mpeg", + "duration": 16, + "label": { + "en": [ + "MP3" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.flac", + "type": "Sound", + "format": "audio/flac", + "duration": 16, + "label": { + "en": [ + "FLAC" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.ogg", + "type": "Sound", + "format": "audio/ogg", + "duration": 16, + "label": { + "en": [ + "OGG Vorbis OGG" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.mpeg", + "type": "Sound", + "format": "audio/mpeg", + "duration": 16, + "label": { + "en": [ + "MPEG2" + ] + } + }, + { + "id": "https://fixtures.iiif.io/audio/ucla/egbe-iyawo-ucla.wav", + "type": "Sound", + "format": "audio/wav", + "duration": 16, + "label": { + "en": [ + "WAV" + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/cookbook/0489-multimedia-canvas.json b/fixtures/3-to-4-converted/cookbook/0489-multimedia-canvas.json new file mode 100644 index 0000000..263aa41 --- /dev/null +++ b/fixtures/3-to-4-converted/cookbook/0489-multimedia-canvas.json @@ -0,0 +1,142 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Multimedia Canvas" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas", + "type": "Canvas", + "height": 31722, + "width": 70399, + "duration": 180, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/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": 31722, + "width": 70399, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#t=11,42", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0002-video", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/30-minute-clock/medium/30-minute-clock.mp4", + "type": "Video", + "height": 360, + "width": 640, + "duration": 1801.055, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=1000,500,5000,6000&t=11,42", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0004-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/html", + "value": "

Press Play

", + "language": "en" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=30200,10200,15000,5000&t=0,1", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0005-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/html", + "value": "

In 10 seconds, this text will be replaced by a clock and an image. You will have 30 seconds (shown on the clock) in which to take notes on the image you see. After 30 seconds, the image will be replaced by the start screen. You will not be responsible for the part of the image covered by the clock.

", + "language": "en" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=20220,5000,30000,5000&t=1,11", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/annotation/p0006-text", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/html", + "value": "

Close your browser

", + "language": "en" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0489-multimedia-canvas/canvas#xywh=27000,10200,25000,5000&t=42,180", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/accompanying-canvas.json b/fixtures/3-to-4-converted/presentation-3/accompanying-canvas.json new file mode 100644 index 0000000..0ce8fa7 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/accompanying-canvas.json @@ -0,0 +1,99 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Partial audio recording of Gustav Mahler's _Symphony No. 3_" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Gustav Mahler, Symphony No. 3, CD 1" + ] + }, + "duration": 1985.024, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/annotation/segment1-audio", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "duration": 1985.024, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/page/p1", + "type": "AnnotationPage" + } + ] + } + ] + } + ], + "accompanyingContainer": { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas", + "label": { + "en": [ + "First page of score for Gustav Mahler, Symphony No. 3" + ] + }, + "height": 998, + "width": 772, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0/full/,998/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 998, + "width": 772, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4b45bba3ea612ee46f5371ce84dbcd89-mahler-0", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0014-accompanyingcanvas/canvas/accompanying", + "type": "Canvas" + } + ] + } + ] + } + ] + } + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/bl-ranges.json b/fixtures/3-to-4-converted/presentation-3/bl-ranges.json new file mode 100644 index 0000000..cca3782 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/bl-ranges.json @@ -0,0 +1,4057 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "C733/48 C733/49 C733/50 [Recordings in Soqotri / 'Survey' recordings in English]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Format" + ] + }, + "value": { + "en": [ + "3 tape reels 9 cm 4.75 cm/sec mono" + ] + } + }, + { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Rights unassigned - staff access only" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Digitised by" + ] + }, + "value": { + "en": [ + "The British Library, 2017" + ] + } + }, + { + "label": { + "en": [ + "Digitisation funded by" + ] + }, + "value": { + "en": [ + "National Lottery Heritage Fund" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48-C733/50" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + } + ], + "requiredStatement": { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Please read the full information about this object
Rights unassigned - staff access only
" + ] + } + }, + "provider": [ + { + "id": "https://www.bl.uk/about-us", + "type": "Agent", + "label": { + "en": [ + "The British Library" + ] + }, + "homepage": [ + { + "id": "https://www.bl.uk/", + "type": "Text", + "format": "text/html", + "label": { + "en": [ + "The British Library" + ] + } + } + ], + "logo": [ + { + "id": "https://www.bl.uk/images/bl_logo_100.gif", + "type": "Image", + "format": "image/gif" + } + ] + } + ], + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/login", + "type": "AuthCookieService1", + "profile": "http://iiif.io/api/auth/1/login", + "description": "Some portions of this recording may be unavailable due to rights restrictions.", + "header": "Please Log-In", + "label": "Login to The British Library", + "service": [ + { + "id": "https://api.bl.uk/auth/iiif/token", + "type": "AuthTokenService1", + "profile": "http://iiif.io/api/auth/1/token" + } + ] + }, + { + "id": "http://access.bl.uk/item/share/ark:/81055/vdc_100052320369.0x000002", + "type": "Service", + "profile": "http://universalviewer.io/share-extensions-profile" + } + ], + "homepage": [ + { + "id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_100052320369.0x000002", + "type": "Text", + "format": "text/html", + "label": { + "en": [ + "View at the British Library" + ] + } + } + ], + "behavior": [ + "auto-advance" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004", + "type": "Canvas", + "label": { + "en": [ + "Tape 1 Side 1" + ] + }, + "duration": 2023.56, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004/anno1/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004#t=0,2023.56", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000033/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000033/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000032.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005", + "type": "Canvas", + "label": { + "en": [ + "Tape 1 Side 2" + ] + }, + "duration": 1760.04, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005/anno2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005/anno2/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005#t=0,1760.04", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000035/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000035/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000035/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000035/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000034.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007", + "type": "Canvas", + "label": { + "en": [ + "Tape 2 Side 1" + ] + }, + "duration": 1392.56, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007/anno3", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007/anno3/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0,1392.56", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000037/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000037/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000037/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000037/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000036.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008", + "type": "Canvas", + "label": { + "en": [ + "Tape 2 Side 2" + ] + }, + "duration": 1404.92, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008/anno4", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008/anno4/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=0,1404.92", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000039/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x000039/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x000039/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x000039/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x000038.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a", + "type": "Canvas", + "label": { + "en": [ + "Tape 3 Side 1" + ] + }, + "duration": 1406.32, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a/anno5", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a/anno5/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=0,1406.32", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x00003b/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x00003b/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x00003b/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x00003b/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x00003a.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b", + "type": "Canvas", + "label": { + "en": [ + "Tape 3 Side 2" + ] + }, + "duration": 1398.84, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b/anno6", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b/anno6/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b#t=0,1398.84", + "type": "Canvas" + } + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x00003d/manifest.mpd", + "format": "application/dash+xml", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/dash/ark:/81055/vdc_100052320369.0x00003d/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + }, + { + "id": "https://api.bl.uk/media/iiif/ark:/81055/vdc_100052320369.0x00003d/index.m3u8", + "format": "vnd.apple.mpegURL", + "type": "Audio", + "service": [ + { + "id": "https://api.bl.uk/media/hls/ark:/81055/vdc_100052320369.0x00003d/probe.json", + "type": "AuthProbeService1", + "profile": "http://iiif.io/api/auth/1/probe" + } + ] + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-waveforms.s3.amazonaws.com/vdc_100052320369.0x00003c.dat", + "type": "Dataset", + "format": "application/octet-stream", + "profile": "http://waveform.prototyping.bbc.co.uk" + } + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Range", + "label": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Recordings in Soqotri / 'Survey' recordings in English]" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Format" + ] + }, + "value": { + "en": [ + "3 tape reels 9 cm 4.75 cm/sec mono" + ] + } + }, + { + "label": { + "en": [ + "Usage" + ] + }, + "value": { + "en": [ + "Rights unassigned - staff access only" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Digitised by" + ] + }, + "value": { + "en": [ + "The British Library, 2017" + ] + } + }, + { + "label": { + "en": [ + "Digitisation funded by" + ] + }, + "value": { + "en": [ + "National Lottery Heritage Fund" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48-C733/50" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000002/top", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c", + "type": "Range", + "label": { + "en": [ + "[A'raf Biladik]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Wazir Al-Nubi, Ibrahim", + "Botting, Douglas", + "Bin Ali, Thani", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate Aden Governorate, Soqotra (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen Oman (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "1 hr. 11 min. 09 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt gdq ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri Mehri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S1-C733/49 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Individual items described separately Ibrahim Wazir al-Nubi reads a passage called 'A'raf Biladik' [knowledge of homeland], in Soqotri and Arabic, and Thani Bin Ali reads the same extract in Mehri. The voice that can be heard introducing is likely to be Major P.G. Boxhall. Sheikh Ibrahim Wazir Al-Nubi was the minister/scribe of the Sultan at the time the recording was made. Thani Bin Ali was a medical assistant on Soqotra. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000c", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000d", + "type": "Range", + "label": { + "en": [ + "[A'raf Biladik, Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Wazir Al-Nubi, Ibrahim", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "33 min. 44 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Ibrahim Wazir al-Nubi reads a passage called 'A'raf Biladik' [knowledge of homeland], in Soqotri and Arabic. The voice that can be heard introducing the recording is likely to be Major P.G. Boxhall. Sheikh Ibrahim Wazir Al-Nubi was the minister/scribe of the Sultan at the time the recording was made. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000d", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000004#t=0,2023.56", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000e", + "type": "Range", + "label": { + "en": [ + "[A'raf Biladik, Mehri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Mehri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "29 min. 20 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "gdq" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/48 S2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/48" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on speakers and content was provided by Dr. Miranda Morris. Contains recitations of 'A'raf Biladik' ['knowledge of homeland' - unidentified] in Mehri. The voice introducing the recording is likely to be Major P.G. Boxhall. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000e", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000005#t=0,1760.04", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000c/nn3", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0,0.36", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000f", + "type": "Range", + "label": { + "en": [ + "[A'raf Biladik, Soqotri, page 4]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[A'raf Biladik, Soqotri, page 4]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Bin Ali, Thani", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Aden Governorate, Soqotra? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "8 min. 05 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Contains a recitation of 'page 4' of 'A'raf Biladik' ['knowledge of homeland' - unidentified] in Soqotri by Thani Bin Ali, introduced by a speaker likely to be Major P.G. Boxhall. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Thani Bin Ali is a medical assistant on Soqotra. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors and content transcribed by ear Recording date based on the date written on the box for C733/48 Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00000f", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=0.36,484.8", + "type": "Canvas" + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016", + "type": "Range", + "label": { + "en": [ + "[Translation of Arabic to Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Translation of Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Hadrami Bedouin League member", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "0 min. 39 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Title transcribed by ear, but does not seem to match the content, which is the two men having a brief discussion in Arabic Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000016", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=487.56,526.36", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000016/nn3", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.36,526.64", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000018", + "type": "Range", + "label": { + "en": [ + "[Medical interview in Arabic and Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Medical interview in Arabic and Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Corporal Goldberg", + "unidentified", + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "8 min. 20 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Names and content transcribed by ear Corporal Goldberg interviews a patient, a Bedouin child who is very sick. Johstone speaks in Arabic to Suleiman, one of the Sultan's bodyguards, who translates into Soqotri for the benefit of the Bedouin man and his child. There is a description of fire treatment as medicine to cure the boy. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on languages spoken Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000018", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=526.64,1026.48", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001a", + "type": "Range", + "label": { + "en": [ + "[Arabic to Soqotri translations]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Arabic to Soqotri translations]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "19 min. 47 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C4-S2 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Individual items described separately Suleiman is described as 'one of the Sultan's bodyguards' Various recordings of Arabic - Soqotri translations made with Suleiman Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear from English and Arabic Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001a", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b", + "type": "Range", + "label": { + "en": [ + "[Single-word translation of Arabic to Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Single-word translation of Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "10 min. 25 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S1 C4-S2 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Contains Soqotri translations of the Arabic words for 'tall', 'short', 'sea', 'eat', 'house', 'homeland', 'town', 'sun', 'walk', 'mountain', 'far', 'near', 'bread', 'daughter', 'head', 'chest', 'eye', 'eyebrow', 'tongue', 'ghee', 'milk', 'chicken', 'dog', 'camel', 'fire', 'donkey', as well as numbers, and some unidentified words. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors and content transcribed by ear from English and Arabic Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001b", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000007#t=1027,1392.56", + "type": "Canvas" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=0,259.8", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001b/nn2", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=259.8,260", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c", + "type": "Range", + "label": { + "en": [ + "[Pronunciation of lateral s]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Pronunciation of lateral s]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "0 min. 17 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Pronunciation of lateral s, or 'ɮ' being pronounced by Suleiman [voice identified by ear] Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey temas of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001c", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=260,276.24", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001c/nn3", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=276.24,277.44", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00001d", + "type": "Range", + "label": { + "en": [ + "[Medical phrases]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Medical phrases]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "Suleiman", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "9 min. 04 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "ara sqt" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Suleiman is described as 'one of the Sultan's bodyguards' Medical phrases translated from Arabic to Soqotri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Information on contributors and content transcribed by ear Recording date based on date of Boxhall's expedition to Soqotra. Recording location based on language spoken Information on contributors, and location of recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00001d", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=277.44,821.36", + "type": "Canvas" + } + ] + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024", + "type": "Range", + "label": { + "en": [ + "Arabic/Soqotri [Mu'allaqat of the Imru Al-Qays]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "Arabic/Soqotri [Mu'allaqat of the Imru Al-Qays]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "2 min. 51 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C4" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "The first few lines of the Mu'allaqat of the Imru Al-Qays in Arabic and Soqotri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Same speaker as C733/49 C5 [identified by ear] Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000024", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=821.76,992.32", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000024/nn6", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.32,992.96", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000026", + "type": "Range", + "label": { + "en": [ + "Arabic/Soqotri [Page 121]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "Arabic/Soqotri [Page 121]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "6 min. 52 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/49 S2 C5" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/49" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "'Phrases from page 121 translated from Arabic into Soqotri' [transcribed by ear] Same speaker as C733/49 C4 [identified by ear] Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000026", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000008#t=992.96,1404.92", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028", + "type": "Range", + "label": { + "en": [ + "[Phrases from Arabic to Soqotri]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Phrases from Arabic to Soqotri]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir,", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1965-12? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Abd Al-Kuri, Soqotra Archipelago, Aden Governorate? (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) Yemen (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "12 min. 16 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C1" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "'Phrases from Arabic to Soqotri' (transcribed by ear) Recording date based on note on box for C733/48 Recording location based on languages spoken, and on note on box for C733/15 Information on contributors is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x000028", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=0,736", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000028/nn8", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736,736.72", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a", + "type": "Range", + "label": { + "en": [ + "[Soqotri songs]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Soqotri songs]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "7 min. 02 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "sqt ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Soqotri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C2" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "Information on content and speakers was provided by Dr. Miranda Morris Soqotri songs and poetry with Arabic translation, and some talk. The songs/poem is followed by someone speaking in Soqotri. After he sings, he demands to be paid 20 shillings as he is a good man. He says ‘tell me! How many camels do you want?’ and says he has been with other foreigners, travelled, with a compass, been to many places, ‘I’m a good man, employ me!’. Finally, there is a brief fragment of a 'translation of an Arabic text into Mahri' [identified by ear]. Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002a", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=736.72,1158.84", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002a/nn9", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1158.84,1159.12", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002c", + "type": "Range", + "label": { + "en": [ + "[Arabic/Mahri translation]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "[Arabic/Mahri translation]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1967 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Soqotra, Aden Governorate (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "3 min. 07 sec." + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "gdq ara" + ] + } + }, + { + "label": { + "en": [ + "Culture" + ] + }, + "value": { + "en": [ + "Mehri" + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S1 C3" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "A translation of an Arabic text into Mehri Recording likely to have been made during the 1967 expedition to Soqotra, of which Johnstone was a member. The expedition was led by Major P. G. Boxall, and sponsored by Admiral Sir Michael Le Fanu. The group comprised of civilian and service members, and included experts on languages, geology, entomology, botany, medicine, and archaeology, as well as military field survey teams of the Royal Navy and the Royal Engineers. They also conducted a coastal hydrographic survey [information from Doe 1992, which can be found at YK.1992.b.6319]. Recording date based on date of Boxhall's expedition to Soqotra. Information on contributors, and location recording is not described on the box, cassette, or documentation" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002c", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1159.12,1346.4", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/top/nn9", + "type": "Range", + "behavior": [ + "no-nav" + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1346.4,1406.32", + "type": "Canvas" + } + ] + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00002e", + "type": "Range", + "label": { + "en": [ + "['Survey' recordings]" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Full title" + ] + }, + "value": { + "en": [ + "['Survey' recordings]" + ] + } + }, + { + "label": { + "en": [ + "Creator" + ] + }, + "value": { + "en": [ + "unidentified", + "Johnstone, Thomas Muir," + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "not before 1966-01-16 (recorded)" + ] + } + }, + { + "label": { + "en": [ + "Place of creation" + ] + }, + "value": { + "en": [ + "Yemen (Socotra) (place of origin)" + ] + } + }, + { + "label": { + "en": [ + "Duration" + ] + }, + "value": { + "en": [ + "24 min. 18 sec." + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "T.M. Johnstone Middle Eastern Language recordings" + ] + } + }, + { + "label": { + "en": [ + "Held by" + ] + }, + "value": { + "en": [ + "The British Library" + ] + } + }, + { + "label": { + "en": [ + "Identifier" + ] + }, + "value": { + "en": [ + "C733/50 S2 C1; S1 C4" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "C733/50" + ] + } + }, + { + "label": { + "en": [ + "Link to catalogue" + ] + }, + "value": { + "en": [ + "View the catalogue record" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "An expedition member reads his field diary, including geological information and anecdotes of the group's travels Recording date based on the dates announced in the recording" + ] + } + } + ], + "rendering": [ + { + "id": "https://api.bl.uk/item/download/ark:/81055/vdc_100052320369.0x000002/ark:/81055/vdc_100052320369.0x00002e", + "type": "Audio", + "label": { + "en": [ + "Download this recording" + ] + }, + "format": "audio/mp4" + } + ], + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000b#t=0,1398.84", + "type": "Canvas" + }, + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x00000a#t=1346.52,1406.32", + "type": "Canvas" + } + ] + } + ] + } + ], + "accompanyingContainer": { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "type": "Canvas", + "label": { + "en": [ + "world" + ] + }, + "width": 962, + "height": 962, + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/a1/a1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052320369.0x000002/c/poster", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://iiif-commons.github.io/iiif-av-component/examples/data/bl/sounds-tests/posters/world.jpg", + "type": "Image", + "width": 962, + "height": 962, + "format": "image/jpeg" + } + ] + } + ] + } + ] + } +} diff --git a/fixtures/3-to-4-converted/presentation-3/bodleian.json b/fixtures/3-to-4-converted/presentation-3/bodleian.json new file mode 100644 index 0000000..0aab10f --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/bodleian.json @@ -0,0 +1,474 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/manifest/33c2e37e-957a-4820-83e1-611c987021c9.json", + "type": "Manifest", + "label": { + "en": [ + "Bodleian Library LP 44" + ] + }, + "summary": { + "en": [ + "Portrait of a woman, called Mary, Queen of Scots (1542–1587)" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Title" + ] + }, + "value": { + "en": [ + "Portrait of a woman, called Mary, Queen of Scots (1542–1587)" + ] + } + }, + { + "label": { + "en": [ + "Shelfmark" + ] + }, + "value": { + "en": [ + "Bodleian Library LP 44" + ] + } + }, + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Artist unknown" + ] + } + }, + { + "label": { + "en": [ + "Sitter" + ] + }, + "value": { + "en": [ + "Mary?, Queen of Scots (1542-1587)" + ] + } + }, + { + "label": { + "en": [ + "Language" + ] + }, + "value": { + "en": [ + "No linguistic content" + ] + } + }, + { + "label": { + "en": [ + "Date Statement" + ] + }, + "value": { + "en": [ + "1838" + ] + } + }, + { + "label": { + "en": [ + "Description" + ] + }, + "value": { + "en": [ + "A copy of the portrait overpainted on LP 46, before it was removed in 1838. Not an authentic portrait, though at one time very popular, it is perhaps an adaptation of a miniature by Nicholas Hilliard (1537‒1619)." + ] + } + }, + { + "label": { + "en": [ + "Materials" + ] + }, + "value": { + "en": [ + "oil on canvas" + ] + } + }, + { + "label": { + "en": [ + "Dimensions" + ] + }, + "value": { + "en": [ + "550 × 454 mm." + ] + } + }, + { + "label": { + "en": [ + "Provenance" + ] + }, + "value": { + "en": [ + "Probably commissioned by the Curators of the Bodleian Library, before 1838." + ] + } + }, + { + "label": { + "en": [ + "Accession Date" + ] + }, + "value": { + "en": [ + "by 1838" + ] + } + }, + { + "label": { + "en": [ + "Accession Source" + ] + }, + "value": { + "en": [ + "Bodleian Curators" + ] + } + }, + { + "label": { + "en": [ + "Accession Type" + ] + }, + "value": { + "en": [ + "commission" + ] + } + }, + { + "label": { + "en": [ + "Record Origin" + ] + }, + "value": { + "en": [ + "Description by Dana Josephson (2019)." + ] + } + }, + { + "label": { + "en": [ + "Collection" + ] + }, + "value": { + "en": [ + "Portraits" + ] + } + }, + { + "label": { + "en": [ + "Additional Information Sources" + ] + }, + "value": { + "en": [ + "Poole, Rachael. Catalogue of portraits in the possession of the University, colleges, city, and county of Oxford (Oxford, 1912). Garlick, Kenneth, and Rachael Poole. Catalogue of portraits in the Bodleian Library, Oxford (Oxford, 2004)." + ] + } + }, + { + "label": { + "en": [ + "Digitization Project" + ] + }, + "value": { + "en": [ + "The Bodleian Libraries’ Portrait Collection: A Samuel H. Kress Foundation Digitization Project" + ] + } + }, + { + "label": { + "en": [ + "Record Created" + ] + }, + "value": { + "en": [ + "2019-06-17T15:37:01Z" + ] + } + }, + { + "label": { + "en": [ + "Holding Institution" + ] + }, + "value": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + } + }, + { + "label": { + "en": [ + "Access Rights" + ] + }, + "value": { + "en": [ + "Photo: © Bodleian Libraries, University of Oxford" + ] + } + }, + { + "label": { + "en": [ + "Digitization Sponsor" + ] + }, + "value": { + "en": [ + "The Samuel H. Kress Foundation" + ] + } + } + ], + "homepage": [ + { + "id": "https://digital.bodleian.ox.ac.uk/objects/33c2e37e-957a-4820-83e1-611c987021c9/", + "type": "Text", + "label": { + "en": [ + "View on Digital Bodleian" + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "provider": [ + { + "id": "https://viaf.org/viaf/173632201/", + "type": "Agent", + "label": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + }, + "homepage": [ + { + "id": "https://www.bodleian.ox.ac.uk/", + "type": "Text", + "label": { + "en": [ + "Bodleian Libraries, University of Oxford" + ] + }, + "format": "text/html" + } + ] + } + ], + "navDate": "1838-01-01T00:00:00Z", + "logo": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71/full/256,/0/default.jpg", + "type": "Image", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71", + "type": "ImageService2" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/f27e28db-0b08-4f16-9bdf-3565f591fb71", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "thumbnail": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/256,/0/default.jpg", + "type": "Image", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "requiredStatement": { + "label": { + "en": [ + "Terms of Use" + ] + }, + "value": { + "en": [ + "Terms of use: CC-BY-NC 4.0. For more information, please see https://digital.bodleian.ox.ac.uk/terms/" + ] + } + }, + "partOf": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits", + "type": "Collection", + "label": { + "en": [ + "Portraits" + ] + } + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian", + "type": "Collection", + "label": { + "en": [ + "Bodleian Libraries" + ] + } + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/portraits-prints-drawings-objects", + "type": "Collection", + "label": { + "en": [ + "Portraits, Prints and Drawings" + ] + } + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/collection/bodleian-portraits", + "type": "Collection", + "label": { + "en": [ + "The Bodleian Libraries’ Portrait Collection: A Samuel H. Kress Foundation Digitization Project" + ] + } + } + ], + "behavior": [ + "paged" + ], + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas", + "label": { + "en": [ + "front" + ] + }, + "width": 1920, + "height": 2326, + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotationpage/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/annotation/012b1e0f-8c9e-48e7-83d6-5e51a70253b4_image.json", + "type": "Annotation", + "target": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 1920, + "height": 2326, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService2" + }, + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/image/012b1e0f-8c9e-48e7-83d6-5e51a70253b4", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "motivation": [ + "painting" + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/range/33c2e37e-957a-4820-83e1-611c987021c9/LOG_0000", + "type": "Range", + "label": { + "en": [ + "LP 44" + ] + }, + "items": [ + { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + ], + "start": { + "id": "https://iiif.bodleian.ox.ac.uk/iiif/canvas/012b1e0f-8c9e-48e7-83d6-5e51a70253b4.json", + "type": "Canvas" + } + } + ], + "viewingDirection": "left-to-right" +} diff --git a/fixtures/3-to-4-converted/presentation-3/css.json b/fixtures/3-to-4-converted/presentation-3/css.json new file mode 100644 index 0000000..a038162 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/css.json @@ -0,0 +1,130 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Koto, chess, calligraphy, and painting" + ], + "ja": [ + "琴棋書画図屏風" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas", + "height": 3966, + "width": 8800, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3966, + "width": 8800, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-1", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "stylesheet": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/style.css", + "body": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/sr1", + "type": "SpecificResource", + "styleClass": "author1", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text1", + "type": "TextualBody", + "language": "en", + "format": "text/html", + "value": "

Three of the four pursuits of refined and noble men named in the screen's title are shown on this side of the screen: go, the koto, and tools for calligraphy. Each is in a container or wrapper. (GR)

" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1#xywh=700,1250,1850,1150", + "type": "Canvas" + }, + "styleClass": "author1" + } + ] + }, + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/page/p2/anno-2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "stylesheet": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/style.css", + "body": [ + { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/sr2", + "type": "SpecificResource", + "styleClass": "author2", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/body/text2", + "type": "TextualBody", + "language": "en", + "format": "text/html", + "value": "

The detail in the natural beauty of the setting could be seen as a contrast (or balance) to the manufactured pursuits of noble men. (TK)

" + } + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://preview.iiif.io/cookbook/0045-css/recipe/0045-css/canvas/p1#xywh=170,160,2200,1000", + "type": "Canvas" + }, + "styleClass": "author2" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/exhibition-1.json b/fixtures/3-to-4-converted/presentation-3/exhibition-1.json new file mode 100644 index 0000000..0d31a9b --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/exhibition-1.json @@ -0,0 +1,730 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "type": "Manifest", + "label": { + "en": [ + "Inventing Creativity" + ] + }, + "items": [ + { + "label": { + "en": [ + "Constructing the Creative Personality" + ] + }, + "height": 1000, + "width": 1000, + "type": "Canvas", + "items": [ + { + "type": "AnnotationPage", + "items": [ + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "body": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c/specificResource", + "type": "SpecificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 6036, + "width": 8174, + "label": { + "en": [ + "-" + ] + }, + "service": { + "type": "ImageService2", + "id": "https://dlc.services/iiif-img/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "protocol": "http://iiif.io/api/image", + "width": 8174, + "height": 6036, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 756 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 200, + "height": 148 + }, + { + "width": 100, + "height": 74 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + }, + "selector": { + "type": "iiif:ImageApiSelector", + "region": "4164,352,3702,5420" + } + } + ], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270/full/full/0/default.jpg", + "type": "Image", + "service": { + "type": "ImageService2", + "id": "https://dlc.services/thumbs/7/21/bdd5d699-94f9-465c-ae4a-d5d209f3c270", + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 756, + "sizes": [ + { + "width": 100, + "height": 74 + }, + { + "width": 200, + "height": 148 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 1024, + "height": 756 + } + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59#xywh=124,624,205,298", + "type": "Canvas" + } + ], + "summary": { + "en": [ + "Researchers found that people they deemed creative preferred messy and asymmetrical figures, while randomly selected university students tended to prefer simple, linear, and sym­metrical figures. The psychologists concluded creative people had a higher “tolerance for ambiguity,” though the result might also have been because the creative group, which included successful architects and writers, was more likely to have a learned taste for modern art." + ] + }, + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + } + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "body": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254/specificResource", + "type": "SpecificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 6237, + "width": 8713, + "label": { + "en": [ + "-" + ] + }, + "service": { + "type": "ImageService2", + "id": "https://dlc.services/iiif-img/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "protocol": "http://iiif.io/api/image", + "width": 8713, + "height": 6237, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 733 + }, + { + "width": 400, + "height": 286 + }, + { + "width": 200, + "height": 143 + }, + { + "width": 100, + "height": 72 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + }, + "selector": { + "type": "iiif:ImageApiSelector", + "region": "4415,422,3758,5440" + } + } + ], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f/full/full/0/default.jpg", + "type": "Image", + "service": { + "type": "ImageService2", + "id": "https://dlc.services/thumbs/7/21/9be87962-0977-4b05-9012-c3a0061ced9f", + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 733, + "sizes": [ + { + "width": 100, + "height": 72 + }, + { + "width": 200, + "height": 143 + }, + { + "width": 400, + "height": 286 + }, + { + "width": 1024, + "height": 733 + } + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59#xywh=365,622,205,296", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + }, + "summary": { + "en": [ + "Traditionally, psychologists used ink blot tests to peer into peoples’ subconscious. Creativity researchers were interested not in the underlying meaning of what their subjects saw in the random shapes but rather their originality, which researchers quantified to calculate a measure of creative ability." + ] + } + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "body": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee/specificResource", + "type": "SpecificResource", + "source": { + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 6452, + "width": 8840, + "label": { + "en": [ + "-" + ] + }, + "service": { + "type": "ImageService2", + "id": "https://dlc.services/iiif-img/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "protocol": "http://iiif.io/api/image", + "width": 8840, + "height": 6452, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 747 + }, + { + "width": 400, + "height": 292 + }, + { + "width": 200, + "height": 146 + }, + { + "width": 100, + "height": 73 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + }, + "selector": { + "type": "iiif:ImageApiSelector", + "region": "4479,548,3718,5404" + } + } + ], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04/full/full/0/default.jpg", + "type": "Image", + "service": { + "type": "ImageService2", + "id": "https://dlc.services/thumbs/7/21/4ae24fbb-cc11-4dbd-ae68-2a2951380b04", + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 747, + "sizes": [ + { + "width": 100, + "height": 73 + }, + { + "width": 200, + "height": 146 + }, + { + "width": 400, + "height": 292 + }, + { + "width": 1024, + "height": 747 + } + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59#xywh=603,622,203,293", + "type": "Canvas" + } + ], + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + }, + "summary": { + "en": [ + "Drawing completion tests were commonly used in creativity studies. Although creativity and art were closely associated, these tests were scored not on the test-taker’s artistic ability, but rather on the originality and elaborateness of their responses." + ] + } + }, + { + "motivation": [ + "painting" + ], + "type": "Annotation", + "body": [ + { + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 6423, + "width": 8722, + "label": { + "en": [ + "-" + ] + }, + "service": [ + { + "type": "ImageService2", + "id": "https://dlc.services/iiif-img/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "protocol": "http://iiif.io/api/image", + "width": 8722, + "height": 6423, + "tiles": [ + { + "width": 256, + "height": 256, + "scaleFactors": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ] + } + ], + "sizes": [ + { + "width": 1024, + "height": 754 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 200, + "height": 147 + }, + { + "width": 100, + "height": 74 + } + ], + "profile": [ + "http://iiif.io/api/image/2/level1.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "native", + "color", + "gray" + ], + "supports": [ + "regionByPct", + "sizeByForcedWh", + "sizeByWh", + "sizeAboveFull", + "rotationBy90s", + "mirroring", + "gray" + ] + } + ] + } + ] + } + ], + "thumbnail": [ + { + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a/full/full/0/default.jpg", + "type": "Image", + "service": { + "type": "ImageService2", + "id": "https://dlc.services/thumbs/7/21/00298292-8c7a-4939-b153-bef45c24160a", + "protocol": "http://iiif.io/api/image", + "profile": [ + "http://iiif.io/api/image/2/level0.json", + { + "formats": [ + "jpg" + ], + "qualities": [ + "color" + ], + "supports": [ + "sizeByWhListed" + ] + } + ], + "width": 1024, + "height": 754, + "sizes": [ + { + "width": 100, + "height": 74 + }, + { + "width": 200, + "height": 147 + }, + { + "width": 400, + "height": 295 + }, + { + "width": 1024, + "height": 754 + } + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59#xywh=77,21,787,577", + "type": "Canvas" + } + ], + "summary": { + "en": [ + "Researchers at Berkeley’s IPAR asked subjects to create mosaics with colored tiles. The examples on the left were produced by the “non-creative” control group of randomly selected students, while those on the right were produced by prominent figures rated highly creative by their peers. The researchers concluded that creative people naturally prefer asymmetrical figures." + ] + }, + "label": { + "en": [ + "Sidney J. Parnes and Harold F. Harding eds., The Sourcebook for Creative Thinking, 1962" + ] + } + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/list/a9af9f68-5adb-0db6-3826-40b3c8e3ffaf" + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59", + "behavior": [ + "w-6", + "h-6" + ], + "annotations": [ + { + "type": "AnnotationPage", + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations", + "items": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/35", + "type": "Annotation", + "motivation": [ + "describing" + ], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/92fab8fb-2fff-9abe-f901-f07122318a1c", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + } + ], + "body": [] + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/36", + "type": "Annotation", + "motivation": [ + "describing" + ], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/27efc122-6e41-0792-dcfe-aa001147d254", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + } + ], + "body": [] + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/37", + "type": "Annotation", + "motivation": [ + "describing" + ], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/3c6f823d-4999-2cd7-d7a8-3ff9209f6dee", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + } + ], + "body": [] + }, + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/canvas/66dc7c31-e263-79bc-08a7-43a5f6e6ad59/annotations/38", + "type": "Annotation", + "motivation": [ + "describing" + ], + "target": [ + { + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/annotation/742f09f4-1005-6fb1-0a56-7b2967a9c627", + "type": "Annotation", + "motivation": [], + "body": [], + "target": [] + } + ], + "body": [] + } + ] + } + ] + } + ], + "id": "https://heritage.tudelft.nl/iiif/inventing-creativity/manifest", + "homepage": [ + { + "id": "https://heritage.tudelft.nl/nl/exhibitions/inventing-creativity", + "type": "Text", + "format": "text/html", + "language": [ + "nl" + ] + }, + { + "id": "https://heritage.tudelft.nl/en/exhibitions/inventing-creativity", + "type": "Text", + "format": "text/html", + "language": [ + "en" + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/ghent-choices.json b/fixtures/3-to-4-converted/presentation-3/ghent-choices.json new file mode 100644 index 0000000..ac9b7ea --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/ghent-choices.json @@ -0,0 +1,11476 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219", + "type": "Manifest", + "label": { + "en": [ + "O.0219" + ] + }, + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas", + "label": { + "en": [ + "O.0219" + ] + }, + "height": 6270, + "width": 2551, + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/layers", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/layers", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorB", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorB" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedA", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedA" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorA", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorA" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Sketch01Soft" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedC", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedC" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorD", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorD" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Color00", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Color00" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_Sketch01Hard" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ColorC", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ColorC" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedD", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedD" + ] + } + }, + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB/full/full/0/default.jpg", + "type": "Image", + "height": 6270, + "width": 2551, + "service": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/images/cune-iiif-orm:testset:O.0219:O.0219_ShadedB", + "type": "ImageService2", + "profile": "level2" + } + ], + "format": "image/jpeg", + "label": { + "en": [ + "cune-iiif-orm:testset:O.0219:O.0219_ShadedB" + ] + } + } + ] + } + ], + "target": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation-page/sign-annotations", + "type": "AnnotationPage", + "items": [ + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "1(u)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1" + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c426144a-b36b-4503-bcf6-7a0c36edd371", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "1(asz)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b053d88-5bce-49ff-aba9-104bd645b279", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "iku", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0417f494-13e9-4e95-8fff-1040c5e1ce86", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e691a439-a30a-4d67-9828-f0718b07af62", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sza3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2b34febc-4ae0-4dd0-a7e6-d5e023d4bdb2", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{gisz}", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23e7b773-92e0-4bef-afdc-5a923dd68111", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "kiri6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e968c19-e4a0-4120-a94c-8bcc867c99e3", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#24ed6b89-1364-4ca6-b9d9-44b2572dd6b7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9738e9ac-3873-4683-9210-c658ced8d0b1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sza3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1d500524-b74c-4e07-89ba-5d3d90a3e3c3", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c455ecf-9d52-41b3-b010-d12b9aba3c5c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#38d7bccb-b518-4dd2-96cd-c2321bff1241", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6d7b7f5-16c5-4b2b-b65b-110522cd683e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ia", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#67ae185f-fb06-4d0b-bf59-41fc71c12f0f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "u3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b290be0-3502-491a-adfe-efa45cef0dd8", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdcd0efb-7ef4-4699-a5b2-7ea1cd373735", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7319ccb1-d442-400f-bbdb-e70801de6852", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ra", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2d4ba567-31dd-47fb-a3c4-f0d92f350456", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "am", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4ba32aa7-c882-465a-b1e0-48a826717b29", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "tum", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7cb2d6e5-782d-4cfc-a33e-f47afb87da8a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sag", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80fc4205-8d91-49a6-ab75-a150e1f63e5f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "1(disz)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d8d7312-874b-4183-80b4-5a910a1e2404", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "kam", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a95d7c2-3e6c-493f-853c-b949eba94f83", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "hu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#37d01b14-1bf6-4962-a21c-19936442c3c6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0dced633-9902-4d1e-8a5c-996b3befab70", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#77b00339-3d34-437f-b161-d8a488ee6377", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a83bb45-e1da-407a-8125-09d5147d9cb1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sag", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2f5d68-07c1-4f80-b29f-484fbee6171b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "2(disz)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5" + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#210e2dcd-3ca2-43dc-908d-48b379b89458", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "kam", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5305137e-c099-4142-a7f7-cd99a4882ca6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2da3bd88-400e-4ddd-904c-3cc26c4101c9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#76a47021-848c-4475-8492-23504234b2b6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#32c11fd9-21ce-4a6b-9d46-a2e72b3026d2", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "el", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#541f884b-aec8-4ae0-9d65-7779ba968178", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc72ab91-ec7e-41cd-8850-96d861eaa620", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6ca4fe58-710e-4a28-b844-a09626549a62", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szam2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3396511f-bb35-4331-af10-497bd56ec44f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "til", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3dbc632d-c1d8-4cce-9ccc-ea66a818ba35", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#806a9bad-1f85-4c53-977c-445ac56d5d70", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bcf228f8-732f-4308-a548-970c0ccef28f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sze3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5c8881c-73d0-4e8d-b8fd-c0cb221a7237", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "1(u)", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2dfb00e8-e9c0-4dc3-be34-0ecc5f55760d", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "gin2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8c6fc70e-d799-4517-9f12-d80f666b9e44", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ku3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f87cc403-6b47-4bfe-8ebc-1f0e9e7ffa35", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "babbar", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bdea0ad3-1d2a-4ab4-897a-d8b743a784e6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0693f74e-4d6d-4500-8f87-be5ea22e2be6", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1838cc4-d0bf-413b-bed9-178cb0f0ef85", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#05fb6483-1848-4e95-884d-90596ffa0727", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ki", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#822f3bc4-5944-4486-8556-800f5b61ef17", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d63ac510-62c7-440e-9e02-8a1187c9b2b4", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{gisz}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d0674eb3-34a9-4708-b80e-3fed6582db6f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "gigir", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f5867d69-9282-43c5-afb9-5ce18a9d54bf", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#30b10b87-2944-4e75-9999-b9c2fef8b1ac", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2afa342c-7dbd-431b-ae11-740fecf3bb26", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07ab3be6-829b-4336-83d7-5d98cd36f336", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ia", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65b92dc8-0da0-4c13-bde5-1609c2c665c5", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cc0cc404-632f-4cec-b863-7b6653bb7548", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1ba510b3-08b3-4d5d-b8ca-aa98959135a4", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sa10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f190fcab-6b54-464b-94d2-98981b8cbf62", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "u4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af084012-ad9e-4344-b57f-f3918dd7e962", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "kur2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b31d5f01-2ceb-460f-98fd-316c4daad229", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sze3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e3f038b1-3aa4-41b8-a7b6-01c02a7e7e57", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "inim", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e18ed6b-b3c0-4d6e-aa56-aff45616515a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a99766b2-be55-400b-97c0-72ba76c52973", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ga2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6d0797c8-815f-45a7-a09a-c6569327fe56", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ga2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#073006f2-c233-40e7-b4e6-8fb57bcb3879", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "front" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#876c9690-7aa9-4387-a05a-520bcd7dbeeb", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ma", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#927ea45d-66d3-41cf-ba79-1def1221a11c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e6572b26-5574-4898-8f73-8bcba06dbf84", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "lugal", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5ee31f96-5896-47c9-985d-f5338cb52fd9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "mar2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#10708a15-3b93-4e64-882d-6d3bfdcd8e90", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "da", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6be60fef-ff06-4693-a71b-ee9e21bef8a5", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "u3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d2fefdc4-c268-47b5-94c3-a7d0eb5760dc", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "su", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c505c508-3977-42e2-a3cc-8cbb62a4a739", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "mu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#81692287-3ebd-482a-b1de-36c492604d2a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#15e5f14a-3700-477a-b1db-2ffce10c34a0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0ce92c79-7e45-45a4-b6d7-cf877ea570a4", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "hi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af566a2c-85e8-43b3-9043-3ea118cf3dc0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "im", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d380a28-0568-491d-acff-93a7ead798f5", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "in", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9d3fcca5-75d4-4a7f-ad2b-8ab7e51cb7d7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d32f19ed-ab81-4813-9bb1-a89501b094ee", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ru", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#50c50634-3f5e-4203-9867-1ab6f6a13819", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "de3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#8d823b8e-9a7d-4f4e-ab3e-2babfcbf9b50", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "esz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#23fbfc92-a856-4e7b-a6ba-c2b8223809bc", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#39d37237-4d50-47f9-9c50-4126720f175c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sza", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e467dad2-23ad-4ca4-9e90-c3f41f1021e3", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#07b7c131-b110-41d4-9bf1-cc940481df55", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "gi4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6fa133b2-044e-4063-a3f4-0c782c31a502", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ri", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#65815467-3fc8-4239-87fc-1d3bb8ba4e14", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "is", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b9eeef4e-2030-478a-a40a-4979b1c35739", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1fbdcad7-a202-4371-a75e-2a4ecb6053be", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "mil", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#74b5481c-25c5-430c-be1a-58cad8ac5528", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9abac41e-6425-429d-bcd8-892b21327387", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4c35868f-c81a-4753-944a-539feee43e63", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#42461aee-9590-45b7-a1a7-855b74e63ba8", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d346108a-c810-4b9b-823d-aecfcbe77727", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b6a937a5-bdc9-4c1e-9984-c0d331439056", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0e45fc02-5fbc-4be6-b690-51f3898ef060", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f031b2a7-5b60-4863-b05a-9e1f7594bb52", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6a0114f0-b36c-4d40-a81e-8ddbd89fe21c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e173ee15-1c11-40a3-9dd2-e6ef701b8947", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aee3ca12-8ec6-49d7-83d0-12a6e17285a1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e84bb7d-aa50-4735-bfb1-b9f9c2bb5a3c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d1bd19a-e978-4f89-baa6-e33b4d929835", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70abf5c6-7744-446a-97fd-d89b0719d94d", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#64333bd0-a3eb-4e69-9005-974318dac169", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3b1f5534-834b-4464-a0b4-5359ab2cddfb", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ku3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#71b0179a-dd7a-4e60-af1a-0279413b0db7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1302ab52-cb83-4a75-bed1-5d4a99718ab9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nin", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a9f9b8e0-51db-4b1a-960b-d99f0e827279", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szubur", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4a4f053d-9e76-48f7-b56f-9e5ff2df1c6c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#df6ded75-b0a5-4028-acb6-2a571bab5f6b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dingir§", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c09403f7-8b7b-4e1e-91ba-280c7a59abff", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#97a9e37f-4b8a-4ccd-8c55-94f080089ca9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c6542cf0-1211-4d13-bcf2-3721b1276586", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c01b49e-9ebf-4099-ba4c-62e50487d501", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3d80430-4564-40aa-abf6-9fff6589b2e0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0b6e287a-d3d1-407a-9b31-930d422a709b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#317696fa-36a9-4563-8537-e2c8580f3d84", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + }, + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "li", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#835f3152-5f51-4e2f-aeac-88e23c7a6b2c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "di", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aaeb970d-84f7-463b-af62-4869ee27efb5", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "isz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#af26748b-12dc-493f-a3a6-21b7fcd4600b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2ee73f5a-13db-4ab5-bd9b-628921c68da9", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dingir", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#0c80ce22-1942-4985-a46d-03e8d57f1b9a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6c62ae29-4532-454e-a00e-f7d932ccf114", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#45c38035-5a82-4b8c-b166-b10b1bb57dd7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fb94bb47-0e7b-4554-abb2-179895703fd1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cf62d6db-166f-4958-be1f-fb948a5ee5da", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5e25a0-cb01-40e4-be2a-3262bbbaa58a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "be", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f1b292ad-f85f-4291-a16c-2c8e77827521", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "el", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6e6ddbb1-9428-4f9d-b2cf-923443711776", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ti", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e1440654-a3ea-4153-acfe-1c5e5d635368", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1f5487b6-3f53-4096-8327-d32adf2d4e83", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szesz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9ccbe406-284d-4489-8f67-26f13fd6198a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#63c34d01-57af-4a13-b46d-d22d801f165b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b984046e-66f3-4c31-88fd-bd1cb1a80f7e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ca06ec7e-f77c-4e28-9f2c-914bd6ea1950", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ib", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#1e07d2a8-6fe5-42dd-ae70-80e543f0afea", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ni", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#90dfa187-04fa-4367-a350-16ed7be05093", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ir3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ba97ca65-b53f-472e-9f61-231aca8dfe5f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ra", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#29c3f876-ba2a-4013-bba2-8df180f48023", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#25945214-963a-4d3a-8bc2-367b9f300da2", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f7e6c92a-7cdc-4478-825b-922494b79b92", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5b5ed5e0-c085-4b46-bf08-12a92d6a446d", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Wordindex", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f496d0ec-88dc-4b1c-9a2e-7ff53ea58741", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "asz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#b024d758-053e-463a-86e7-1d4a7751d4e2", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#bf7632f3-9287-463e-b432-8154323976dc", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ae689a4b-5837-4631-9058-17aeea33e53e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ku", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecb18e32-0c93-4f79-a194-3ef77090ed9d", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#aa2e9c9c-11ff-4ce3-ba90-abea327f5559", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c2f22535-26e9-4bd8-87ba-3a772b80c5cc", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "hu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4210808b-82fe-4ac6-a981-c2aa927858c0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#70748999-5ec1-4827-8e81-8203d4c9569c", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ad7b2655-b685-4571-be23-30126ab4c4c4", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#2a942048-86a9-4781-9f68-f01bc0e04fe8", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#575ce70e-b72d-4c62-aa38-ae8b4494a003", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "en", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3f337d58-2622-43b2-a5b8-e53391eee97a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#4d069d60-2feb-4b04-9cc8-72c85a7d8a27", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "gal", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72f18670-2f06-46ed-92f4-c4357ba70177", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "zu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#03482e0c-9483-4a9e-bb97-a44504ec833b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3a73cf29-a306-4a3f-a7c5-04ae3f6c52c1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ar", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9e5207d6-020e-46ed-938f-333da54373fd", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "wi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#e9e6ac96-efa5-478a-a72a-2c01779ecee1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "um", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#35b2366d-207f-4e2b-b21d-9b17c4d47f42", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dub", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#fc9ac66f-885c-4ee3-a6db-f79e4478d1b7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "sar", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#720dae2c-285b-4398-81ca-1142c5b672b0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "igi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#d815aeb4-74a1-4fe9-9ac6-6c9f2e58e81a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#9bf50a63-990d-45e3-bb05-4685db321108", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bi", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c5d488d9-0a05-447f-bbc6-1fe7e781921b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#c34c61ca-b895-4d5e-8089-09c330b566dd", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#be02179c-d033-407c-b191-75d03abd52f7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "szu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ec78d225-ddb9-4ea8-ad54-478cabddbc5f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dumu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#cd00e814-8bd3-4acd-9d19-bb60cf73f299", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "i3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#ecbcce6d-0230-4828-a8cc-112042775c84", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "li2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#a3e0f777-5e22-4d02-810b-5ce99f44f220", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ba", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "10", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7e2aa440-df60-453a-a483-91a793c93df1", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "asz", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "11", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#295c95ec-78bb-456e-995a-5bdb450f5efb", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ur", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#55ea7e7a-f613-47f3-8cf0-f038b5a14ec7", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "la", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#5e4c4209-9d11-41ad-91f9-be3bf1f856e0", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "ku", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "12", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "14", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#34510804-6274-4945-8031-9b45b7dc7125", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "du8", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#435c513d-49d8-4c48-a3a6-60b8844f062a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "a" + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "back" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "13", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#3592f0da-5e25-49b8-9093-d9a370c95159", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "za", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#f3924d78-17c7-4199-b9ab-2e22e4a62463", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "bara2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "5", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top", + "dimensions": { + "x": 2034, + "y": 5000 + } + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#788c96d3-8e31-4b7c-8283-b9a2b884e84f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "{d}", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "6", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6b3af227-90fd-4ceb-a837-edfb2efe549b", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "nin", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "7", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#72d14cca-2b9a-4399-8817-8b5c536dac3f", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "mu", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#7a77b427-fec8-4489-8edd-962d1271826e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "na", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "3", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#80957bda-f6a9-4267-96ee-2a175f3af61a", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "dim2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "2", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "4", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#49bfcf04-50c4-4e87-a983-a6c922d3855e", + "motivation": [ + "tagging" + ] + }, + { + "type": "Annotation", + "body": [ + { + "type": "TextualBody", + "purpose": "Transliteration", + "value": "re", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Column", + "value": "" + }, + { + "type": "TextualBody", + "purpose": "Line", + "value": "1", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "Charindex", + "value": "9", + "dimensions": { + "x": 2034, + "y": 5000 + } + }, + { + "type": "TextualBody", + "purpose": "TabletSide", + "value": "top" + } + ], + "target": [ + { + "source": { + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "id": "https://iiif.ghentcdh.ugent.be/iiif/manifests/cune-iiif-orm:sde:O.0219/canvas/0001/annotation/#6500d6b9-de49-4fdb-83a7-ccab7d0ef59a", + "motivation": [ + "tagging" + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/has-part.json b/fixtures/3-to-4-converted/presentation-3/has-part.json new file mode 100644 index 0000000..8ddf73c --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/has-part.json @@ -0,0 +1,67 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Picture of Göttingen taken during the 2019 IIIF Conference" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Canvas with a single IIIF image" + ] + }, + "thumbnail": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg" + } + ], + "height": 3024, + "width": 4032, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3024, + "width": 4032, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/918ecd18c2592080851777620de9bcb5-gottingen", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0005-image-service/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/ldmax.json b/fixtures/3-to-4-converted/presentation-3/ldmax.json new file mode 100644 index 0000000..92d6420 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/ldmax.json @@ -0,0 +1,537 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json", + "type": "Manifest", + "label": { + "nl": [ + "De familie van Grenthe, het kippenvrouwtje" + ] + }, + "metadata": [ + { + "label": { + "nl": [ + "Datum gemaakt" + ] + }, + "value": { + "nl": [ + "2025-06-05T15:01:51" + ] + } + }, + { + "label": { + "nl": [ + "Datum gewijzigd" + ] + }, + "value": { + "nl": [ + "2025-06-05T15:14:31" + ] + } + }, + { + "label": { + "nl": [ + "dateCreated" + ] + }, + "value": { + "nl": [ + "1938" + ] + } + }, + { + "label": { + "nl": [ + "beschrijving" + ] + }, + "value": { + "nl": [ + "De kunstenares maakte zes illustraties voor het sprookje 'Grethe het kippenvrouwtje' van H.C. Andersen." + ] + } + }, + { + "label": { + "nl": [ + "identificatie" + ] + }, + "value": { + "nl": [ + "00002" + ] + } + }, + { + "label": { + "nl": [ + "itemLocatie" + ] + }, + "value": { + "nl": [ + "KO.rek06.40" + ] + } + }, + { + "label": { + "nl": [ + "naam" + ] + }, + "value": { + "nl": [ + "De familie van Grenthe, het kippenvrouwtje" + ] + } + } + ], + "summary": { + "nl": [ + "De kunstenares maakte zes illustraties voor het sprookje 'Grethe het kippenvrouwtje' van H.C. Andersen." + ] + }, + "thumbnail": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + }, + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183/full/!250,250/0/default.jpg", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ], + "viewingDirection": "right-to-left", + "behavior": [ + "paged" + ], + "rights": "http://creativecommons.org/licenses/by/4.0", + "requiredStatement": { + "label": { + "en": [ + "Attribution" + ], + "nl": [ + "Naamsvermelding" + ] + }, + "value": { + "en": [ + "Provided by Museum Kranenburgh" + ], + "nl": [ + "Aangeboden door Museum Kranenburgh" + ] + } + }, + "provider": [ + { + "id": "http://www.museumkranenburgh.nl", + "type": "Agent", + "label": { + "none": [ + "Museum Kranenburgh" + ] + }, + "seeAlso": [ + { + "id": "https://www.ldmax.nl/organisaties/q4350196.jsonld", + "type": "Dataset", + "format": "application/ld+json", + "profile": "https://schema.org/" + }, + { + "id": "https://www.ldmax.nl/organisaties/q4350196.ttl", + "type": "Dataset", + "format": "text/turtle", + "profile": "https://schema.org/" + }, + { + "id": "https://www.ldmax.nl/organisaties/q4350196.nt", + "type": "Dataset", + "format": "application/n-triples", + "profile": "https://schema.org/" + } + ] + } + ], + "homepage": [ + { + "id": "https://www.ldmax.nl/datasets/q4350196/triples?subject=https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71", + "type": "Text", + "label": { + "nl": [ + "Detailpagina" + ] + }, + "format": "text/html" + } + ], + "partOf": [ + { + "id": "https://www.ldmax.nl/datasets/q4350196.jsonld", + "type": "Collection" + } + ], + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "type": "Canvas", + "label": { + "none": [ + "p. 1" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/1/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.180", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2", + "type": "Canvas", + "label": { + "none": [ + "p. 2" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/2/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.178", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3", + "type": "Canvas", + "label": { + "none": [ + "p. 3" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/3/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.179", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4", + "type": "Canvas", + "label": { + "none": [ + "p. 4" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/4/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.15370", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5", + "type": "Canvas", + "label": { + "none": [ + "p. 5" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/5/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.182", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + }, + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6", + "type": "Canvas", + "label": { + "none": [ + "p. 6" + ] + }, + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6/annotation", + "type": "AnnotationPage", + "height": 1000, + "width": 750, + "items": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6/annotation/image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "target": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6", + "type": "Canvas" + } + ], + "body": [ + { + "id": "https://n2t.net/ark:/67039/a5b1a9b3dad04c24b01bc7415beb8b71/iiif.json#/canvas/6/body", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://ndeiiif.adlibhosting.com/iiif/3/Q4350196.183", + "type": "ImageService3", + "profile": "level3" + } + ] + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/ocean-liners.json b/fixtures/3-to-4-converted/presentation-3/ocean-liners.json new file mode 100644 index 0000000..09cdbb0 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/ocean-liners.json @@ -0,0 +1,387 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.vam.ac.uk/collections/O1023003/manifest.json", + "type": "Manifest", + "behavior": [ + "individuals" + ], + "items": [ + { + "items": [ + { + "items": [ + { + "body": [ + { + "service": [ + { + "profile": "level1", + "id": "https://framemark.vam.ac.uk/collections/2013GU2911", + "type": "ImageService2" + } + ], + "format": "image/jpeg", + "height": 6000, + "width": 3788, + "type": "Image", + "id": "https://framemark.vam.ac.uk/collections/2013GU2911/full/full/0/default.jpg" + } + ], + "motivation": [ + "painting" + ], + "type": "Annotation", + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "type": "Canvas" + } + ], + "id": "https://iiif.vam.ac.uk/collections/O1023003/anno/a1" + } + ], + "type": "AnnotationPage" + } + ], + "label": { + "en": [ + "Object image 0" + ] + }, + "width": 3788, + "height": 6000, + "type": "Canvas", + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0", + "annotations": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a1", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

First-class lounge

First-class public rooms were located in the centre of the ship – the most stable and comfortable areas on board. The Aquitania's opulent interiors were inspired by classical architecture – spot the Ionic columns in the lounge. Architect Arthur Davis recommended the use of plaster and papier-mâché for ceilings, domes, and other decorative moulding, but advised against using marble and brickwork, as these would make the ship top-heavy.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=1800,2000,500,500", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a2", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Garden lounge

“As cool, as restful, as any terrace overlooking a rose-garden.” (The New Art of Going Abroad, 1929). Overlooking the sea and decorated with palms, the garden lounge was a fashionable place to have tea and was sometimes used for dancing.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=3000,2100,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a3", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

First-class restaurant

Dining on ocean liners was a radically different experience depending on the class of travel. In first class, the Aquitania’s Louis XVI-style dining room offered seating in small isolated groups, echoing elegant restaurants on land. The ship’s architect, Arthur Davis, explained that a “cheerful room with comfortable surroundings” was a necessary distraction from “the often very unpleasant conditions” at sea.

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=2000,2800,400,400", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a4", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

First-class state room

The Aquitania’s first-class cabins were designed by architect Arthur Davis, whose firm, Mewès and Davis Architects, had decorated the famously opulent Ritz hotels in Paris and London. The cabins were “as spacious as a bedroom at the Ritz or the Barclay. The walls are panelled in grey silk. The carpets are vibrant blue and yellow, as are also the striped silk chair coverings. Note the bath – just off-stage, and the electric heater”. (The New Art of Going Abroad, 1929).

Photograph from The New Art of Going Abroad, 1929, US. National Art Library: 38041986015030. © Victoria and Albert Museum, London

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=1400,2500,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a5", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Third-class dining saloon

While extravagant dishes and refined delicacies were served in first class, third-class meals were less sophisticated. A third-class lunch on a Cunard ship in the 1920s could include rice soup, boiled haddock or braised beef with cabbage, boiled potatoes, bread and ‘cabin biscuits’, followed by bread and butter pudding. To save space, passengers sat at long communal tables on chairs bolted to the floor, in case of bad weather.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=2450,3800,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a6", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Third-class four berth room

Liners were strictly organised spaces which reflected social hierarchies. Although people travelling in third class could account for 60% of the total number of passengers, they were segregated into a relatively small space in the lower decks of the ship, close to the noisy engine room. These four-berth rooms had none of the luxurious furnishings or fabrics found in first class, but they were an improvement on the communal sleeping quarters provided for steerage-class passengers on earlier liners.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=800,3500,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a7", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Boiler room

In 1919 the Aquitania was refitted and converted from coal-burning to oil-burning engines, which meant fewer crew were required to labour in the engine room.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=2500,4500,500,800", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a8", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Stores

Ocean liners required huge quantities of food, enough for all crew and passengers – the equivalent to feeding a floating city. Cunard catered for varied tastes. Provisions for one trip included 500 sheep kidneys, 400 ox tails, 800 tongues and large quantities of frogs’ legs, as well as geese, turkey, duck, game and “75 heads of cattle and calfs”.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=3000,4000,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a9", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Baggage

Passengers travelling for weeks or months would bring a huge number of trunks, most of which were kept in the baggage store deep in the hull of the ship. Cabins could only accommodate smaller trunks. Louis Vuitton designed the ‘steamer trunk’ specifically to fit under a first-class cabin bed. The baggage store was opened daily so that maids or stewards could collect personal items that were needed during the voyage.

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=2100,4000,100,200", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/annopage/p1/a10", + "type": "Annotation", + "motivation": [ + "describing" + ], + "body": [ + { + "type": "TextualBody", + "value": "

Second-class dining saloon

The second-class spaces, like first class, were decorated in a neo-classical style. “The second-class accommodation on the vessel, though not so sumptuous as the first-class, is still very elaborate and comfortable”, explained the architect. “The dining-room, no less than 104 ft in length and extending across the whole width of the ship, is decorated with paintings adapted from panels by Pergolesi”– the 18th-century decorative artist. (Arthur Davis, The Architectural Review, April 1914)

", + "format": "text/html" + } + ], + "target": [ + { + "id": "https://iiif.vam.ac.uk/collections/O1023003/canvas/c0#xywh=1500,3250,100,200", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ], + "label": { + "en": [ + "Cunard Line - to all parts of the world" + ] + }, + "metadata": [ + { + "value": { + "en": [ + "E.1829-2004" + ] + }, + "label": { + "en": [ + "Museum number" + ] + } + }, + { + "value": { + "en": [ + "Cunard Line - to all parts of the world" + ] + }, + "label": { + "en": [ + "title" + ] + } + }, + { + "value": { + "en": [ + "Chromolithograph travel poster for \"Cunard Line - to all parts of the world\", depicting a cross section of the Aquitania at sea, printed by Thos. Forman & Sons, Nottingham, ca. 1920." + ] + }, + "label": { + "en": [ + "Descriptive Line" + ] + } + }, + { + "value": { + "en": [ + "PDP" + ] + }, + "label": { + "en": [ + "Collection" + ] + } + }, + { + "value": { + "en": [ + "Nottingham (printed)" + ] + }, + "label": { + "en": [ + "Place" + ] + } + }, + { + "value": { + "en": [ + "chromolithograph" + ] + }, + "label": { + "en": [ + "Materials & Techniques" + ] + } + }, + { + "value": { + "en": [ + "ca. 1920 (made)" + ] + }, + "label": { + "en": [ + "Date" + ] + } + }, + { + "value": { + "en": [ + "Posters;Boats and ships;Tourism & Travel" + ] + }, + "label": { + "en": [ + "Categories" + ] + } + }, + { + "value": { + "en": [ + "Chromolithograph travel poster for \"Cunard Line - to all parts of the world\", depicting a cross section of the Aquitania at sea, printed by Thos. Forman & Sons, Nottingham, ca. 1920." + ] + }, + "label": { + "en": [ + "Description" + ] + } + } + ], + "seeAlso": [ + { + "type": "Dataset", + "id": "https://collections.vam.ac.uk/item/O1023003.jsonld", + "@format": "application/ld+json" + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/specific-resource-infer.json b/fixtures/3-to-4-converted/presentation-3/specific-resource-infer.json new file mode 100644 index 0000000..e194be3 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/specific-resource-infer.json @@ -0,0 +1,284 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest", + "type": "Manifest", + "label": { + "none": [ + "Schist Buddha Triad (year 5)" + ] + }, + "metadata": [ + { + "label": { + "none": [ + "Creator" + ] + }, + "value": { + "none": [ + "Ian David McCrabb" + ] + } + }, + { + "label": { + "none": [ + "Date Created" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Modified" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Published" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:19.000000Z" + ] + } + } + ], + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas", + "label": { + "none": [ + "Year 5 Buddha Triad" + ] + }, + "summary": { + "none": [ + "Year 5 Buddha Triad" + ] + }, + "width": 8058, + "height": 9856, + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 8058, + "height": 9856, + "service": [ + { + "id": "https://w3id.org/iaw/images/iiif/01HM54MGYC39W9MZ32YD4GJ59D", + "type": "ImageService3", + "profile": "level2" + } + ] + } + ], + "target": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13", + "type": "AnnotationPage", + "label": { + "none": [ + "Annotations" + ] + }, + "metadata": [ + { + "label": { + "none": [ + "Identifier" + ] + }, + "value": { + "none": [ + 13 + ] + } + }, + { + "label": { + "none": [ + "Creator" + ] + }, + "value": { + "none": [ + "Ian David McCrabb" + ] + } + }, + { + "label": { + "none": [ + "Date Created" + ] + }, + "value": { + "none": [ + "2024-01-14T23:24:01.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Modified" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:10.000000Z" + ] + } + }, + { + "label": { + "none": [ + "Date Published" + ] + }, + "value": { + "none": [ + "2024-01-15T00:45:10.000000Z" + ] + } + } + ], + "items": [ + { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/images/38/annotation-sets/13/annotations/170", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "created": "2024-01-14T23:24:15.000000Z", + "modified": "2024-01-14T23:24:15.000000Z", + "target": [ + { + "source": { + "id": "https://w3id.org/iaw/data/publications/image-sets/01hm598yb6hc3s7btmqth813mg/manifest/canvases/38", + "type": "Canvas" + }, + "selector": { + "type": "SvgSelector", + "value": "" + }, + "type": "SpecificResource" + } + ], + "body": [ + { + "type": "TextualBody", + "purpose": "describing", + "language": "en", + "format": "text/plain", + "value": "Title: Hair" + }, + { + "type": "TextualBody", + "purpose": "describing", + "language": "it", + "format": "text/plain", + "value": "Title: Capelli" + }, + { + "type": "TextualBody", + "purpose": "describing", + "language": "en", + "format": "text/plain", + "value": "Description: Buddha's hair, with an uṣṇīṣa." + }, + { + "type": "TextualBody", + "purpose": "tagging", + "language": "en", + "format": "text/plain", + "value": "Tag: [hair parted in middle with lateral continuous waves; separate uṣṇīṣa](https://w3id.org/diga/terms/1940192311)\nVocabulary: [DiGA - The Digitization of Gandharan Artefacts Thesaurus](https://diga.skosmos.ub.rub.de/thesaurus/en/)\nData: {\"trace\":[{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"figures\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"literay persons\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"buddha\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"buddha: general features\"},{\"key\":\"https:\\/\\/w3id.org\\/diga\\/terms\\/1940192311\",\"label\":\"hair of buddha\"}]}" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Note: (Harle 1974, 132) “wavy, rolling up and inwards from the hairline on either side of a central little almond-shaped dividing point”" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Note: (Mitterwallner 1987, 217) “rendered in a systematized manner in the form of semi-circles… bound by a band”" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Note: (Guy 2022, 97) “his uncut hair is drawn back in prominent waves and tied up to form a large chignon-ushnisha”" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Attribution: Allon 2022" + }, + { + "type": "TextualBody", + "purpose": "commenting", + "language": "en", + "format": "text/plain", + "value": "Date: 1970-01-01" + }, + { + "type": "TextualBody", + "purpose": "classifying", + "language": "en", + "format": "text/plain", + "value": "Line Color: Medium" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/start-canvas.json b/fixtures/3-to-4-converted/presentation-3/start-canvas.json new file mode 100644 index 0000000..da16079 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/start-canvas.json @@ -0,0 +1,256 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Multiple Related Images (Book, etc.)" + ] + }, + "start": { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + }, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "height": 4613, + "width": 3204, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "Frontispiece" + ] + }, + "width": 3186, + "height": 4612, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p2", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "Title page" + ] + }, + "width": 3204, + "height": 4613, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p3", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "Blank page" + ] + }, + "width": 3174, + "height": 4578, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p4", + "type": "Canvas" + } + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "Bookplate" + ] + }, + "width": 3198, + "height": 4632, + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/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": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0202-start-canvas/canvas/p5", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/wellcome-p3-2.json b/fixtures/3-to-4-converted/presentation-3/wellcome-p3-2.json new file mode 100644 index 0000000..61dac25 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/wellcome-p3-2.json @@ -0,0 +1,4270 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.wellcomecollection.org/presentation/b18035723", + "type": "Manifest", + "label": { + "en": [ + "Wunder der Vererbung / von Fritz Bolle." + ] + }, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2", + "type": "ImageService2" + } + ] + } + ], + "homepage": [ + { + "id": "https://wellcomecollection.org/works/krqp99r9", + "type": "Text", + "label": { + "en": [ + "Wunder der Vererbung / von Fritz Bolle." + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "metadata": [ + { + "label": { + "en": [ + "Publication/creation" + ] + }, + "value": { + "none": [ + "Murnau ; München : Sebastian Lux, [1951]" + ] + } + }, + { + "label": { + "en": [ + "Physical description" + ] + }, + "value": { + "en": [ + "31 pages : illustrations ; 15 cm." + ] + } + }, + { + "label": { + "en": [ + "Contributors" + ] + }, + "value": { + "none": [ + "Bolle, Fritz." + ] + } + }, + { + "label": { + "en": [ + "Type/technique" + ] + }, + "value": { + "en": [ + "Pamphlets" + ] + } + }, + { + "label": { + "en": [ + "Subjects" + ] + }, + "value": { + "en": [ + "Genetics - history" + ] + } + }, + { + "label": { + "en": [ + "Attribution and usage" + ] + }, + "value": { + "en": [ + "Wellcome Collection", + "You have permission to make copies of this work under a Creative Commons, Attribution, Non-commercial license.

Non-commercial use includes private study, academic research, teaching, and other activities that are not primarily intended for, or directed towards, commercial advantage or private monetary compensation. See the Legal Code for further information.

Image source should be attributed as specified in the full catalogue record. If no source is given the image should be attributed to Wellcome Collection.
" + ] + } + } + ], + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "provider": [ + { + "id": "https://wellcomecollection.org", + "type": "Agent", + "label": { + "en": [ + "Wellcome Collection", + "183 Euston Road", + "London NW1 2BE UK", + "T +44 (0)20 7611 8722", + "E library@wellcomecollection.org", + "https://wellcomecollection.org" + ] + }, + "homepage": [ + { + "id": "https://wellcomecollection.org/works", + "type": "Text", + "label": { + "en": [ + "Explore our collections" + ] + }, + "format": "text/html" + } + ], + "logo": [ + { + "id": "https://iiif.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "Image", + "format": "image/png" + } + ] + } + ], + "rendering": [ + { + "id": "https://iiif.wellcomecollection.org/pdf/b18035723", + "type": "Text", + "label": { + "en": [ + "View as PDF" + ] + }, + "format": "application/pdf" + }, + { + "id": "https://api.wellcomecollection.org/text/v1/b18035723", + "type": "Text", + "label": { + "en": [ + "View raw text" + ] + }, + "format": "text/plain" + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/catalogue/v2/works/krqp99r9", + "type": "Dataset", + "profile": "https://api.wellcomecollection.org/catalogue/v2/context.json", + "label": { + "en": [ + "Wellcome Collection Catalogue API" + ] + }, + "format": "application/json" + } + ], + "service": [ + { + "profile": "http://iiif.io/api/search/1/search", + "label": "Search within this manifest", + "service": [ + { + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest", + "id": "https://iiif.wellcomecollection.org/search/autocomplete/v1/b18035723", + "type": "AutoCompleteService1" + } + ], + "id": "https://iiif.wellcomecollection.org/search/v1/b18035723", + "type": "SearchService1" + } + ], + "behavior": [ + "paged" + ], + "services": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#tracking", + "type": "Text", + "profile": "http://universalviewer.io/tracking-extensions-profile", + "label": { + "en": [ + "Format: Monograph, Institution: n/a, Identifier: b18035723, Digicode: diggenetics, Collection code: n/a" + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#timestamp", + "type": "Text", + "profile": "https://github.com/wellcomecollection/iiif-builder/build-timestamp", + "label": { + "none": [ + "2021-04-29T21:58:28.9247406Z" + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723#accesscontrolhints", + "type": "Text", + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "label": { + "en": [ + "open" + ] + } + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2569, + "height": 3543, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg", + "type": "Image", + "width": 73, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 742, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 145, + "height": 200 + }, + { + "width": 290, + "height": 400 + }, + { + "width": 742, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0001.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2/full/742,1024/0/default.jpg", + "type": "Image", + "width": 742, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2569, + "height": 3543, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0001.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0001.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0003.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0003.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0003.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0003.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0003.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0003.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0003.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0003.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0003.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0003.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0004.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0004.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0004.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0004.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0005.JP2", + "type": "Canvas", + "label": { + "none": [ + "2" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0005.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0005.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0005.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0005.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0005.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0005.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0005.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0005.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0005.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 2" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0006.JP2", + "type": "Canvas", + "label": { + "none": [ + "3" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0006.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0006.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0006.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0006.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0006.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0006.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0006.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0006.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0006.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 3" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0007.JP2", + "type": "Canvas", + "label": { + "none": [ + "4" + ] + }, + "width": 2008, + "height": 2736, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0007.JP2/full/73,100/0/default.jpg", + "type": "Image", + "width": 73, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 752, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 147, + "height": 200 + }, + { + "width": 294, + "height": 400 + }, + { + "width": 752, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0007.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0007.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0007.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0007.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0007.JP2/full/752,1024/0/default.jpg", + "type": "Image", + "width": 752, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2008, + "height": 2736, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0007.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0007.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0007.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 4" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0008.JP2", + "type": "Canvas", + "label": { + "none": [ + "5" + ] + }, + "width": 2008, + "height": 2740, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0008.JP2/full/73,100/0/default.jpg", + "type": "Image", + "width": 73, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 750, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 147, + "height": 200 + }, + { + "width": 293, + "height": 400 + }, + { + "width": 750, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0008.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0008.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0008.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0008.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0008.JP2/full/750,1024/0/default.jpg", + "type": "Image", + "width": 750, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2008, + "height": 2740, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0008.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0008.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0008.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 5" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0009.JP2", + "type": "Canvas", + "label": { + "none": [ + "6" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0009.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0009.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0009.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0009.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0009.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0009.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0009.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0009.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0009.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 6" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0010.JP2", + "type": "Canvas", + "label": { + "none": [ + "7" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0010.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0010.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0010.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0010.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0010.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0010.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0010.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0010.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0010.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 7" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0011.JP2", + "type": "Canvas", + "label": { + "none": [ + "8" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0011.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0011.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0011.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0011.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0011.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0011.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0011.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0011.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0011.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 8" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0012.JP2", + "type": "Canvas", + "label": { + "none": [ + "9" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0012.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0012.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0012.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0012.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0012.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0012.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0012.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0012.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0012.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 9" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0013.JP2", + "type": "Canvas", + "label": { + "none": [ + "10" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0013.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0013.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0013.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0013.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0013.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0013.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0013.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0013.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0013.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 10" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0014.JP2", + "type": "Canvas", + "label": { + "none": [ + "11" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0014.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0014.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0014.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0014.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0014.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0014.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0014.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0014.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0014.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 11" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0015.JP2", + "type": "Canvas", + "label": { + "none": [ + "12" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0015.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0015.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0015.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0015.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0015.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0015.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0015.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0015.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0015.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 12" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0016.JP2", + "type": "Canvas", + "label": { + "none": [ + "13" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0016.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0016.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0016.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0016.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0016.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0016.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0016.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0016.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0016.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 13" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0017.JP2", + "type": "Canvas", + "label": { + "none": [ + "14" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0017.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0017.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0017.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0017.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0017.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0017.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0017.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0017.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0017.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 14" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0018.JP2", + "type": "Canvas", + "label": { + "none": [ + "15" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0018.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0018.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0018.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0018.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0018.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0018.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0018.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0018.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0018.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 15" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0019.JP2", + "type": "Canvas", + "label": { + "none": [ + "16" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0019.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0019.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0019.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0019.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0019.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0019.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0019.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0019.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0019.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 16" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0020.JP2", + "type": "Canvas", + "label": { + "none": [ + "17" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0020.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0020.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0020.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0020.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0020.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0020.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0020.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0020.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0020.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 17" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0021.JP2", + "type": "Canvas", + "label": { + "none": [ + "18" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0021.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0021.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0021.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0021.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0021.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0021.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0021.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0021.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0021.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 18" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0022.JP2", + "type": "Canvas", + "label": { + "none": [ + "19" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0022.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0022.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0022.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0022.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0022.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0022.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0022.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0022.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0022.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 19" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0023.JP2", + "type": "Canvas", + "label": { + "none": [ + "20" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0023.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0023.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0023.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0023.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0023.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0023.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0023.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0023.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0023.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 20" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0024.JP2", + "type": "Canvas", + "label": { + "none": [ + "21" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0024.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0024.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0024.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0024.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0024.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0024.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0024.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0024.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0024.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 21" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0025.JP2", + "type": "Canvas", + "label": { + "none": [ + "22" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0025.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0025.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0025.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0025.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0025.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0025.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0025.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0025.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0025.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 22" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0026.JP2", + "type": "Canvas", + "label": { + "none": [ + "23" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0026.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0026.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0026.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0026.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0026.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0026.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0026.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0026.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0026.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 23" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0027.JP2", + "type": "Canvas", + "label": { + "none": [ + "24" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0027.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0027.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0027.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0027.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0027.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0027.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0027.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0027.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0027.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 24" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0028.JP2", + "type": "Canvas", + "label": { + "none": [ + "25" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0028.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0028.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0028.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0028.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0028.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0028.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0028.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0028.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0028.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 25" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0029.JP2", + "type": "Canvas", + "label": { + "none": [ + "26" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0029.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0029.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0029.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0029.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0029.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0029.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0029.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0029.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0029.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 26" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0030.JP2", + "type": "Canvas", + "label": { + "none": [ + "27" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0030.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0030.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0030.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0030.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0030.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0030.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0030.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0030.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0030.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 27" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0031.JP2", + "type": "Canvas", + "label": { + "none": [ + "28" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0031.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0031.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0031.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0031.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0031.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0031.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0031.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0031.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0031.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 28" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0032.JP2", + "type": "Canvas", + "label": { + "none": [ + "29" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0032.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0032.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0032.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0032.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0032.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0032.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0032.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0032.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0032.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 29" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0033.JP2", + "type": "Canvas", + "label": { + "none": [ + "30" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0033.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0033.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0033.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0033.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0033.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0033.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0033.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0033.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0033.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 30" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0034.JP2", + "type": "Canvas", + "label": { + "none": [ + "31" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0034.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0034.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0034.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0034.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0034.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0034.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0034.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0034.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0034.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 31" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0035.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0035.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0035.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0035.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0035.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0035.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0035.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0035.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0035.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0035.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0036.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2411, + "height": 3372, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0036.JP2/full/72,100/0/default.jpg", + "type": "Image", + "width": 72, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 732, + "height": 1024, + "sizes": [ + { + "width": 72, + "height": 100 + }, + { + "width": 143, + "height": 200 + }, + { + "width": 286, + "height": 400 + }, + { + "width": 732, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0036.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0036.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0036.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0036.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0036.JP2/full/732,1024/0/default.jpg", + "type": "Image", + "width": 732, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2411, + "height": 3372, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0036.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0036.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0036.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2231, + "height": 3040, + "thumbnail": [ + { + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0002.JP2/full/73,100/0/default.jpg", + "type": "Image", + "width": 73, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 751, + "height": 1024, + "sizes": [ + { + "width": 73, + "height": 100 + }, + { + "width": 147, + "height": 200 + }, + { + "width": 294, + "height": 400 + }, + { + "width": 751, + "height": 1024 + } + ], + "id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0002.JP2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0002.JP2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.wellcomecollection.org/image/b18035723_0002.JP2/full/751,1024/0/default.jpg", + "type": "Image", + "width": 751, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2231, + "height": 3040, + "id": "https://iiif.wellcomecollection.org/image/b18035723_0002.JP2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/b18035723_0002.JP2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0001", + "type": "Range", + "label": { + "none": [ + "Front Cover" + ] + }, + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0001.JP2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0003", + "type": "Range", + "label": { + "none": [ + "Title Page" + ] + }, + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0004.JP2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/ranges/LOG_0002", + "type": "Range", + "label": { + "none": [ + "Back Cover" + ] + }, + "items": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/b18035723/canvases/b18035723_0002.JP2", + "type": "Canvas" + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.wellcomecollection.org/annotations/v3/b18035723/images", + "type": "AnnotationPage", + "label": { + "en": [ + "OCR-identified images and figures for b18035723" + ] + } + } + ], + "partOf": [ + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/contributors/xtwzf3g5", + "type": "Collection", + "label": { + "en": [ + "Contributor: Bolle, Fritz." + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/subjects/hq8gcy73", + "type": "Collection", + "label": { + "en": [ + "Subject: Genetics - history" + ] + } + }, + { + "id": "https://iiif.wellcomecollection.org/presentation/collections/genres/Pamphlets", + "type": "Collection", + "label": { + "en": [ + "Genre: Pamphlets" + ] + } + } + ] +} diff --git a/fixtures/3-to-4-converted/presentation-3/wellcome-p3.json b/fixtures/3-to-4-converted/presentation-3/wellcome-p3.json new file mode 100644 index 0000000..afc5109 --- /dev/null +++ b/fixtures/3-to-4-converted/presentation-3/wellcome-p3.json @@ -0,0 +1,1476 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021", + "type": "Manifest", + "label": { + "en": [ + "[Report 1960] / Medical Officer of Health, Llanwrtyd Wells U.D.C." + ] + }, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2" + } + ] + } + ], + "homepage": [ + { + "id": "https://wellcomecollection.org/works/rfm2hr8w", + "type": "Text", + "label": { + "en": [ + "[Report 1960] / Medical Officer of Health, Llanwrtyd Wells U.D.C." + ] + }, + "format": "text/html", + "language": [ + "en" + ] + } + ], + "metadata": [ + { + "label": { + "en": [ + "Publication/creation" + ] + }, + "value": { + "none": [ + "1960" + ] + } + }, + { + "label": { + "en": [ + "Contributors" + ] + }, + "value": { + "none": [ + "Llanwrtyd Wells (Wales). Urban District Council." + ] + } + }, + { + "label": { + "en": [ + "Type/technique" + ] + }, + "value": { + "en": [ + "Electronic books.", + "Annual reports.", + "MOH reports.", + "Statistics." + ] + } + }, + { + "label": { + "en": [ + "Subjects" + ] + }, + "value": { + "en": [ + "Disease Outbreaks.", + "Public Health.", + "Sanitation.", + "Water Supply.", + "Llanwrtyd Wells (Wales)" + ] + } + } + ], + "rights": "https://creativecommons.org/licenses/by/4.0/", + "requiredStatement": { + "label": { + "en": [ + "Attribution and usage" + ] + }, + "value": { + "en": [ + "Wellcome Collection", + "You have permission to make copies of this work under a Creative Commons, Attribution license.

This licence permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. See the Legal Code for further information.

Image source should be attributed as specified in the full catalogue record. If no source is given the image should be attributed to Wellcome Library.
" + ] + } + }, + "provider": [ + { + "id": "https://wellcomecollection.org", + "type": "Agent", + "label": { + "en": [ + "Wellcome Collection", + "183 Euston Road", + "London NW1 2BE UK", + "T +44 (0)20 7611 8722", + "E library@wellcomecollection.org", + "https://wellcomecollection.org" + ] + }, + "homepage": [ + { + "id": "https://wellcomecollection.org/works", + "type": "Text", + "label": { + "en": [ + "Explore our collections" + ] + }, + "format": "text/html" + } + ], + "logo": [ + { + "id": "https://iiif-test.wellcomecollection.org/logos/wellcome-collection-black.png", + "type": "Image", + "format": "image/png" + } + ] + } + ], + "rendering": [ + { + "id": "https://dlcs.io/pdf/wellcome/pdf/6/b28857021", + "type": "Text", + "label": { + "en": [ + "View as PDF" + ] + }, + "format": "application/pdf" + }, + { + "id": "https://iiif-test.wellcomecollection.org/text/v1/b28857021", + "type": "Text", + "label": { + "en": [ + "View raw text" + ] + }, + "format": "text/plain" + } + ], + "seeAlso": [ + { + "id": "https://api.wellcomecollection.org/catalogue/v2/works/rfm2hr8w", + "type": "Dataset", + "profile": "https://api.wellcomecollection.org/catalogue/v2/context.json", + "label": { + "en": [ + "Wellcome Collection Catalogue API" + ] + }, + "format": "application/json" + } + ], + "service": [ + { + "profile": "http://iiif.io/api/search/1/search", + "label": "Search within this manifest", + "service": [ + { + "profile": "http://iiif.io/api/search/1/autocomplete", + "label": "Autocomplete words in this manifest", + "id": "https://iiif-test.wellcomecollection.org/search/autocomplete/v1/b28857021", + "type": "AutoCompleteService1" + } + ], + "id": "https://iiif-test.wellcomecollection.org/search/v1/b28857021", + "type": "SearchService1" + } + ], + "behavior": [ + "paged" + ], + "services": [ + { + "type": "Text", + "profile": "http://universalviewer.io/tracking-extensions-profile", + "label": { + "en": [ + "Format: Monograph, Institution: n/a, Identifier: b28857021, Digicode: digmoh, Collection code: n/a" + ] + } + }, + { + "type": "Text", + "profile": "http://wellcomelibrary.org/ld/iiif-ext/access-control-hints", + "label": { + "en": [ + "open" + ] + } + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2670, + "height": 4412, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0001.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2670, + "height": 4412, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0001.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0001.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0002.jp2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2547, + "height": 4312, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0002.jp2/full/59,100/0/default.jpg", + "type": "Image", + "width": 59, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 605, + "height": 1024, + "sizes": [ + { + "width": 59, + "height": 100 + }, + { + "width": 118, + "height": 200 + }, + { + "width": 236, + "height": 400 + }, + { + "width": 605, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0002.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0002.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0002.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0002.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0002.jp2/full/605,1024/0/default.jpg", + "type": "Image", + "width": 605, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2547, + "height": 4312, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0002.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0002.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0002.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0003.jp2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2637, + "height": 4357, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0003.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0003.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0003.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0003.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0003.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0003.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2637, + "height": 4357, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0003.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0003.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0003.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0004.jp2", + "type": "Canvas", + "label": { + "none": [ + "2" + ] + }, + "width": 2626, + "height": 4346, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0004.jp2/full/60,100/0/default.jpg", + "type": "Image", + "width": 60, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0004.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0004.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0004.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0004.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0004.jp2/full/619,1024/0/default.jpg", + "type": "Image", + "width": 619, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2626, + "height": 4346, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0004.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0004.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0004.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 2" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0005.jp2", + "type": "Canvas", + "label": { + "none": [ + "3" + ] + }, + "width": 2637, + "height": 4357, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0005.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0005.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0005.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0005.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0005.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0005.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2637, + "height": 4357, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0005.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0005.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0005.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 3" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0006.jp2", + "type": "Canvas", + "label": { + "none": [ + "4" + ] + }, + "width": 2626, + "height": 4346, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0006.jp2/full/60,100/0/default.jpg", + "type": "Image", + "width": 60, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0006.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0006.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0006.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0006.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0006.jp2/full/619,1024/0/default.jpg", + "type": "Image", + "width": 619, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2626, + "height": 4346, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0006.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0006.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0006.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 4" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0007.jp2", + "type": "Canvas", + "label": { + "none": [ + "5" + ] + }, + "width": 2637, + "height": 4357, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0007.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0007.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0007.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0007.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0007.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0007.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2637, + "height": 4357, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0007.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0007.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0007.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 5" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0008.jp2", + "type": "Canvas", + "label": { + "none": [ + "6" + ] + }, + "width": 2626, + "height": 4346, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0008.jp2/full/60,100/0/default.jpg", + "type": "Image", + "width": 60, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 619, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 619, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0008.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0008.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0008.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0008.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0008.jp2/full/619,1024/0/default.jpg", + "type": "Image", + "width": 619, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2626, + "height": 4346, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0008.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0008.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0008.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 6" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0009.jp2", + "type": "Canvas", + "label": { + "none": [ + "7" + ] + }, + "width": 2637, + "height": 4357, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0009.jp2/full/61,100/0/default.jpg", + "type": "Image", + "width": 61, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 620, + "height": 1024, + "sizes": [ + { + "width": 61, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 242, + "height": 400 + }, + { + "width": 620, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0009.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0009.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0009.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0009.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0009.jp2/full/620,1024/0/default.jpg", + "type": "Image", + "width": 620, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2637, + "height": 4357, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0009.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0009.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0009.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page 7" + ] + } + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas", + "label": { + "none": [ + "-" + ] + }, + "width": 2670, + "height": 4424, + "thumbnail": [ + { + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0010.jp2/full/60,100/0/default.jpg", + "type": "Image", + "width": 60, + "height": 100, + "service": [ + { + "profile": "http://iiif.io/api/image/2/level0.json", + "width": 618, + "height": 1024, + "sizes": [ + { + "width": 60, + "height": 100 + }, + { + "width": 121, + "height": 200 + }, + { + "width": 241, + "height": 400 + }, + { + "width": 618, + "height": 1024 + } + ], + "id": "https://dlcs.io/thumbs/wellcome/6/b28857021_0010.jp2", + "type": "ImageService2" + } + ] + } + ], + "seeAlso": [ + { + "id": "https://iiif-test.wellcomecollection.org/text/alto/b28857021/b28857021_0010.jp2", + "type": "Dataset", + "profile": "http://www.loc.gov/standards/alto/v3/alto.xsd", + "label": { + "none": [ + "METS-ALTO XML" + ] + }, + "format": "text/xml" + } + ], + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2/painting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2/painting/anno", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0010.jp2/full/618,1024/0/default.jpg", + "type": "Image", + "width": 618, + "height": 1024, + "format": "image/jpeg", + "service": [ + { + "profile": "http://iiif.io/api/image/2/level1.json", + "width": 2670, + "height": 4424, + "id": "https://dlcs.io/iiif-img/wellcome/6/b28857021_0010.jp2", + "type": "ImageService2" + } + ] + } + ], + "target": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas" + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/b28857021_0010.jp2/line", + "type": "AnnotationPage", + "label": { + "en": [ + "Text of page -" + ] + } + } + ] + } + ], + "structures": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0001", + "type": "Range", + "label": { + "none": [ + "Cover" + ] + }, + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0001.jp2", + "type": "Canvas" + } + ] + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/ranges/LOG_0002", + "type": "Range", + "label": { + "none": [ + "Cover" + ] + }, + "items": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/b28857021/canvases/b28857021_0010.jp2", + "type": "Canvas" + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/images", + "type": "AnnotationPage", + "label": { + "en": [ + "OCR-identified images and figures for b28857021" + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/annotations/v3/b28857021/all/line", + "type": "AnnotationPage", + "label": { + "en": [ + "All OCR-derived annotations for b28857021" + ] + } + } + ], + "partOf": [ + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/contributors/Llanwrtyd_Wells_(Wales)._Urban_District_Council.", + "type": "Collection", + "label": { + "en": [ + "Contributor: Llanwrtyd Wells (Wales). Urban District Council." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/xaqnqsbj", + "type": "Collection", + "label": { + "en": [ + "Subject: Disease Outbreaks." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/tva37rme", + "type": "Collection", + "label": { + "en": [ + "Subject: Public Health." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/p2mzt7rw", + "type": "Collection", + "label": { + "en": [ + "Subject: Sanitation." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/pxxu6hsg", + "type": "Collection", + "label": { + "en": [ + "Subject: Water Supply." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/subjects/dyss49dy", + "type": "Collection", + "label": { + "en": [ + "Subject: Llanwrtyd Wells (Wales)" + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Electronic_books.", + "type": "Collection", + "label": { + "en": [ + "Genre: Electronic books." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Annual_reports.", + "type": "Collection", + "label": { + "en": [ + "Genre: Annual reports." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/MOH_reports.", + "type": "Collection", + "label": { + "en": [ + "Genre: MOH reports." + ] + } + }, + { + "id": "https://iiif-test.wellcomecollection.org/presentation/collections/genres/Statistics.", + "type": "Collection", + "label": { + "en": [ + "Genre: Statistics." + ] + } + } + ] +} diff --git a/fixtures/cookbook-v4/0001-mvm-image.json b/fixtures/cookbook-v4/0001-mvm-image.json new file mode 100644 index 0000000..36aa4fc --- /dev/null +++ b/fixtures/cookbook-v4/0001-mvm-image.json @@ -0,0 +1,48 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Image Example (IIIF Presentation v4)" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "type": "Canvas", + "height": 1800, + "width": 1200, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/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": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/cookbook-v4/0002-mvm-audio.json b/fixtures/cookbook-v4/0002-mvm-audio.json new file mode 100644 index 0000000..d5db678 --- /dev/null +++ b/fixtures/cookbook-v4/0002-mvm-audio.json @@ -0,0 +1,46 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Audio Example (IIIF Presentation v4)" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "type": "Timeline", + "duration": 1985.024, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline/page/annotation", + "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": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/timeline", + "type": "Timeline" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/cookbook-v4/0003-mvm-video.json b/fixtures/cookbook-v4/0003-mvm-video.json new file mode 100644 index 0000000..b20c314 --- /dev/null +++ b/fixtures/cookbook-v4/0003-mvm-video.json @@ -0,0 +1,50 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/manifest.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Video Example (IIIF Presentation 4)" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "type": "Canvas", + "height": 360, + "width": 480, + "duration": 572.034, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas/page/annotation", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4" + } + ], + "target": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/canvas", + "type": "Canvas" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/cookbook-v4/0608-mvm-3d.json b/fixtures/cookbook-v4/0608-mvm-3d.json new file mode 100644 index 0000000..f2fd951 --- /dev/null +++ b/fixtures/cookbook-v4/0608-mvm-3d.json @@ -0,0 +1,54 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/manifest.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://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1/annotationPage/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/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": [ + { + "id": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/scene/1", + "type": "Scene" + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/cookbook-v4/_index.json b/fixtures/cookbook-v4/_index.json new file mode 100644 index 0000000..1572999 --- /dev/null +++ b/fixtures/cookbook-v4/_index.json @@ -0,0 +1,22 @@ +{ + "0001-mvm-image": { + "id": "0001-mvm-image", + "url": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/v4/manifest.json", + "recipeUrl": "https://preview.iiif.io/cookbook/v4/recipe/0001-mvm-image/" + }, + "0002-mvm-audio": { + "id": "0002-mvm-audio", + "url": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/v4/manifest.json", + "recipeUrl": "https://preview.iiif.io/cookbook/v4/recipe/0002-mvm-audio/" + }, + "0003-mvm-video": { + "id": "0003-mvm-video", + "url": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/v4/manifest.json", + "recipeUrl": "https://preview.iiif.io/cookbook/v4/recipe/0003-mvm-video/" + }, + "0608-mvm-3d": { + "id": "0608-mvm-3d", + "url": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/v4/manifest.json", + "recipeUrl": "https://preview.iiif.io/cookbook/v4/recipe/0608-mvm-3d/" + } +} diff --git a/fixtures/presentation-4/01-model-in-scene.json b/fixtures/presentation-4/01-model-in-scene.json new file mode 100644 index 0000000..0e29e59 --- /dev/null +++ b/fixtures/presentation-4/01-model-in-scene.json @@ -0,0 +1,33 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { "en": ["Single Model"] }, + "summary": { "en": ["Viewer should render the model at the scene origin, and then viewer should add default lighting and camera"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { "en": ["A Scene"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/02-model-with-background.json b/fixtures/presentation-4/02-model-with-background.json new file mode 100644 index 0000000..379daa8 --- /dev/null +++ b/fixtures/presentation-4/02-model-with-background.json @@ -0,0 +1,34 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { "en": ["Single Model with background color"] }, + "summary": { "en": ["Viewer should render the model at the origin, with a background color of purple, and then viewer should add default lighting and camera"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { "en": ["A Scene"] }, + "backgroundColor": "#FF00FE", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/03-perspective-camera.json b/fixtures/presentation-4/03-perspective-camera.json new file mode 100644 index 0000000..79a7171 --- /dev/null +++ b/fixtures/presentation-4/03-perspective-camera.json @@ -0,0 +1,44 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { "en": ["Model with Explicit Perspective Camera"] }, + "summary": { "en": ["Viewer should render the model at the scene origin, and the camera at the scene origin facing -Z, then add default lighting"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { "en": ["Scene with Model and Camera"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": {"en": ["Perspective Camera 1"]} + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/04-perpsective-camera-with-annotation.json b/fixtures/presentation-4/04-perpsective-camera-with-annotation.json new file mode 100644 index 0000000..f8b0d15 --- /dev/null +++ b/fixtures/presentation-4/04-perpsective-camera-with-annotation.json @@ -0,0 +1,82 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with Explicit Perspective Camera Looking at an Annotation" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a perspective camera looking in the direction of the Model Annotation, and add default lighting" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with Model and Camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "lookAt": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/05-perspective-camerea-with-point.json b/fixtures/presentation-4/05-perspective-camerea-with-point.json new file mode 100644 index 0000000..942d4f2 --- /dev/null +++ b/fixtures/presentation-4/05-perspective-camerea-with-point.json @@ -0,0 +1,84 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with Explicit Perspective Camera Looking at a Point" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a perspective camera looking toward the PointSelector coordinates, and add default lighting" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with a Model and Camera Looking at a Point" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "lookAt": { + "type": "PointSelector", + "x": 2, + "y": 1, + "z": 0 + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/06-perspective-camera-with-choice.json b/fixtures/presentation-4/06-perspective-camera-with-choice.json new file mode 100644 index 0000000..5c017b9 --- /dev/null +++ b/fixtures/presentation-4/06-perspective-camera-with-choice.json @@ -0,0 +1,123 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/choice_of_cameras.json", + "type": "Manifest", + "label": { + "en": [ + "Choice of cameras WARNING use of Choice" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with two cameras, a perspective camera with field of view 50, and an orthographic camera, and add default lighting. The viewer defaults to the perspective camera but should offer the option to switch to the orthographic camera." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/choice", + "type": "Choice", + "items": [ + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "fieldOfView": 50, + "label": { + "en": [ + "Perspective Camera 1" + ] + }, + "lookAt": { + "type": "PointSelector", + "x": 2, + "y": 1, + "z": 0 + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/2", + "type": "OrthographicCamera", + "label": { + "en": [ + "Orthographic Camera 1" + ] + }, + "lookAt": { + "type": "PointSelector", + "x": 2, + "y": 1, + "z": 0 + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + } + ] + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/07-orthographic-camera.json b/fixtures/presentation-4/07-orthographic-camera.json new file mode 100644 index 0000000..8f30d26 --- /dev/null +++ b/fixtures/presentation-4/07-orthographic-camera.json @@ -0,0 +1,77 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/orthographic_camera.json", + "type": "Manifest", + "label": { + "en": [ + "Orthographic Camera" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and an Orthographic camera looking at the model, and add default lighting." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://example.org/iiif/3d/cameras/2", + "type": "OrthographicCamera", + "label": { + "en": [ + "Orthographic Camera 1" + ] + }, + "lookAt": { + "type": "Annotation", + "id": "https://example.org/iiif/3d/anno1" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 3, + "z": -10 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/08-ambient-light.json b/fixtures/presentation-4/08-ambient-light.json new file mode 100644 index 0000000..a21093e --- /dev/null +++ b/fixtures/presentation-4/08-ambient-light.json @@ -0,0 +1,46 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { "en": ["Model with Green AmbientLight"] }, + "summary": { "en": ["Viewer should render the model at the scene origin with green AmbientLight, and add default camera"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { "en": ["Scene with Model and AmbientLight"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "AmbientLight", + "label": {"en": ["Ambient Green Light"]}, + "color": "#00FF00", + "intensity": {"type": "Value", "value": 0.5, "unit": "relative"} + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/09-directional-light.json b/fixtures/presentation-4/09-directional-light.json new file mode 100644 index 0000000..fcb63bc --- /dev/null +++ b/fixtures/presentation-4/09-directional-light.json @@ -0,0 +1,63 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { "en": ["Model with DirectionalLight"] }, + "summary": { "en": ["Viewer should render the model at the scene origin with a DirectionalLight positioned at the point in the Scene defined by the PointSelector and facing the the Model, then add default camera"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { "en": ["Scene with Model and DirectionalLight"] }, + + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "DirectionalLight", + "label": {"en": ["Directional Light 1"]}, + "lookAt": { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.0, + "y": 3.0, + "z": 10.0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/10-directional-light-rotated.json b/fixtures/presentation-4/10-directional-light-rotated.json new file mode 100644 index 0000000..117f981 --- /dev/null +++ b/fixtures/presentation-4/10-directional-light-rotated.json @@ -0,0 +1,78 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Model with Rotated DirectionalLight" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin with a DirectionalLight rotated 30 degrees on the x axis, then add default camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Scene with Model and Rotated DirectionalLight" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "DirectionalLight", + "label": { + "en": [ + "Directional Light 1" + ] + } + }, + "transform": [ + { + "type": "RotateTransform", + "x": 30, + "y": 0, + "z": 0 + } + ] + }, + "target": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/11-multiple-lights.json b/fixtures/presentation-4/11-multiple-lights.json new file mode 100644 index 0000000..d182f38 --- /dev/null +++ b/fixtures/presentation-4/11-multiple-lights.json @@ -0,0 +1,188 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Multiple lights with intensities and colors." + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin, and then viewer should add one red spotlight pointing at the front of the helmet, one blue spotlight point at the front-center of the model, and an ambient green light source. The viewer should add a default camera but NOT any other lighting." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Model with Two Spotlights and an Ambient light" + ] + }, + "backgroundColor": "#33404d", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "SpotLight", + "label": { + "en": [ + "Red Spot Light" + ] + }, + "color": "#ff0000", + "intensity": { + "type": "Value", + "value": 100, + "unit": "relative" + }, + "angle": 5 + }, + "transform": [ + { + "type": "RotateTransform", + "x": 90, + "y": 0, + "z": 0 + }, + { + "type": "TranslateTransform", + "x": 0, + "y": 3.5, + "z": 3.5 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "AmbientLight", + "label": { + "en": [ + "Green Ambient Light" + ] + }, + "color": "#7aff40", + "intensity": { + "type": "Value", + "value": 0.5, + "unit": "relative" + } + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/lights/1", + "type": "SpotLight", + "label": { + "en": [ + "Blue Spot Light" + ] + }, + "color": "#0f00ff", + "intensity": { + "type": "Value", + "value": 10, + "unit": "relative" + }, + "angle": 5 + }, + "transform": [ + { + "type": "RotateTransform", + "x": 90, + "y": 0, + "z": 0 + }, + { + "type": "TranslateTransform", + "x": 0, + "y": 2.5, + "z": 3.5 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "label": { + "en": [ + "Astronaut" + ] + }, + "format": "model/gltf-binary" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/12-mode-position.json b/fixtures/presentation-4/12-mode-position.json new file mode 100644 index 0000000..1a2a111 --- /dev/null +++ b/fixtures/presentation-4/12-mode-position.json @@ -0,0 +1,61 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_position.json", + "type": "Manifest", + "label": { + "en": [ + "Single Positioned Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at (-1,0,1), and then viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 1 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/13-mirrored-model.json b/fixtures/presentation-4/13-mirrored-model.json new file mode 100644 index 0000000..5c33dbc --- /dev/null +++ b/fixtures/presentation-4/13-mirrored-model.json @@ -0,0 +1,99 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_negative_scale_position.json", + "type": "Manifest", + "label": { + "en": [ + "Model shown normally and mirrored" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at normal scale but mirrored. Then the viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "ScaleTransform", + "x": -1, + "y": 1, + "z": 1 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/14-rotated-model.json b/fixtures/presentation-4/14-rotated-model.json new file mode 100644 index 0000000..e36d5d5 --- /dev/null +++ b/fixtures/presentation-4/14-rotated-model.json @@ -0,0 +1,72 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_rotate_position.json", + "type": "Manifest", + "label": { + "en": [ + "Rotated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model rotated by 180 degrees around the Y axis" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/15-rotated-translated-model.json b/fixtures/presentation-4/15-rotated-translated-model.json new file mode 100644 index 0000000..f808eb5 --- /dev/null +++ b/fixtures/presentation-4/15-rotated-translated-model.json @@ -0,0 +1,78 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_rotate_translate_position.json", + "type": "Manifest", + "label": { + "en": [ + "Rotated Translated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model after rotating by 180 degrees around the Y axis, then translating 1 in X, resulting in him being at 1 in X" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + }, + { + "type": "TranslateTransform", + "x": 1, + "y": 0, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/16-rotated-translated-models.json b/fixtures/presentation-4/16-rotated-translated-models.json new file mode 100644 index 0000000..3f6d5c9 --- /dev/null +++ b/fixtures/presentation-4/16-rotated-translated-models.json @@ -0,0 +1,105 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_scale_position.json", + "type": "Manifest", + "label": { + "en": [ + "Scaled, Translated Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale after moving in the local coordinate space, and then the viewer should add default lighting and camera. Thus the model will end up at (5,4,4) due to doubling the scale of the local coordinate space." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "TranslateTransform", + "x": 2, + "y": 2, + "z": 2 + }, + { + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/17-rotated-scaled-models.json b/fixtures/presentation-4/17-rotated-scaled-models.json new file mode 100644 index 0000000..e584e0f --- /dev/null +++ b/fixtures/presentation-4/17-rotated-scaled-models.json @@ -0,0 +1,105 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_scale_translate_position.json", + "type": "Manifest", + "label": { + "en": [ + "Scaled, Translated Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale after moving in the local coordinate space, and then the viewer should add default lighting and camera. Thus the model will end up at (3,2,2) due to doubling the scale of the local coordinate space." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + }, + { + "type": "TranslateTransform", + "x": 2, + "y": 2, + "z": 2 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/18-translated-rotated-model.json b/fixtures/presentation-4/18-translated-rotated-model.json new file mode 100644 index 0000000..24788ab --- /dev/null +++ b/fixtures/presentation-4/18-translated-rotated-model.json @@ -0,0 +1,78 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_translate_rotate_position.json", + "type": "Manifest", + "label": { + "en": [ + "Translated Rotated Model" + ] + }, + "summary": { + "en": [ + "Viewer should render the model after moving 1 in X, then rotating by 180 degrees around the Y axis, resulting in him being at -1 in X" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "TranslateTransform", + "x": 1, + "y": 0, + "z": 0 + }, + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/19-scaled-models.json b/fixtures/presentation-4/19-scaled-models.json new file mode 100644 index 0000000..5465dbd --- /dev/null +++ b/fixtures/presentation-4/19-scaled-models.json @@ -0,0 +1,99 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_transform_translate_scale_position.json", + "type": "Manifest", + "label": { + "en": [ + "Scaled Model with original for comparison" + ] + }, + "summary": { + "en": [ + "Viewer should render the model twice, once at normal scale and once at double scale, and then the viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1, + "y": 0, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "ScaleTransform", + "x": 2, + "y": 2, + "z": 2 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1, + "y": 0, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/20-whale-cranium.json b/fixtures/presentation-4/20-whale-cranium.json new file mode 100644 index 0000000..6ee3f4d --- /dev/null +++ b/fixtures/presentation-4/20-whale-cranium.json @@ -0,0 +1,88 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_cranium_and_mandible_position.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible Positioned" + ] + }, + "summary": { + "en": [ + "Renders two 3D models to display a whale skull. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/21-scene-within-canvas.json b/fixtures/presentation-4/21-scene-within-canvas.json new file mode 100644 index 0000000..2819f1e --- /dev/null +++ b/fixtures/presentation-4/21-scene-within-canvas.json @@ -0,0 +1,104 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { "en": ["Scene with a Canvas"] }, + "summary": { "en": ["..."] }, + "structures": [ + { + "id": "https://example.org/iiif/ranges/1", + "type": "Range", + "behavior": ["sequence"], + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ] + } + ], + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { "en": ["A Scene"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PolygonZSelector", + "value": "POLYGONZ((-1.0843 2.8273 -2, 1.0843 2.8273 -2, 1.0843 0 -2, -1.0843 0 -2))" + } + ] + } + } + ] + } + ] + }, + { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas", + "label": { "en": ["Painting"]}, + "backgroundColor": "#c0c0c0", + "height": 28273, + "width": 21687, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg", + "type": "Image", + "height": 28273, + "width": 21687, + "format": "image/jpeg", + "service": [ + { + "@id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "@type": "ImageService2", + "profile": "http://iiif.io/api/image/2/level1.json" + } + ] + }, + "target": "https://example.org/iiif/canvas/1" + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/22-scene-within-canvas-2.json b/fixtures/presentation-4/22-scene-within-canvas-2.json new file mode 100644 index 0000000..5967f0a --- /dev/null +++ b/fixtures/presentation-4/22-scene-within-canvas-2.json @@ -0,0 +1,104 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { "en": ["Scene with a Canvas"] }, + "summary": { "en": ["..."] }, + "structures": [ + { + "id": "https://example.org/iiif/ranges/1", + "type": "Range", + "behavior": ["sequence"], + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + ] + } + ], + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { "en": ["A Scene"] }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PolygonZSelector", + "value": "POLYGONZ((-1.0843 2.8273 -2, -1.0843 0 -2, 1.0843 0 -2, 1.0843 2.8273 -2))" + } + ] + } + } + ] + } + ] + }, + { + "id": "https://example.org/iiif/canvas/1", + "type": "Canvas", + "label": { "en": ["Painting"]}, + "backgroundColor": "#c0c0c0", + "height": 28273, + "width": 21687, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": { + "id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif/full/full/0/default.jpg", + "type": "Image", + "height": 28273, + "width": 21687, + "format": "image/jpeg", + "service": [ + { + "@id": "https://media.nga.gov/iiif/public/objects/1/0/6/3/8/2/106382-primary-0-nativeres.ptif", + "@type": "ImageService2", + "profile": "http://iiif.io/api/image/2/level1.json" + } + ] + }, + "target": "https://example.org/iiif/canvas/1" + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/23-astronaut-comment.json b/fixtures/presentation-4/23-astronaut-comment.json new file mode 100644 index 0000000..6329703 --- /dev/null +++ b/fixtures/presentation-4/23-astronaut-comment.json @@ -0,0 +1,101 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/astronaut_comment.json", + "type": "Manifest", + "label": { + "en": [ + "Single Model with Comment Annotations" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and two comment annotations, one targeting a point near the astronaut's glove and the other targeting a point near the astronaut's helmet." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": "https://example.org/iiif/scene1/page/p1/1" + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Glove", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1.075, + "y": 1.894, + "z": 0.204 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Helmet", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.006, + "y": 3.498, + "z": 0.703 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/24-multi-comment.json b/fixtures/presentation-4/24-multi-comment.json new file mode 100644 index 0000000..f893148 --- /dev/null +++ b/fixtures/presentation-4/24-multi-comment.json @@ -0,0 +1,155 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/model_origin.json", + "type": "Manifest", + "label": { + "en": [ + "Single Model with Multilingual Comment Annotations" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and two multilingual comment annotations, one targeting a point near the astronaut's glove and the other targeting a point near the astronaut's helmet." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene", + "label": { + "en": [ + "Single Model with Comment Annotations" + ], + "es": [ + "Modelo único con anotaciones de comentarios" + ] + }, + "backgroundColor": "#33404d", + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "label": { + "en": [ + "Astronaut" + ] + }, + "format": "model/gltf-binary" + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + } + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "type": "TextualBody", + "value": "Glove", + "language": "en", + "format": "text/plain" + }, + { + "type": "TextualBody", + "value": "Guante", + "language": "es", + "format": "text/plain" + } + ] + } + ], + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1.075, + "y": 1.894, + "z": 0.204 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": [ + { + "type": "Choice", + "items": [ + { + "type": "TextualBody", + "value": "Helmet", + "language": "en", + "format": "text/plain" + }, + { + "type": "TextualBody", + "value": "Casco", + "language": "es", + "format": "text/plain" + } + ] + } + ], + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.006, + "y": 3.498, + "z": 0.703 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/25-whale-comment.json b/fixtures/presentation-4/25-whale-comment.json new file mode 100644 index 0000000..6f4aabd --- /dev/null +++ b/fixtures/presentation-4/25-whale-comment.json @@ -0,0 +1,119 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation" + ] + }, + "summary": { + "en": [ + "Simple text comment on point on whale cranium. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Right pterygoid hamulus", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/26-whale-comment-camera.json b/fixtures/presentation-4/26-whale-comment-camera.json new file mode 100644 index 0000000..fc66b19 --- /dev/null +++ b/fixtures/presentation-4/26-whale-comment-camera.json @@ -0,0 +1,184 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). The label body should still be viewable from the camera perspective." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000 + }, + "transform": [ + { + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -0.25, + "y": 0, + "z": -0.5 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": { + "type": "TextualBody", + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "language": "en", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ] + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/27-whale-comment-position.json b/fixtures/presentation-4/27-whale-comment-position.json new file mode 100644 index 0000000..fc66b19 --- /dev/null +++ b/fixtures/presentation-4/27-whale-comment-position.json @@ -0,0 +1,184 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). The label body should still be viewable from the camera perspective." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000 + }, + "transform": [ + { + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -0.25, + "y": 0, + "z": -0.5 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": { + "type": "TextualBody", + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "language": "en", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ] + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/28-whale-camera-rotate.json b/fixtures/presentation-4/28-whale-camera-rotate.json new file mode 100644 index 0000000..efd7dc7 --- /dev/null +++ b/fixtures/presentation-4/28-whale-camera-rotate.json @@ -0,0 +1,192 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment_label_body_position_rotate.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point Comment Annotation Oriented Toward Camera" + ] + }, + "summary": { + "en": [ + "Camera view of point comment annotation of whale cranium, where comment annotation label body is explicitly offset from the comment annotation. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). This commenting annotation is on the underside of the cranium (basicranium) between the cranium and the mandible, and is intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see the pterygoid hamulus clearly. The label body of the commenting annotation has been offset downward from the annotation itself and should be placed at (0.04, 0.0, -0.066). However, the label body has also been rotated to face away away from the camera perspective." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000 + }, + "transform": [ + { + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -0.25, + "y": 0, + "z": -0.5 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": { + "type": "TextualBody", + "value": "

Right pterygoid hamulus

", + "format": "text/html", + "language": "en", + "position": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0, + "z": -0.066 + } + ], + "transform": [ + { + "type": "RotateTransform", + "x": 0, + "y": 180, + "z": 0 + } + ] + } + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/fixtures/presentation-4/29-whale-camera-shape.json b/fixtures/presentation-4/29-whale-camera-shape.json new file mode 100644 index 0000000..e062bbf --- /dev/null +++ b/fixtures/presentation-4/29-whale-camera-shape.json @@ -0,0 +1,185 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://example.org/iiif/3d/whale_comment_point_polygon.json", + "type": "Manifest", + "label": { + "en": [ + "Whale Cranium and Mandible with Point and 2D Shape Comment Annotations" + ] + }, + "summary": { + "en": [ + "Multiple commenting annotations with camera view. Viewer should render the mandible at (0, 0.03, 0.05) and the cranium at (0, 0.18, 0). This should place the cranium and mandible in something approximating anatomical position relative to each other. A first commenting annotation for the hook-like process on the right medial pterygoid plate, the right pterygoid hamulus process, should be placed at (0.04, 0.063, -0.066). A second commenting annotation for a 2D polygon outlining the foramen magnum, the large hole through which the spinal cord passes, should also be rendered. Both commenting annotations are intentionally awkwardly placed in terms of view perspective. A camera has been specified and should be used to see both commenting annotations clearly." + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1", + "type": "Scene", + "label": { + "en": [ + "A Scene Containing a Whale Cranium and Mandible" + ] + }, + "items": [ + { + "id": "https://example.org/iiif/scene1/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_mandible.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.03, + "z": 0.05 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/whale/whale_cranium.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0, + "y": 0.18, + "z": 0 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno3", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Right pterygoid hamulus", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.04, + "y": 0.063, + "z": -0.066 + } + ] + } + }, + { + "id": "https://example.org/iiif/3d/anno5", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/3d/cameras/1", + "type": "PerspectiveCamera", + "label": { + "en": [ + "Perspective Camera Pointed At Pterygoid Hamulus" + ] + }, + "fieldOfView": 50, + "near": 0.1, + "far": 2000 + }, + "transform": [ + { + "type": "RotateTransform", + "x": -15, + "y": 215, + "z": 0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -0.25, + "y": 0, + "z": -0.5 + } + ] + } + } + ] + } + ], + "annotations": [ + { + "id": "https://example.org/iiif/scene1/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://example.org/iiif/3d/anno4", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "bodyValue": "Foramen magnum", + "target": { + "type": "SpecificResource", + "source": { + "id": "https://example.org/iiif/scene1", + "type": "Scene" + }, + "selector": [ + { + "type": "WKTSelector", + "value": "POLYGON Z ((0 0.18 -0.23, -0.03 0.16 -0.23, -0.015 0.12 -0.23, 0.006 0.12 -0.23, 0.027 0.16 -0.230))" + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/package.json b/package.json index 71775dd..2454990 100644 --- a/package.json +++ b/package.json @@ -3,11 +3,11 @@ "version": "2.2.9", "license": "MIT", "type": "module", - "description": "IIIF Presentation 2 and 3 parsing utilities", + "description": "IIIF Presentation 2, 3 and 4 parsing utilities", "bugs": "https://github.com/iiif-commons/parser/issues", "repository": { "type": "git", - "url": "https://github.com/iiif-commons/parser" + "url": "git+https://github.com/iiif-commons/parser.git" }, "main": "dist/index.cjs", "module": "dist/index.js", @@ -36,6 +36,16 @@ "default": "./dist/presentation-2.js" } }, + "./presentation-2/types": { + "require": { + "types": "./dist/presentation-2/types.d.cts", + "default": "./dist/presentation-2/types.cjs" + }, + "import": { + "types": "./dist/presentation-2/types.d.ts", + "default": "./dist/presentation-2/types.js" + } + }, "./presentation-3": { "require": { "types": "./dist/presentation-3.d.cts", @@ -46,6 +56,76 @@ "default": "./dist/presentation-3.js" } }, + "./presentation-3/types": { + "require": { + "types": "./dist/presentation-3/types.d.cts", + "default": "./dist/presentation-3/types.cjs" + }, + "import": { + "types": "./dist/presentation-3/types.d.ts", + "default": "./dist/presentation-3/types.js" + } + }, + "./presentation-3-normalized": { + "require": { + "types": "./dist/presentation-3-normalized.d.cts", + "default": "./dist/presentation-3-normalized.cjs" + }, + "import": { + "types": "./dist/presentation-3-normalized.d.ts", + "default": "./dist/presentation-3-normalized.js" + } + }, + "./presentation-3-normalized/types": { + "require": { + "types": "./dist/presentation-3-normalized/types.d.cts", + "default": "./dist/presentation-3-normalized/types.cjs" + }, + "import": { + "types": "./dist/presentation-3-normalized/types.d.ts", + "default": "./dist/presentation-3-normalized/types.js" + } + }, + "./presentation-4": { + "require": { + "types": "./dist/presentation-4.d.cts", + "default": "./dist/presentation-4.cjs" + }, + "import": { + "types": "./dist/presentation-4.d.ts", + "default": "./dist/presentation-4.js" + } + }, + "./presentation-4/types": { + "require": { + "types": "./dist/presentation-4/types.d.cts", + "default": "./dist/presentation-4/types.cjs" + }, + "import": { + "types": "./dist/presentation-4/types.d.ts", + "default": "./dist/presentation-4/types.js" + } + }, + "./presentation-4-normalized": { + "require": { + "types": "./dist/presentation-4-normalized.d.cts", + "default": "./dist/presentation-4-normalized.cjs" + }, + "import": { + "types": "./dist/presentation-4-normalized.d.ts", + "default": "./dist/presentation-4-normalized.js" + } + }, + "./presentation-4-normalized/types": { + "require": { + "types": "./dist/presentation-4-normalized/types.d.cts", + "default": "./dist/presentation-4-normalized/types.cjs" + }, + "import": { + "types": "./dist/presentation-4-normalized/types.d.ts", + "default": "./dist/presentation-4-normalized/types.js" + } + }, "./strict": { "require": { "types": "./dist/strict.d.cts", @@ -82,25 +162,24 @@ "dev": "tsdown --watch", "typecheck": "tsc --noEmit", "test": "vitest", + "test:types": "vitest run --typecheck --typecheck.only", + "update-cookbook-v4": "node scripts/update-cookbook-v4.mjs", + "convert-p3-to-p4": "node scripts/convert-p3-manifests-to-p4.mjs", + "generate-p3-to-p4-type-test": "node scripts/generate-p3-to-p4-type-test.mjs", + "generate-p4-normalized-type-test": "node scripts/generate-p4-normalized-store-type-test.mjs", "prepack": "tsdown && tsdown --config tsdown.umd.ts", "lint": "publint" }, - "dependencies": { - "@iiif/presentation-2": "^1.0.4", - "@iiif/presentation-3": "^2.2.2", - "@iiif/presentation-3-normalized": "^0.9.7", - "@types/geojson": "^7946.0.10" - }, "devDependencies": { - "@types/node": "^18", + "@happy-dom/global-registrator": "^20.6.1", "@hyperion-framework/validator": "^1.1.0", - "@happy-dom/global-registrator": "^16.3.0", - "prettier": "^3.2.5", + "@types/node": "^22.19.11", + "prettier": "^3.8.1", + "publint": "^0.3.17", + "tsdown": "^0.20.3", "tslib": "^2.6.2", - "typescript": "^5.4.4", - "vitest": "^2.1.8", - "publint": "^0.2.7", - "tsdown": "^0.14.1" + "typescript": "^5.9.3", + "vitest": "^4.0.18" }, "sideEffects": false, "publishConfig": { diff --git a/pkg-tests/node-load.cjs b/pkg-tests/node-load.cjs index 7525105..608ccec 100644 --- a/pkg-tests/node-load.cjs +++ b/pkg-tests/node-load.cjs @@ -1,5 +1,17 @@ const parser3 = require('@iiif/parser'); const parser2 = require('@iiif/parser/presentation-2'); +const parser2Types = require('@iiif/parser/presentation-2/types'); +const parser4 = require('@iiif/parser/presentation-4'); +const parser3Types = require('@iiif/parser/presentation-3/types'); +const parser4Types = require('@iiif/parser/presentation-4/types'); +const parser3Normalized = require('@iiif/parser/presentation-3-normalized'); +const parser4Normalized = require('@iiif/parser/presentation-4-normalized'); console.log(parser2.Traverse); +console.log(parser2Types.infer.Manifest); console.log(parser3.Traverse); +console.log(parser3Types.infer.Manifest); +console.log(parser4.Traverse); +console.log(parser4Types.infer.Manifest); +console.log(typeof parser3Normalized); +console.log(typeof parser4Normalized); diff --git a/pkg-tests/node-load.mjs b/pkg-tests/node-load.mjs index a4c1776..2f6a000 100644 --- a/pkg-tests/node-load.mjs +++ b/pkg-tests/node-load.mjs @@ -1,7 +1,19 @@ import { Traverse as Traverse3 } from '@iiif/parser/presentation-3'; import { Traverse as Traverse2 } from '@iiif/parser/presentation-2'; +import { Traverse as Traverse4 } from '@iiif/parser/presentation-4'; +import { infer as infer2 } from '@iiif/parser/presentation-2/types'; +import { infer as infer3 } from '@iiif/parser/presentation-3/types'; +import { infer as infer4 } from '@iiif/parser/presentation-4/types'; +import * as Presentation3Normalized from '@iiif/parser/presentation-3-normalized'; +import * as Presentation4Normalized from '@iiif/parser/presentation-4-normalized'; import * as Upgrader from '@iiif/parser/upgrader'; console.log({ Traverse3 }); console.log({ Traverse2 }); +console.log({ Traverse4 }); +console.log({ infer2: infer2.Manifest }); +console.log({ infer3: infer3.Manifest }); +console.log({ infer4: infer4.Manifest }); +console.log(Presentation3Normalized); +console.log(Presentation4Normalized); console.log(Upgrader); diff --git a/pkg-tests/node-umd.mjs b/pkg-tests/node-umd.mjs index a72d489..181f2fc 100644 --- a/pkg-tests/node-umd.mjs +++ b/pkg-tests/node-umd.mjs @@ -2,3 +2,4 @@ import '../dist/index.umd.js'; console.log(IIIFParser.Presentation2.Traverse); console.log(IIIFParser.Presentation3.Traverse); +console.log(IIIFParser.Presentation4.Traverse); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 98901b0..a7b69ee 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,236 +7,230 @@ settings: importers: .: - dependencies: - '@iiif/presentation-2': - specifier: ^1.0.4 - version: 1.0.4(@iiif/presentation-3@2.2.2) - '@iiif/presentation-3': - specifier: ^2.2.2 - version: 2.2.2 - '@iiif/presentation-3-normalized': - specifier: ^0.9.7 - version: 0.9.7 - '@types/geojson': - specifier: ^7946.0.10 - version: 7946.0.14 devDependencies: '@happy-dom/global-registrator': - specifier: ^16.3.0 - version: 16.3.0 + specifier: ^20.6.1 + version: 20.6.1 '@hyperion-framework/validator': specifier: ^1.1.0 version: 1.1.0 '@types/node': - specifier: ^18 - version: 18.19.31 + specifier: ^22.19.11 + version: 22.19.11 prettier: - specifier: ^3.2.5 - version: 3.2.5 + specifier: ^3.8.1 + version: 3.8.1 publint: - specifier: ^0.2.7 - version: 0.2.7 + specifier: ^0.3.17 + version: 0.3.17 tsdown: - specifier: ^0.14.1 - version: 0.14.1(publint@0.2.7)(typescript@5.4.4) + specifier: ^0.20.3 + version: 0.20.3(publint@0.3.17)(typescript@5.9.3) tslib: specifier: ^2.6.2 version: 2.6.2 typescript: - specifier: ^5.4.4 - version: 5.4.4 + specifier: ^5.9.3 + version: 5.9.3 vitest: - specifier: ^2.1.8 - version: 2.1.8(@types/node@18.19.31)(happy-dom@16.3.0) + specifier: ^4.0.18 + version: 4.0.18(@types/node@22.19.11)(happy-dom@20.6.1)(jiti@2.5.1) packages: - '@babel/generator@7.28.0': - resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==} - engines: {node: '>=6.9.0'} + '@babel/generator@8.0.0-rc.1': + resolution: {integrity: sha512-3ypWOOiC4AYHKr8vYRVtWtWmyvcoItHtVqF8paFax+ydpmUdPsJpLBkBBs5ItmhdrwC3a0ZSqqFAdzls4ODP3w==} + engines: {node: ^20.19.0 || >=22.12.0} - '@babel/helper-string-parser@7.27.1': - resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} - engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@8.0.0-rc.1': + resolution: {integrity: sha512-vi/pfmbrOtQmqgfboaBhaCU50G7mcySVu69VU8z+lYoPPB6WzI9VgV7WQfL908M4oeSH5fDkmoupIqoE0SdApw==} + engines: {node: ^20.19.0 || >=22.12.0} - '@babel/helper-validator-identifier@7.27.1': - resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} - engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@8.0.0-rc.1': + resolution: {integrity: sha512-I4YnARytXC2RzkLNVnf5qFNFMzp679qZpmtw/V3Jt2uGnWiIxyJtaukjG7R8pSx8nG2NamICpGfljQsogj+FbQ==} + engines: {node: ^20.19.0 || >=22.12.0} - '@babel/parser@7.28.0': - resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==} - engines: {node: '>=6.0.0'} + '@babel/parser@8.0.0-rc.1': + resolution: {integrity: sha512-6HyyU5l1yK/7h9Ki52i5h6mDAx4qJdiLQO4FdCyJNoB/gy3T3GGJdhQzzbZgvgZCugYBvwtQiWRt94QKedHnkA==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true - '@babel/types@7.28.2': - resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} - engines: {node: '>=6.9.0'} + '@babel/types@8.0.0-rc.1': + resolution: {integrity: sha512-ubmJ6TShyaD69VE9DQrlXcdkvJbmwWPB8qYj0H2kaJi29O7vJT9ajSdBd2W8CG34pwL9pYA74fi7RHC1qbLoVQ==} + engines: {node: ^20.19.0 || >=22.12.0} - '@emnapi/core@1.4.5': - resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==} + '@emnapi/core@1.8.1': + resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==} - '@emnapi/runtime@1.4.5': - resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} + '@emnapi/runtime@1.8.1': + resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==} - '@emnapi/wasi-threads@1.0.4': - resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==} + '@emnapi/wasi-threads@1.1.0': + resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} - '@esbuild/aix-ppc64@0.20.2': - resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} - engines: {node: '>=12'} + '@esbuild/aix-ppc64@0.27.3': + resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.20.2': - resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} - engines: {node: '>=12'} + '@esbuild/android-arm64@0.27.3': + resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==} + engines: {node: '>=18'} cpu: [arm64] os: [android] - '@esbuild/android-arm@0.20.2': - resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} - engines: {node: '>=12'} + '@esbuild/android-arm@0.27.3': + resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==} + engines: {node: '>=18'} cpu: [arm] os: [android] - '@esbuild/android-x64@0.20.2': - resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} - engines: {node: '>=12'} + '@esbuild/android-x64@0.27.3': + resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==} + engines: {node: '>=18'} cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.20.2': - resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} - engines: {node: '>=12'} + '@esbuild/darwin-arm64@0.27.3': + resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.20.2': - resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} - engines: {node: '>=12'} + '@esbuild/darwin-x64@0.27.3': + resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.20.2': - resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} - engines: {node: '>=12'} + '@esbuild/freebsd-arm64@0.27.3': + resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.20.2': - resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} - engines: {node: '>=12'} + '@esbuild/freebsd-x64@0.27.3': + resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.20.2': - resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} - engines: {node: '>=12'} + '@esbuild/linux-arm64@0.27.3': + resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.20.2': - resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} - engines: {node: '>=12'} + '@esbuild/linux-arm@0.27.3': + resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==} + engines: {node: '>=18'} cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.20.2': - resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} - engines: {node: '>=12'} + '@esbuild/linux-ia32@0.27.3': + resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.20.2': - resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} - engines: {node: '>=12'} + '@esbuild/linux-loong64@0.27.3': + resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.20.2': - resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} - engines: {node: '>=12'} + '@esbuild/linux-mips64el@0.27.3': + resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.20.2': - resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} - engines: {node: '>=12'} + '@esbuild/linux-ppc64@0.27.3': + resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.20.2': - resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} - engines: {node: '>=12'} + '@esbuild/linux-riscv64@0.27.3': + resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.20.2': - resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} - engines: {node: '>=12'} + '@esbuild/linux-s390x@0.27.3': + resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.20.2': - resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} - engines: {node: '>=12'} + '@esbuild/linux-x64@0.27.3': + resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==} + engines: {node: '>=18'} cpu: [x64] os: [linux] - '@esbuild/netbsd-x64@0.20.2': - resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} - engines: {node: '>=12'} + '@esbuild/netbsd-arm64@0.27.3': + resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.27.3': + resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-x64@0.20.2': - resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} - engines: {node: '>=12'} + '@esbuild/openbsd-arm64@0.27.3': + resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.27.3': + resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.20.2': - resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} - engines: {node: '>=12'} + '@esbuild/openharmony-arm64@0.27.3': + resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.27.3': + resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.20.2': - resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} - engines: {node: '>=12'} + '@esbuild/win32-arm64@0.27.3': + resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.20.2': - resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} - engines: {node: '>=12'} + '@esbuild/win32-ia32@0.27.3': + resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.20.2': - resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} - engines: {node: '>=12'} + '@esbuild/win32-x64@0.27.3': + resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==} + engines: {node: '>=18'} cpu: [x64] os: [win32] - '@happy-dom/global-registrator@16.3.0': - resolution: {integrity: sha512-IbWtlmwmnGePbMTP3MCQYZ5S/fps6xH3uF/1RKOmCPrWN1dAt4fdA3AtmJ2eHHXZVjXc5qDm2uEr6Mp+Y/PCNg==} - engines: {node: '>=18.0.0'} + '@happy-dom/global-registrator@20.6.1': + resolution: {integrity: sha512-4Aji+soqukwUxq2DgHmkjxdGnG7hEiJuprqDlW4Wu6AQ0t8U9ItlICcM5to89pulIsEGrF1CkCoNrufQTcqb8A==} + engines: {node: '>=20.0.0'} '@hyperion-framework/validator@1.1.0': resolution: {integrity: sha512-xF6u99w6K4fsb/aoK3SBjlgJZZgG5OJjTOhCD2h8b3KXl506kjMBw1K54Yt2rsLRyJLTz1Uq19O3cwUfrCJfUQ==} - '@iiif/presentation-2@1.0.4': - resolution: {integrity: sha512-hJakpq62VBajesLJrYPtFm6hcn6c/HkKP7CmKZ5atuzu40m0nifWYsqigR1l9sZGvhhHb/DRshPmiW/0GNrJoA==} - peerDependencies: - '@iiif/presentation-3': '*' - - '@iiif/presentation-3-normalized@0.9.7': - resolution: {integrity: sha512-Aqk0sYBFIH5W3wmVxW02tnAFbNzUU5oPygGQjvszB3PP2nSkFQ1skVjqJhQPPZTyi/de1qcJUrgSy0vp6s+c5A==} - - '@iiif/presentation-3@2.2.2': - resolution: {integrity: sha512-rPYOMSg8DgkeRUQQkd4ABXHfmEr4OcvFX+gAg0V85+95Ax956Dl7ZTKSSgGxUKTUGe8ch0W/e7AExB6AJz+ViA==} - '@jridgewell/gen-mapping@0.3.13': resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} @@ -247,283 +241,321 @@ packages: '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/trace-mapping@0.3.30': resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==} - '@napi-rs/wasm-runtime@1.0.3': - resolution: {integrity: sha512-rZxtMsLwjdXkMUGC3WwsPwLNVqVqnTJT6MNIB6e+5fhMcSCPP0AOsNWuMQ5mdCq6HNjs/ZeWAEchpqeprqBD2Q==} + '@napi-rs/wasm-runtime@1.1.1': + resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==} - '@oxc-project/runtime@0.81.0': - resolution: {integrity: sha512-zm/LDVOq9FEmHiuM8zO4DWirv0VP2Tv2VsgaiHby9nvpq+FVrcqNYgv+TysLKOITQXWZj/roluTxFvpkHP0Iuw==} - engines: {node: '>=6.9.0'} + '@oxc-project/types@0.112.0': + resolution: {integrity: sha512-m6RebKHIRsax2iCwVpYW2ErQwa4ywHJrE4sCK3/8JK8ZZAWOKXaRJFl/uP51gaVyyXlaS4+chU1nSCdzYf6QqQ==} - '@oxc-project/types@0.81.0': - resolution: {integrity: sha512-CnOqkybZK8z6Gx7Wb1qF7AEnSzbol1WwcIzxYOr8e91LytGOjo0wCpgoYWZo8sdbpqX+X+TJayIzo4Pv0R/KjA==} + '@publint/pack@0.1.4': + resolution: {integrity: sha512-HDVTWq3H0uTXiU0eeSQntcVUTPP3GamzeXI41+x7uU9J65JgWQh3qWZHblR1i0npXfFtF+mxBiU2nJH8znxWnQ==} + engines: {node: '>=18'} - '@quansync/fs@0.1.4': - resolution: {integrity: sha512-vy/41FCdnIalPTQCb2Wl0ic1caMdzGus4ktDp+gpZesQNydXcx8nhh8qB3qMPbGkictOTaXgXEUUfQEm8DQYoA==} + '@quansync/fs@1.0.0': + resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==} - '@rolldown/binding-android-arm64@1.0.0-beta.32': - resolution: {integrity: sha512-Gs+313LfR4Ka3hvifdag9r44WrdKQaohya7ZXUXzARF7yx0atzFlVZjsvxtKAw1Vmtr4hB/RjUD1jf73SW7zDw==} + '@rolldown/binding-android-arm64@1.0.0-rc.3': + resolution: {integrity: sha512-0T1k9FinuBZ/t7rZ8jN6OpUKPnUjNdYHoj/cESWrQ3ZraAJ4OMm6z7QjSfCxqj8mOp9kTKc1zHK3kGz5vMu+nQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - '@rolldown/binding-darwin-arm64@1.0.0-beta.32': - resolution: {integrity: sha512-W8oMqzGcI7wKPXUtS3WJNXzbghHfNiuM1UBAGpVb+XlUCgYRQJd2PRGP7D3WGql3rR3QEhUvSyAuCBAftPQw6Q==} + '@rolldown/binding-darwin-arm64@1.0.0-rc.3': + resolution: {integrity: sha512-JWWLzvcmc/3pe7qdJqPpuPk91SoE/N+f3PcWx/6ZwuyDVyungAEJPvKm/eEldiDdwTmaEzWfIR+HORxYWrCi1A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - '@rolldown/binding-darwin-x64@1.0.0-beta.32': - resolution: {integrity: sha512-pM4c4sKUk37noJrnnDkJknLhCsfZu7aWyfe67bD0GQHfzAPjV16wPeD9CmQg4/0vv+5IfHYaa4VE536xbA+W0Q==} + '@rolldown/binding-darwin-x64@1.0.0-rc.3': + resolution: {integrity: sha512-MTakBxfx3tde5WSmbHxuqlDsIW0EzQym+PJYGF4P6lG2NmKzi128OGynoFUqoD5ryCySEY85dug4v+LWGBElIw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - '@rolldown/binding-freebsd-x64@1.0.0-beta.32': - resolution: {integrity: sha512-M8SUgFlYb5kJJWcFC8gUMRiX4WLFxPKMed3SJ2YrxontgIrEcpizPU8nLNVsRYEStoSfKHKExpQw3OP6fm+5bw==} + '@rolldown/binding-freebsd-x64@1.0.0-rc.3': + resolution: {integrity: sha512-jje3oopyOLs7IwfvXoS6Lxnmie5JJO7vW29fdGFu5YGY1EDbVDhD+P9vDihqS5X6fFiqL3ZQZCMBg6jyHkSVww==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.32': - resolution: {integrity: sha512-FuQpbNC/hE//bvv29PFnk0AtpJzdPdYl5CMhlWPovd9g3Kc3lw9TrEPIbL7gRPUdhKAiq6rVaaGvOnXxsa0eww==} + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.3': + resolution: {integrity: sha512-A0n8P3hdLAaqzSFrQoA42p23ZKBYQOw+8EH5r15Sa9X1kD9/JXe0YT2gph2QTWvdr0CVK2BOXiK6ENfy6DXOag==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.32': - resolution: {integrity: sha512-hRZygRlaGCjcNTNY9GV7dDI18sG1dK3cc7ujHq72LoDad23zFDUGMQjiSxHWK+/r92iMV+j2MiHbvzayxqynsg==} + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.3': + resolution: {integrity: sha512-kWXkoxxarYISBJ4bLNf5vFkEbb4JvccOwxWDxuK9yee8lg5XA7OpvlTptfRuwEvYcOZf+7VS69Uenpmpyo5Bjw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - '@rolldown/binding-linux-arm64-musl@1.0.0-beta.32': - resolution: {integrity: sha512-HzgT6h+CXLs+GKAU0Wvkt3rvcv0CmDBsDjlPhh4GHysOKbG9NjpKYX2zvjx671E9pGbTvcPpwy7gGsy7xpu+8g==} + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.3': + resolution: {integrity: sha512-Z03/wrqau9Bicfgb3Dbs6SYTHliELk2PM2LpG2nFd+cGupTMF5kanLEcj2vuuJLLhptNyS61rtk7SOZ+lPsTUA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - '@rolldown/binding-linux-x64-gnu@1.0.0-beta.32': - resolution: {integrity: sha512-Ab/wbf6gdzphDbsg51UaxsC93foQ7wxhtg0SVCXd25BrV4MAJ1HoDtKN/f4h0maFmJobkqYub2DlmoasUzkvBg==} + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.3': + resolution: {integrity: sha512-iSXXZsQp08CSilff/DCTFZHSVEpEwdicV3W8idHyrByrcsRDVh9sGC3sev6d8BygSGj3vt8GvUKBPCoyMA4tgQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - '@rolldown/binding-linux-x64-musl@1.0.0-beta.32': - resolution: {integrity: sha512-VoxqGEfh5A1Yx+zBp/FR5QwAbtzbuvky2SVc+ii4g1gLD4zww6mt/hPi5zG+b88zYPFBKHpxMtsz9cWqXU5V5Q==} + '@rolldown/binding-linux-x64-musl@1.0.0-rc.3': + resolution: {integrity: sha512-qaj+MFudtdCv9xZo9znFvkgoajLdc+vwf0Kz5N44g+LU5XMe+IsACgn3UG7uTRlCCvhMAGXm1XlpEA5bZBrOcw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - '@rolldown/binding-openharmony-arm64@1.0.0-beta.32': - resolution: {integrity: sha512-qZ1ViyOUDGbiZrSAJ/FIAhYUElDfVxxFW6DLT/w4KeoZN3HsF4jmRP95mXtl51/oGrqzU9l9Q2f7/P4O/o2ZZA==} + '@rolldown/binding-openharmony-arm64@1.0.0-rc.3': + resolution: {integrity: sha512-U662UnMETyjT65gFmG9ma+XziENrs7BBnENi/27swZPYagubfHRirXHG2oMl+pEax2WvO7Kb9gHZmMakpYqBHQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - '@rolldown/binding-wasm32-wasi@1.0.0-beta.32': - resolution: {integrity: sha512-hEkG3wD+f3wytV0lqwb/uCrXc4r4Ny/DWJFJPfQR3VeMWplhWGgSHNwZc2Q7k86Yi36f9NNzzWmrIuvHI9lCVw==} + '@rolldown/binding-wasm32-wasi@1.0.0-rc.3': + resolution: {integrity: sha512-gekrQ3Q2HiC1T5njGyuUJoGpK/l6B/TNXKed3fZXNf9YRTJn3L5MOZsFBn4bN2+UX+8+7hgdlTcEsexX988G4g==} engines: {node: '>=14.0.0'} cpu: [wasm32] - '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.32': - resolution: {integrity: sha512-k3MvDf8SiA7uP2ikP0unNouJ2YCrnwi7xcVW+RDgMp5YXVr3Xu6svmT3HGn0tkCKUuPmf+uy8I5uiHt5qWQbew==} + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.3': + resolution: {integrity: sha512-85y5JifyMgs8m5K2XzR/VDsapKbiFiohl7s5lEj7nmNGO0pkTXE7q6TQScei96BNAsoK7JC3pA7ukA8WRHVJpg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.32': - resolution: {integrity: sha512-wAi/FxGh7arDOUG45UmnXE1sZUa0hY4cXAO2qWAjFa3f7bTgz/BqwJ7XN5SUezvAJPNkME4fEpInfnBvM25a0w==} - cpu: [ia32] - os: [win32] - - '@rolldown/binding-win32-x64-msvc@1.0.0-beta.32': - resolution: {integrity: sha512-Ej0i4PZk8ltblZtzVK8ouaGUacUtxRmTm5S9794mdyU/tYxXjAJNseOfxrnHpMWKjMDrOKbqkPqJ52T9NR4LQQ==} + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.3': + resolution: {integrity: sha512-a4VUQZH7LxGbUJ3qJ/TzQG8HxdHvf+jOnqf7B7oFx1TEBm+j2KNL2zr5SQ7wHkNAcaPevF6gf9tQnVBnC4mD+A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - '@rolldown/pluginutils@1.0.0-beta.32': - resolution: {integrity: sha512-QReCdvxiUZAPkvp1xpAg62IeNzykOFA6syH2CnClif4YmALN1XKpB39XneL80008UbtMShthSVDKmrx05N1q/g==} + '@rolldown/pluginutils@1.0.0-rc.3': + resolution: {integrity: sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==} - '@rollup/rollup-android-arm-eabi@4.14.1': - resolution: {integrity: sha512-fH8/o8nSUek8ceQnT7K4EQbSiV7jgkHq81m9lWZFIXjJ7lJzpWXbQFpT/Zh6OZYnpFykvzC3fbEvEAFZu03dPA==} + '@rollup/rollup-android-arm-eabi@4.57.1': + resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.14.1': - resolution: {integrity: sha512-Y/9OHLjzkunF+KGEoJr3heiD5X9OLa8sbT1lm0NYeKyaM3oMhhQFvPB0bNZYJwlq93j8Z6wSxh9+cyKQaxS7PQ==} + '@rollup/rollup-android-arm64@4.57.1': + resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.14.1': - resolution: {integrity: sha512-+kecg3FY84WadgcuSVm6llrABOdQAEbNdnpi5X3UwWiFVhZIZvKgGrF7kmLguvxHNQy+UuRV66cLVl3S+Rkt+Q==} + '@rollup/rollup-darwin-arm64@4.57.1': + resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.14.1': - resolution: {integrity: sha512-2pYRzEjVqq2TB/UNv47BV/8vQiXkFGVmPFwJb+1E0IFFZbIX8/jo1olxqqMbo6xCXf8kabANhp5bzCij2tFLUA==} + '@rollup/rollup-darwin-x64@4.57.1': + resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.14.1': - resolution: {integrity: sha512-mS6wQ6Do6/wmrF9aTFVpIJ3/IDXhg1EZcQFYHZLHqw6AzMBjTHWnCG35HxSqUNphh0EHqSM6wRTT8HsL1C0x5g==} + '@rollup/rollup-freebsd-arm64@4.57.1': + resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.57.1': + resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.14.1': - resolution: {integrity: sha512-p9rGKYkHdFMzhckOTFubfxgyIO1vw//7IIjBBRVzyZebWlzRLeNhqxuSaZ7kCEKVkm/kuC9fVRW9HkC/zNRG2w==} + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.57.1': + resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.14.1': - resolution: {integrity: sha512-nDY6Yz5xS/Y4M2i9JLQd3Rofh5OR8Bn8qe3Mv/qCVpHFlwtZSBYSPaU4mrGazWkXrdQ98GB//H0BirGR/SKFSw==} + '@rollup/rollup-linux-arm64-musl@4.57.1': + resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.14.1': - resolution: {integrity: sha512-im7HE4VBL+aDswvcmfx88Mp1soqL9OBsdDBU8NqDEYtkri0qV0THhQsvZtZeNNlLeCUQ16PZyv7cqutjDF35qw==} - cpu: [ppc64le] + '@rollup/rollup-linux-loong64-gnu@4.57.1': + resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-loong64-musl@4.57.1': + resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==} + cpu: [loong64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.14.1': - resolution: {integrity: sha512-RWdiHuAxWmzPJgaHJdpvUUlDz8sdQz4P2uv367T2JocdDa98iRw2UjIJ4QxSyt077mXZT2X6pKfT2iYtVEvOFw==} + '@rollup/rollup-linux-ppc64-gnu@4.57.1': + resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-ppc64-musl@4.57.1': + resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.57.1': + resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.14.1': - resolution: {integrity: sha512-VMgaGQ5zRX6ZqV/fas65/sUGc9cPmsntq2FiGmayW9KMNfWVG/j0BAqImvU4KTeOOgYSf1F+k6at1UfNONuNjA==} + '@rollup/rollup-linux-riscv64-musl@4.57.1': + resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.57.1': + resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.14.1': - resolution: {integrity: sha512-9Q7DGjZN+hTdJomaQ3Iub4m6VPu1r94bmK2z3UeWP3dGUecRC54tmVu9vKHTm1bOt3ASoYtEz6JSRLFzrysKlA==} + '@rollup/rollup-linux-x64-gnu@4.57.1': + resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.14.1': - resolution: {integrity: sha512-JNEG/Ti55413SsreTguSx0LOVKX902OfXIKVg+TCXO6Gjans/k9O6ww9q3oLGjNDaTLxM+IHFMeXy/0RXL5R/g==} + '@rollup/rollup-linux-x64-musl@4.57.1': + resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.14.1': - resolution: {integrity: sha512-ryS22I9y0mumlLNwDFYZRDFLwWh3aKaC72CWjFcFvxK0U6v/mOkM5Up1bTbCRAhv3kEIwW2ajROegCIQViUCeA==} + '@rollup/rollup-openbsd-x64@4.57.1': + resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.57.1': + resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.57.1': + resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.14.1': - resolution: {integrity: sha512-TdloItiGk+T0mTxKx7Hp279xy30LspMso+GzQvV2maYePMAWdmrzqSNZhUpPj3CGw12aGj57I026PgLCTu8CGg==} + '@rollup/rollup-win32-ia32-msvc@4.57.1': + resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.14.1': - resolution: {integrity: sha512-wQGI+LY/Py20zdUPq+XCem7JcPOyzIJBm3dli+56DJsQOHbnXZFEwgmnC6el1TPAfC8lBT3m+z69RmLykNUbew==} + '@rollup/rollup-win32-x64-gnu@4.57.1': + resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.57.1': + resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==} cpu: [x64] os: [win32] - '@tybys/wasm-util@0.10.0': - resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==} + '@standard-schema/spec@1.1.0': + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} + + '@tybys/wasm-util@0.10.1': + resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} + + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/geojson@7946.0.14': - resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/jsesc@2.5.1': + resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==} + + '@types/node@22.19.11': + resolution: {integrity: sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==} + + '@types/whatwg-mimetype@3.0.2': + resolution: {integrity: sha512-c2AKvDT8ToxLIOUlN51gTiHXflsfIFisS4pO7pDPoKouJCESkhZnEy623gwP9laCy5lnLDAw1vAzu2vM2YLOrA==} - '@types/node@18.19.31': - resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==} + '@types/ws@8.18.1': + resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} - '@vitest/expect@2.1.8': - resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} + '@vitest/expect@4.0.18': + resolution: {integrity: sha512-8sCWUyckXXYvx4opfzVY03EOiYVxyNrHS5QxX3DAIi5dpJAAkyJezHCP77VMX4HKA2LDT/Jpfo8i2r5BE3GnQQ==} - '@vitest/mocker@2.1.8': - resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==} + '@vitest/mocker@4.0.18': + resolution: {integrity: sha512-HhVd0MDnzzsgevnOWCBj5Otnzobjy5wLBe4EdeeFGv8luMsGcYqDuFRMcttKWZA5vVO8RFjexVovXvAM4JoJDQ==} peerDependencies: msw: ^2.4.9 - vite: ^5.0.0 + vite: ^6.0.0 || ^7.0.0-0 peerDependenciesMeta: msw: optional: true vite: optional: true - '@vitest/pretty-format@2.1.8': - resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==} + '@vitest/pretty-format@4.0.18': + resolution: {integrity: sha512-P24GK3GulZWC5tz87ux0m8OADrQIUVDPIjjj65vBXYG17ZeU3qD7r+MNZ1RNv4l8CGU2vtTRqixrOi9fYk/yKw==} - '@vitest/runner@2.1.8': - resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==} + '@vitest/runner@4.0.18': + resolution: {integrity: sha512-rpk9y12PGa22Jg6g5M3UVVnTS7+zycIGk9ZNGN+m6tZHKQb7jrP7/77WfZy13Y/EUDd52NDsLRQhYKtv7XfPQw==} - '@vitest/snapshot@2.1.8': - resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==} + '@vitest/snapshot@4.0.18': + resolution: {integrity: sha512-PCiV0rcl7jKQjbgYqjtakly6T1uwv/5BQ9SwBLekVg/EaYeQFPiXcgrC2Y7vDMA8dM1SUEAEV82kgSQIlXNMvA==} - '@vitest/spy@2.1.8': - resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==} + '@vitest/spy@4.0.18': + resolution: {integrity: sha512-cbQt3PTSD7P2OARdVW3qWER5EGq7PHlvE+QfzSC0lbwO+xnt7+XH06ZzFjFRgzUX//JmpxrCu92VdwvEPlWSNw==} - '@vitest/utils@2.1.8': - resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==} + '@vitest/utils@4.0.18': + resolution: {integrity: sha512-msMRKLMVLWygpK3u2Hybgi4MNjcYJvwTb0Ru09+fOyCXIgT5raYP041DRRdiJiI3k/2U6SEbAETB3YtBrUkCFA==} ajv@6.12.2: resolution: {integrity: sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==} - ansis@4.1.0: - resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==} + ansis@4.2.0: + resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} engines: {node: '>=14'} assertion-error@2.0.1: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} - ast-kit@2.1.2: - resolution: {integrity: sha512-cl76xfBQM6pztbrFWRnxbrDm9EOqDr1BF6+qQnnDZG2Co2LjyUktkN9GTJfBAfdae+DbT2nJf2nCGAdDDN7W2g==} - engines: {node: '>=20.18.0'} - - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - - birpc@2.5.0: - resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==} + ast-kit@3.0.0-beta.1: + resolution: {integrity: sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==} + engines: {node: '>=20.19.0'} - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + birpc@4.0.0: + resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==} cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - chai@5.1.2: - resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} - engines: {node: '>=12'} - - check-error@2.1.1: - resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} - engines: {node: '>= 16'} - - chokidar@4.0.3: - resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} - engines: {node: '>= 14.16.0'} - - debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@4.4.1: - resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - deep-eql@5.0.2: - resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} - engines: {node: '>=6'} + chai@6.2.2: + resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} + engines: {node: '>=18'} defu@6.1.4: resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} - diff@8.0.2: - resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==} - engines: {node: '>=0.3.1'} - - dts-resolver@2.1.1: - resolution: {integrity: sha512-3BiGFhB6mj5Kv+W2vdJseQUYW+SKVzAFJL6YNP6ursbrwy1fXHRotfHi3xLNxe4wZl/K8qbAFeCDjZLjzqxxRw==} - engines: {node: '>=20.18.0'} + dts-resolver@2.1.3: + resolution: {integrity: sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==} + engines: {node: '>=20.19.0'} peerDependencies: oxc-resolver: '>=11.0.0' peerDependenciesMeta: @@ -534,19 +566,23 @@ packages: resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} engines: {node: '>=14'} - es-module-lexer@1.6.0: - resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} - esbuild@0.20.2: - resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} - engines: {node: '>=12'} + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + esbuild@0.27.3: + resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==} + engines: {node: '>=18'} hasBin: true estree-walker@3.0.3: resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} - expect-type@1.1.0: - resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} + expect-type@1.3.0: + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} engines: {node: '>=12.0.0'} fast-deep-equal@3.1.3: @@ -555,45 +591,33 @@ packages: fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - fdir@6.4.6: - resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] - get-tsconfig@4.10.1: - resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} - - glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - - happy-dom@16.3.0: - resolution: {integrity: sha512-Q71RaIhyS21vhW17Tpa5W36yqQXIlE1TZ0A0Gguts8PShUSQE/7fBgxYGxgm3+5y0gF6afdlAVHLQqgrIcfRzg==} - engines: {node: '>=18.0.0'} + get-tsconfig@4.13.6: + resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==} - hookable@5.5.3: - resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} + happy-dom@20.6.1: + resolution: {integrity: sha512-+0vhESXXhFwkdjZnJ5DlmJIfUYGgIEEjzIjB+aKJbFuqlvvKyOi+XkI1fYbgYR9QCxG5T08koxsQ6HrQfa5gCQ==} + engines: {node: '>=20.0.0'} - ignore-walk@5.0.1: - resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hookable@6.0.1: + resolution: {integrity: sha512-uKGyY8BuzN/a5gvzvA+3FVWo0+wUjgtfSdnmjtrOVwQCZPHpHDH2WRO3VZSOeluYrHoDCiXFffZXs8Dj1ULWtw==} - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + import-without-cache@0.2.5: + resolution: {integrity: sha512-B6Lc2s6yApwnD2/pMzFh/d5AVjdsDXjgkeJ766FmFuJELIGHNycKRj+l3A39yZPM4CchqNCB4RITEAYB1KUM6A==} + engines: {node: '>=20.19.0'} jiti@2.5.1: resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==} @@ -607,98 +631,70 @@ packages: json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - loupe@3.1.2: - resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} - - magic-string@0.30.17: - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} - - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} - ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - - nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - npm-bundled@2.0.1: - resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + obug@2.1.1: + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} - npm-normalize-package-bin@2.0.0: - resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-packlist@5.1.3: - resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - - pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + package-manager-detector@1.6.0: + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} pathe@2.0.3: resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} - pathval@2.0.0: - resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} - engines: {node: '>= 14.16'} - - picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} picomatch@4.0.3: resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} engines: {node: '>=12'} - postcss@8.4.38: - resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} - prettier@3.2.5: - resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} + prettier@3.8.1: + resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==} engines: {node: '>=14'} hasBin: true - publint@0.2.7: - resolution: {integrity: sha512-tLU4ee3110BxWfAmCZggJmCUnYWgPTr0QLnx08sqpLYa8JHRiOudd+CgzdpfU5x5eOaW2WMkpmOrFshRFYK7Mw==} - engines: {node: '>=16'} + publint@0.3.17: + resolution: {integrity: sha512-Q3NLegA9XM6usW+dYQRG1g9uEHiYUzcCVBJDJ7yMcWRqVU9LYZUWdqbwMZfmTCFC5PZLQpLAmhvRcQRl3exqkw==} + engines: {node: '>=18'} hasBin: true punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - quansync@0.2.10: - resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} - - readdirp@4.1.2: - resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} - engines: {node: '>= 14.18.0'} + quansync@1.0.0: + resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==} resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - rolldown-plugin-dts@0.15.6: - resolution: {integrity: sha512-AxQlyx3Nszob5QLmVUjz/VnC5BevtUo0h8tliuE0egddss7IbtCBU7GOe7biRU0fJNRQJmQjPKXFcc7K98j3+w==} - engines: {node: '>=20.18.0'} + rolldown-plugin-dts@0.22.1: + resolution: {integrity: sha512-5E0AiM5RSQhU6cjtkDFWH6laW4IrMu0j1Mo8x04Xo1ALHmaRMs9/7zej7P3RrryVHW/DdZAp85MA7Be55p0iUw==} + engines: {node: '>=20.19.0'} peerDependencies: + '@ts-macro/tsc': ^0.3.6 '@typescript/native-preview': '>=7.0.0-dev.20250601.1' - rolldown: ^1.0.0-beta.9 + rolldown: ^1.0.0-rc.3 typescript: ^5.0.0 - vue-tsc: ~3.0.3 + vue-tsc: ~3.2.0 peerDependenciesMeta: + '@ts-macro/tsc': + optional: true '@typescript/native-preview': optional: true typescript: @@ -706,12 +702,13 @@ packages: vue-tsc: optional: true - rolldown@1.0.0-beta.32: - resolution: {integrity: sha512-vxI2sPN07MMaoYKlFrVva5qZ1Y7DAZkgp7MQwTnyHt4FUMz9Sh+YeCzNFV9JYHI6ZNwoGWLCfCViE3XVsRC1cg==} + rolldown@1.0.0-rc.3: + resolution: {integrity: sha512-Po/YZECDOqVXjIXrtC5h++a5NLvKAQNrd9ggrIG3sbDfGO5BqTUsrI6l8zdniKRp3r5Tp/2JTrXqx4GIguFCMw==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true - rollup@4.14.1: - resolution: {integrity: sha512-4LnHSdd3QK2pa1J6dFbfm1HN0D7vSK/ZuZTsdyUAlA6Rr1yTouUTL13HaDOGJVgby461AhrNGBS7sCGXXtT+SA==} + rollup@4.57.1: + resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -719,59 +716,50 @@ packages: resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} engines: {node: '>=6'} - semver@7.7.2: - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} engines: {node: '>=10'} hasBin: true siginfo@2.0.0: resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} - source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - std-env@3.8.0: - resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@0.3.2: - resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + tinyexec@1.0.2: + resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} + engines: {node: '>=18'} - tinyexec@1.0.1: - resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} - - tinyglobby@0.2.14: - resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} engines: {node: '>=12.0.0'} - tinypool@1.0.2: - resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} - engines: {node: ^18.0.0 || >=20.0.0} - - tinyrainbow@1.2.0: - resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} - engines: {node: '>=14.0.0'} - - tinyspy@3.0.2: - resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} + tinyrainbow@3.0.3: + resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==} engines: {node: '>=14.0.0'} tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true - tsdown@0.14.1: - resolution: {integrity: sha512-/nBuFDKZeYln9hAxwWG5Cm55/823sNIVI693iVi0xRFHzf9OVUq4b/lx9PH1TErFr/IQ0kd2hutFbJIPM0XQWA==} + tsdown@0.20.3: + resolution: {integrity: sha512-qWOUXSbe4jN8JZEgrkc/uhJpC8VN2QpNu3eZkBWwNuTEjc/Ik1kcc54ycfcQ5QPRHeu9OQXaLfCI3o7pEJgB2w==} engines: {node: '>=20.19.0'} hasBin: true peerDependencies: '@arethetypeswrong/core': ^0.18.1 + '@vitejs/devtools': '*' publint: ^0.3.0 typescript: ^5.0.0 unplugin-lightningcss: ^0.4.0 @@ -779,6 +767,8 @@ packages: peerDependenciesMeta: '@arethetypeswrong/core': optional: true + '@vitejs/devtools': + optional: true publint: optional: true typescript: @@ -791,70 +781,96 @@ packages: tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - typescript@5.4.4: - resolution: {integrity: sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==} + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} engines: {node: '>=14.17'} hasBin: true - unconfig@7.3.2: - resolution: {integrity: sha512-nqG5NNL2wFVGZ0NA/aCFw0oJ2pxSf1lwg4Z5ill8wd7K4KX/rQbHlwbh+bjctXL5Ly1xtzHenHGOK0b+lG6JVg==} + unconfig-core@7.5.0: + resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==} - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + + unrun@0.2.27: + resolution: {integrity: sha512-Mmur1UJpIbfxasLOhPRvox/QS4xBiDii71hMP7smfRthGcwFL2OAmYRgduLANOAU4LUkvVamuP+02U+c90jlrw==} + engines: {node: '>=20.19.0'} + hasBin: true + peerDependencies: + synckit: ^0.11.11 + peerDependenciesMeta: + synckit: + optional: true uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - vite-node@2.1.8: - resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - - vite@5.2.8: - resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==} - engines: {node: ^18.0.0 || >=20.0.0} + vite@7.3.1: + resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - less: '*' + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 peerDependenciesMeta: '@types/node': optional: true + jiti: + optional: true less: optional: true lightningcss: optional: true sass: optional: true + sass-embedded: + optional: true stylus: optional: true sugarss: optional: true terser: optional: true + tsx: + optional: true + yaml: + optional: true - vitest@2.1.8: - resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==} - engines: {node: ^18.0.0 || >=20.0.0} + vitest@4.0.18: + resolution: {integrity: sha512-hOQuK7h0FGKgBAas7v0mSAsnvrIgAvWmRFjmzpJ7SwFHH3g1k2u37JtYwOwmEKhK6ZO3v9ggDBBm0La1LCK4uQ==} + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' - '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.1.8 - '@vitest/ui': 2.1.8 + '@opentelemetry/api': ^1.9.0 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 + '@vitest/browser-playwright': 4.0.18 + '@vitest/browser-preview': 4.0.18 + '@vitest/browser-webdriverio': 4.0.18 + '@vitest/ui': 4.0.18 happy-dom: '*' jsdom: '*' peerDependenciesMeta: '@edge-runtime/vm': optional: true + '@opentelemetry/api': + optional: true '@types/node': optional: true - '@vitest/browser': + '@vitest/browser-playwright': + optional: true + '@vitest/browser-preview': + optional: true + '@vitest/browser-webdriverio': optional: true '@vitest/ui': optional: true @@ -863,10 +879,6 @@ packages: jsdom: optional: true - webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - whatwg-mimetype@3.0.0: resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} engines: {node: '>=12'} @@ -876,136 +888,147 @@ packages: engines: {node: '>=8'} hasBin: true - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + ws@8.19.0: + resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true snapshots: - '@babel/generator@7.28.0': + '@babel/generator@8.0.0-rc.1': dependencies: - '@babel/parser': 7.28.0 - '@babel/types': 7.28.2 + '@babel/parser': 8.0.0-rc.1 + '@babel/types': 8.0.0-rc.1 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.30 + '@types/jsesc': 2.5.1 jsesc: 3.1.0 - '@babel/helper-string-parser@7.27.1': {} + '@babel/helper-string-parser@8.0.0-rc.1': {} - '@babel/helper-validator-identifier@7.27.1': {} + '@babel/helper-validator-identifier@8.0.0-rc.1': {} - '@babel/parser@7.28.0': + '@babel/parser@8.0.0-rc.1': dependencies: - '@babel/types': 7.28.2 + '@babel/types': 8.0.0-rc.1 - '@babel/types@7.28.2': + '@babel/types@8.0.0-rc.1': dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-string-parser': 8.0.0-rc.1 + '@babel/helper-validator-identifier': 8.0.0-rc.1 - '@emnapi/core@1.4.5': + '@emnapi/core@1.8.1': dependencies: - '@emnapi/wasi-threads': 1.0.4 + '@emnapi/wasi-threads': 1.1.0 tslib: 2.6.2 optional: true - '@emnapi/runtime@1.4.5': + '@emnapi/runtime@1.8.1': dependencies: tslib: 2.6.2 optional: true - '@emnapi/wasi-threads@1.0.4': + '@emnapi/wasi-threads@1.1.0': dependencies: tslib: 2.6.2 optional: true - '@esbuild/aix-ppc64@0.20.2': + '@esbuild/aix-ppc64@0.27.3': optional: true - '@esbuild/android-arm64@0.20.2': + '@esbuild/android-arm64@0.27.3': optional: true - '@esbuild/android-arm@0.20.2': + '@esbuild/android-arm@0.27.3': optional: true - '@esbuild/android-x64@0.20.2': + '@esbuild/android-x64@0.27.3': optional: true - '@esbuild/darwin-arm64@0.20.2': + '@esbuild/darwin-arm64@0.27.3': optional: true - '@esbuild/darwin-x64@0.20.2': + '@esbuild/darwin-x64@0.27.3': optional: true - '@esbuild/freebsd-arm64@0.20.2': + '@esbuild/freebsd-arm64@0.27.3': optional: true - '@esbuild/freebsd-x64@0.20.2': + '@esbuild/freebsd-x64@0.27.3': optional: true - '@esbuild/linux-arm64@0.20.2': + '@esbuild/linux-arm64@0.27.3': optional: true - '@esbuild/linux-arm@0.20.2': + '@esbuild/linux-arm@0.27.3': optional: true - '@esbuild/linux-ia32@0.20.2': + '@esbuild/linux-ia32@0.27.3': optional: true - '@esbuild/linux-loong64@0.20.2': + '@esbuild/linux-loong64@0.27.3': optional: true - '@esbuild/linux-mips64el@0.20.2': + '@esbuild/linux-mips64el@0.27.3': optional: true - '@esbuild/linux-ppc64@0.20.2': + '@esbuild/linux-ppc64@0.27.3': optional: true - '@esbuild/linux-riscv64@0.20.2': + '@esbuild/linux-riscv64@0.27.3': optional: true - '@esbuild/linux-s390x@0.20.2': + '@esbuild/linux-s390x@0.27.3': optional: true - '@esbuild/linux-x64@0.20.2': + '@esbuild/linux-x64@0.27.3': optional: true - '@esbuild/netbsd-x64@0.20.2': + '@esbuild/netbsd-arm64@0.27.3': optional: true - '@esbuild/openbsd-x64@0.20.2': + '@esbuild/netbsd-x64@0.27.3': optional: true - '@esbuild/sunos-x64@0.20.2': + '@esbuild/openbsd-arm64@0.27.3': optional: true - '@esbuild/win32-arm64@0.20.2': + '@esbuild/openbsd-x64@0.27.3': optional: true - '@esbuild/win32-ia32@0.20.2': + '@esbuild/openharmony-arm64@0.27.3': optional: true - '@esbuild/win32-x64@0.20.2': + '@esbuild/sunos-x64@0.27.3': optional: true - '@happy-dom/global-registrator@16.3.0': - dependencies: - happy-dom: 16.3.0 + '@esbuild/win32-arm64@0.27.3': + optional: true - '@hyperion-framework/validator@1.1.0': - dependencies: - ajv: 6.12.2 + '@esbuild/win32-ia32@0.27.3': + optional: true - '@iiif/presentation-2@1.0.4(@iiif/presentation-3@2.2.2)': - dependencies: - '@iiif/presentation-3': 2.2.2 + '@esbuild/win32-x64@0.27.3': + optional: true - '@iiif/presentation-3-normalized@0.9.7': + '@happy-dom/global-registrator@20.6.1': dependencies: - '@iiif/presentation-3': 2.2.2 + '@types/node': 22.19.11 + happy-dom: 20.6.1 + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@iiif/presentation-3@2.2.2': + '@hyperion-framework/validator@1.1.0': dependencies: - '@types/geojson': 7946.0.14 + ajv: 6.12.2 '@jridgewell/gen-mapping@0.3.13': dependencies: @@ -1016,169 +1039,214 @@ snapshots: '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/trace-mapping@0.3.30': dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@napi-rs/wasm-runtime@1.0.3': + '@napi-rs/wasm-runtime@1.1.1': dependencies: - '@emnapi/core': 1.4.5 - '@emnapi/runtime': 1.4.5 - '@tybys/wasm-util': 0.10.0 + '@emnapi/core': 1.8.1 + '@emnapi/runtime': 1.8.1 + '@tybys/wasm-util': 0.10.1 optional: true - '@oxc-project/runtime@0.81.0': {} + '@oxc-project/types@0.112.0': {} - '@oxc-project/types@0.81.0': {} + '@publint/pack@0.1.4': {} - '@quansync/fs@0.1.4': + '@quansync/fs@1.0.0': dependencies: - quansync: 0.2.10 + quansync: 1.0.0 - '@rolldown/binding-android-arm64@1.0.0-beta.32': + '@rolldown/binding-android-arm64@1.0.0-rc.3': optional: true - '@rolldown/binding-darwin-arm64@1.0.0-beta.32': + '@rolldown/binding-darwin-arm64@1.0.0-rc.3': optional: true - '@rolldown/binding-darwin-x64@1.0.0-beta.32': + '@rolldown/binding-darwin-x64@1.0.0-rc.3': optional: true - '@rolldown/binding-freebsd-x64@1.0.0-beta.32': + '@rolldown/binding-freebsd-x64@1.0.0-rc.3': optional: true - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.32': + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.3': optional: true - '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.32': + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.3': optional: true - '@rolldown/binding-linux-arm64-musl@1.0.0-beta.32': + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.3': optional: true - '@rolldown/binding-linux-x64-gnu@1.0.0-beta.32': + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.3': optional: true - '@rolldown/binding-linux-x64-musl@1.0.0-beta.32': + '@rolldown/binding-linux-x64-musl@1.0.0-rc.3': optional: true - '@rolldown/binding-openharmony-arm64@1.0.0-beta.32': + '@rolldown/binding-openharmony-arm64@1.0.0-rc.3': optional: true - '@rolldown/binding-wasm32-wasi@1.0.0-beta.32': + '@rolldown/binding-wasm32-wasi@1.0.0-rc.3': dependencies: - '@napi-rs/wasm-runtime': 1.0.3 + '@napi-rs/wasm-runtime': 1.1.1 optional: true - '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.32': + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.3': optional: true - '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.32': + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.3': optional: true - '@rolldown/binding-win32-x64-msvc@1.0.0-beta.32': + '@rolldown/pluginutils@1.0.0-rc.3': {} + + '@rollup/rollup-android-arm-eabi@4.57.1': + optional: true + + '@rollup/rollup-android-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-x64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.57.1': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.57.1': optional: true - '@rolldown/pluginutils@1.0.0-beta.32': {} + '@rollup/rollup-linux-arm64-gnu@4.57.1': + optional: true - '@rollup/rollup-android-arm-eabi@4.14.1': + '@rollup/rollup-linux-arm64-musl@4.57.1': optional: true - '@rollup/rollup-android-arm64@4.14.1': + '@rollup/rollup-linux-loong64-gnu@4.57.1': optional: true - '@rollup/rollup-darwin-arm64@4.14.1': + '@rollup/rollup-linux-loong64-musl@4.57.1': optional: true - '@rollup/rollup-darwin-x64@4.14.1': + '@rollup/rollup-linux-ppc64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.14.1': + '@rollup/rollup-linux-ppc64-musl@4.57.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.14.1': + '@rollup/rollup-linux-riscv64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.14.1': + '@rollup/rollup-linux-riscv64-musl@4.57.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.14.1': + '@rollup/rollup-linux-s390x-gnu@4.57.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.14.1': + '@rollup/rollup-linux-x64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.14.1': + '@rollup/rollup-linux-x64-musl@4.57.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.14.1': + '@rollup/rollup-openbsd-x64@4.57.1': optional: true - '@rollup/rollup-linux-x64-musl@4.14.1': + '@rollup/rollup-openharmony-arm64@4.57.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.14.1': + '@rollup/rollup-win32-arm64-msvc@4.57.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.14.1': + '@rollup/rollup-win32-ia32-msvc@4.57.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.14.1': + '@rollup/rollup-win32-x64-gnu@4.57.1': optional: true - '@tybys/wasm-util@0.10.0': + '@rollup/rollup-win32-x64-msvc@4.57.1': + optional: true + + '@standard-schema/spec@1.1.0': {} + + '@tybys/wasm-util@0.10.1': dependencies: tslib: 2.6.2 optional: true + '@types/chai@5.2.3': + dependencies: + '@types/deep-eql': 4.0.2 + assertion-error: 2.0.1 + + '@types/deep-eql@4.0.2': {} + '@types/estree@1.0.5': {} - '@types/geojson@7946.0.14': {} + '@types/estree@1.0.8': {} + + '@types/jsesc@2.5.1': {} - '@types/node@18.19.31': + '@types/node@22.19.11': dependencies: - undici-types: 5.26.5 + undici-types: 6.21.0 - '@vitest/expect@2.1.8': + '@types/whatwg-mimetype@3.0.2': {} + + '@types/ws@8.18.1': dependencies: - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 - chai: 5.1.2 - tinyrainbow: 1.2.0 + '@types/node': 22.19.11 - '@vitest/mocker@2.1.8(vite@5.2.8(@types/node@18.19.31))': + '@vitest/expect@4.0.18': + dependencies: + '@standard-schema/spec': 1.1.0 + '@types/chai': 5.2.3 + '@vitest/spy': 4.0.18 + '@vitest/utils': 4.0.18 + chai: 6.2.2 + tinyrainbow: 3.0.3 + + '@vitest/mocker@4.0.18(vite@7.3.1(@types/node@22.19.11)(jiti@2.5.1))': dependencies: - '@vitest/spy': 2.1.8 + '@vitest/spy': 4.0.18 estree-walker: 3.0.3 - magic-string: 0.30.17 + magic-string: 0.30.21 optionalDependencies: - vite: 5.2.8(@types/node@18.19.31) + vite: 7.3.1(@types/node@22.19.11)(jiti@2.5.1) - '@vitest/pretty-format@2.1.8': + '@vitest/pretty-format@4.0.18': dependencies: - tinyrainbow: 1.2.0 + tinyrainbow: 3.0.3 - '@vitest/runner@2.1.8': + '@vitest/runner@4.0.18': dependencies: - '@vitest/utils': 2.1.8 - pathe: 1.1.2 + '@vitest/utils': 4.0.18 + pathe: 2.0.3 - '@vitest/snapshot@2.1.8': + '@vitest/snapshot@4.0.18': dependencies: - '@vitest/pretty-format': 2.1.8 - magic-string: 0.30.17 - pathe: 1.1.2 + '@vitest/pretty-format': 4.0.18 + magic-string: 0.30.21 + pathe: 2.0.3 - '@vitest/spy@2.1.8': - dependencies: - tinyspy: 3.0.2 + '@vitest/spy@4.0.18': {} - '@vitest/utils@2.1.8': + '@vitest/utils@4.0.18': dependencies: - '@vitest/pretty-format': 2.1.8 - loupe: 3.1.2 - tinyrainbow: 1.2.0 + '@vitest/pretty-format': 4.0.18 + tinyrainbow: 3.0.3 ajv@6.12.2: dependencies: @@ -1187,402 +1255,335 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ansis@4.1.0: {} + ansis@4.2.0: {} assertion-error@2.0.1: {} - ast-kit@2.1.2: + ast-kit@3.0.0-beta.1: dependencies: - '@babel/parser': 7.28.0 + '@babel/parser': 8.0.0-rc.1 + estree-walker: 3.0.3 pathe: 2.0.3 - balanced-match@1.0.2: {} - - birpc@2.5.0: {} - - brace-expansion@2.0.1: - dependencies: - balanced-match: 1.0.2 + birpc@4.0.0: {} cac@6.7.14: {} - chai@5.1.2: - dependencies: - assertion-error: 2.0.1 - check-error: 2.1.1 - deep-eql: 5.0.2 - loupe: 3.1.2 - pathval: 2.0.0 - - check-error@2.1.1: {} - - chokidar@4.0.3: - dependencies: - readdirp: 4.1.2 - - debug@4.4.0: - dependencies: - ms: 2.1.3 - - debug@4.4.1: - dependencies: - ms: 2.1.3 - - deep-eql@5.0.2: {} + chai@6.2.2: {} defu@6.1.4: {} - diff@8.0.2: {} - - dts-resolver@2.1.1: {} + dts-resolver@2.1.3: {} empathic@2.0.0: {} - es-module-lexer@1.6.0: {} + entities@6.0.1: {} + + es-module-lexer@1.7.0: {} - esbuild@0.20.2: + esbuild@0.27.3: optionalDependencies: - '@esbuild/aix-ppc64': 0.20.2 - '@esbuild/android-arm': 0.20.2 - '@esbuild/android-arm64': 0.20.2 - '@esbuild/android-x64': 0.20.2 - '@esbuild/darwin-arm64': 0.20.2 - '@esbuild/darwin-x64': 0.20.2 - '@esbuild/freebsd-arm64': 0.20.2 - '@esbuild/freebsd-x64': 0.20.2 - '@esbuild/linux-arm': 0.20.2 - '@esbuild/linux-arm64': 0.20.2 - '@esbuild/linux-ia32': 0.20.2 - '@esbuild/linux-loong64': 0.20.2 - '@esbuild/linux-mips64el': 0.20.2 - '@esbuild/linux-ppc64': 0.20.2 - '@esbuild/linux-riscv64': 0.20.2 - '@esbuild/linux-s390x': 0.20.2 - '@esbuild/linux-x64': 0.20.2 - '@esbuild/netbsd-x64': 0.20.2 - '@esbuild/openbsd-x64': 0.20.2 - '@esbuild/sunos-x64': 0.20.2 - '@esbuild/win32-arm64': 0.20.2 - '@esbuild/win32-ia32': 0.20.2 - '@esbuild/win32-x64': 0.20.2 + '@esbuild/aix-ppc64': 0.27.3 + '@esbuild/android-arm': 0.27.3 + '@esbuild/android-arm64': 0.27.3 + '@esbuild/android-x64': 0.27.3 + '@esbuild/darwin-arm64': 0.27.3 + '@esbuild/darwin-x64': 0.27.3 + '@esbuild/freebsd-arm64': 0.27.3 + '@esbuild/freebsd-x64': 0.27.3 + '@esbuild/linux-arm': 0.27.3 + '@esbuild/linux-arm64': 0.27.3 + '@esbuild/linux-ia32': 0.27.3 + '@esbuild/linux-loong64': 0.27.3 + '@esbuild/linux-mips64el': 0.27.3 + '@esbuild/linux-ppc64': 0.27.3 + '@esbuild/linux-riscv64': 0.27.3 + '@esbuild/linux-s390x': 0.27.3 + '@esbuild/linux-x64': 0.27.3 + '@esbuild/netbsd-arm64': 0.27.3 + '@esbuild/netbsd-x64': 0.27.3 + '@esbuild/openbsd-arm64': 0.27.3 + '@esbuild/openbsd-x64': 0.27.3 + '@esbuild/openharmony-arm64': 0.27.3 + '@esbuild/sunos-x64': 0.27.3 + '@esbuild/win32-arm64': 0.27.3 + '@esbuild/win32-ia32': 0.27.3 + '@esbuild/win32-x64': 0.27.3 estree-walker@3.0.3: dependencies: '@types/estree': 1.0.5 - expect-type@1.1.0: {} + expect-type@1.3.0: {} fast-deep-equal@3.1.3: {} fast-json-stable-stringify@2.1.0: {} - fdir@6.4.6(picomatch@4.0.3): + fdir@6.5.0(picomatch@4.0.3): optionalDependencies: picomatch: 4.0.3 - fs.realpath@1.0.0: {} - fsevents@2.3.3: optional: true - get-tsconfig@4.10.1: + get-tsconfig@4.13.6: dependencies: resolve-pkg-maps: 1.0.0 - glob@8.1.0: + happy-dom@20.6.1: dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.1.6 - once: 1.4.0 - - happy-dom@16.3.0: - dependencies: - webidl-conversions: 7.0.0 + '@types/node': 22.19.11 + '@types/whatwg-mimetype': 3.0.2 + '@types/ws': 8.18.1 + entities: 6.0.1 whatwg-mimetype: 3.0.0 + ws: 8.19.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate - hookable@5.5.3: {} - - ignore-walk@5.0.1: - dependencies: - minimatch: 5.1.6 - - inflight@1.0.6: - dependencies: - once: 1.4.0 - wrappy: 1.0.2 + hookable@6.0.1: {} - inherits@2.0.4: {} + import-without-cache@0.2.5: {} - jiti@2.5.1: {} + jiti@2.5.1: + optional: true jsesc@3.1.0: {} json-schema-traverse@0.4.1: {} - loupe@3.1.2: {} - - magic-string@0.30.17: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - - minimatch@5.1.6: + magic-string@0.30.21: dependencies: - brace-expansion: 2.0.1 + '@jridgewell/sourcemap-codec': 1.5.5 mri@1.2.0: {} - ms@2.1.3: {} - - nanoid@3.3.7: {} - - npm-bundled@2.0.1: - dependencies: - npm-normalize-package-bin: 2.0.0 - - npm-normalize-package-bin@2.0.0: {} - - npm-packlist@5.1.3: - dependencies: - glob: 8.1.0 - ignore-walk: 5.0.1 - npm-bundled: 2.0.1 - npm-normalize-package-bin: 2.0.0 + nanoid@3.3.11: {} - once@1.4.0: - dependencies: - wrappy: 1.0.2 + obug@2.1.1: {} - pathe@1.1.2: {} + package-manager-detector@1.6.0: {} pathe@2.0.3: {} - pathval@2.0.0: {} - - picocolors@1.0.0: {} + picocolors@1.1.1: {} picomatch@4.0.3: {} - postcss@8.4.38: + postcss@8.5.6: dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.2.0 + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 - prettier@3.2.5: {} + prettier@3.8.1: {} - publint@0.2.7: + publint@0.3.17: dependencies: - npm-packlist: 5.1.3 - picocolors: 1.0.0 + '@publint/pack': 0.1.4 + package-manager-detector: 1.6.0 + picocolors: 1.1.1 sade: 1.8.1 punycode@2.3.1: {} - quansync@0.2.10: {} - - readdirp@4.1.2: {} + quansync@1.0.0: {} resolve-pkg-maps@1.0.0: {} - rolldown-plugin-dts@0.15.6(rolldown@1.0.0-beta.32)(typescript@5.4.4): + rolldown-plugin-dts@0.22.1(rolldown@1.0.0-rc.3)(typescript@5.9.3): dependencies: - '@babel/generator': 7.28.0 - '@babel/parser': 7.28.0 - '@babel/types': 7.28.2 - ast-kit: 2.1.2 - birpc: 2.5.0 - debug: 4.4.1 - dts-resolver: 2.1.1 - get-tsconfig: 4.10.1 - rolldown: 1.0.0-beta.32 + '@babel/generator': 8.0.0-rc.1 + '@babel/helper-validator-identifier': 8.0.0-rc.1 + '@babel/parser': 8.0.0-rc.1 + '@babel/types': 8.0.0-rc.1 + ast-kit: 3.0.0-beta.1 + birpc: 4.0.0 + dts-resolver: 2.1.3 + get-tsconfig: 4.13.6 + obug: 2.1.1 + rolldown: 1.0.0-rc.3 optionalDependencies: - typescript: 5.4.4 + typescript: 5.9.3 transitivePeerDependencies: - oxc-resolver - - supports-color - rolldown@1.0.0-beta.32: + rolldown@1.0.0-rc.3: dependencies: - '@oxc-project/runtime': 0.81.0 - '@oxc-project/types': 0.81.0 - '@rolldown/pluginutils': 1.0.0-beta.32 - ansis: 4.1.0 + '@oxc-project/types': 0.112.0 + '@rolldown/pluginutils': 1.0.0-rc.3 optionalDependencies: - '@rolldown/binding-android-arm64': 1.0.0-beta.32 - '@rolldown/binding-darwin-arm64': 1.0.0-beta.32 - '@rolldown/binding-darwin-x64': 1.0.0-beta.32 - '@rolldown/binding-freebsd-x64': 1.0.0-beta.32 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.32 - '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.32 - '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.32 - '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.32 - '@rolldown/binding-linux-x64-musl': 1.0.0-beta.32 - '@rolldown/binding-openharmony-arm64': 1.0.0-beta.32 - '@rolldown/binding-wasm32-wasi': 1.0.0-beta.32 - '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.32 - '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.32 - '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.32 - - rollup@4.14.1: + '@rolldown/binding-android-arm64': 1.0.0-rc.3 + '@rolldown/binding-darwin-arm64': 1.0.0-rc.3 + '@rolldown/binding-darwin-x64': 1.0.0-rc.3 + '@rolldown/binding-freebsd-x64': 1.0.0-rc.3 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.3 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.3 + '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.3 + '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.3 + '@rolldown/binding-linux-x64-musl': 1.0.0-rc.3 + '@rolldown/binding-openharmony-arm64': 1.0.0-rc.3 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.3 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.3 + '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.3 + + rollup@4.57.1: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.14.1 - '@rollup/rollup-android-arm64': 4.14.1 - '@rollup/rollup-darwin-arm64': 4.14.1 - '@rollup/rollup-darwin-x64': 4.14.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.14.1 - '@rollup/rollup-linux-arm64-gnu': 4.14.1 - '@rollup/rollup-linux-arm64-musl': 4.14.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.14.1 - '@rollup/rollup-linux-riscv64-gnu': 4.14.1 - '@rollup/rollup-linux-s390x-gnu': 4.14.1 - '@rollup/rollup-linux-x64-gnu': 4.14.1 - '@rollup/rollup-linux-x64-musl': 4.14.1 - '@rollup/rollup-win32-arm64-msvc': 4.14.1 - '@rollup/rollup-win32-ia32-msvc': 4.14.1 - '@rollup/rollup-win32-x64-msvc': 4.14.1 + '@rollup/rollup-android-arm-eabi': 4.57.1 + '@rollup/rollup-android-arm64': 4.57.1 + '@rollup/rollup-darwin-arm64': 4.57.1 + '@rollup/rollup-darwin-x64': 4.57.1 + '@rollup/rollup-freebsd-arm64': 4.57.1 + '@rollup/rollup-freebsd-x64': 4.57.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.57.1 + '@rollup/rollup-linux-arm-musleabihf': 4.57.1 + '@rollup/rollup-linux-arm64-gnu': 4.57.1 + '@rollup/rollup-linux-arm64-musl': 4.57.1 + '@rollup/rollup-linux-loong64-gnu': 4.57.1 + '@rollup/rollup-linux-loong64-musl': 4.57.1 + '@rollup/rollup-linux-ppc64-gnu': 4.57.1 + '@rollup/rollup-linux-ppc64-musl': 4.57.1 + '@rollup/rollup-linux-riscv64-gnu': 4.57.1 + '@rollup/rollup-linux-riscv64-musl': 4.57.1 + '@rollup/rollup-linux-s390x-gnu': 4.57.1 + '@rollup/rollup-linux-x64-gnu': 4.57.1 + '@rollup/rollup-linux-x64-musl': 4.57.1 + '@rollup/rollup-openbsd-x64': 4.57.1 + '@rollup/rollup-openharmony-arm64': 4.57.1 + '@rollup/rollup-win32-arm64-msvc': 4.57.1 + '@rollup/rollup-win32-ia32-msvc': 4.57.1 + '@rollup/rollup-win32-x64-gnu': 4.57.1 + '@rollup/rollup-win32-x64-msvc': 4.57.1 fsevents: 2.3.3 sade@1.8.1: dependencies: mri: 1.2.0 - semver@7.7.2: {} + semver@7.7.4: {} siginfo@2.0.0: {} - source-map-js@1.2.0: {} + source-map-js@1.2.1: {} stackback@0.0.2: {} - std-env@3.8.0: {} + std-env@3.10.0: {} tinybench@2.9.0: {} - tinyexec@0.3.2: {} - - tinyexec@1.0.1: {} + tinyexec@1.0.2: {} - tinyglobby@0.2.14: + tinyglobby@0.2.15: dependencies: - fdir: 6.4.6(picomatch@4.0.3) + fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 - tinypool@1.0.2: {} - - tinyrainbow@1.2.0: {} - - tinyspy@3.0.2: {} + tinyrainbow@3.0.3: {} tree-kill@1.2.2: {} - tsdown@0.14.1(publint@0.2.7)(typescript@5.4.4): + tsdown@0.20.3(publint@0.3.17)(typescript@5.9.3): dependencies: - ansis: 4.1.0 + ansis: 4.2.0 cac: 6.7.14 - chokidar: 4.0.3 - debug: 4.4.1 - diff: 8.0.2 + defu: 6.1.4 empathic: 2.0.0 - hookable: 5.5.3 - rolldown: 1.0.0-beta.32 - rolldown-plugin-dts: 0.15.6(rolldown@1.0.0-beta.32)(typescript@5.4.4) - semver: 7.7.2 - tinyexec: 1.0.1 - tinyglobby: 0.2.14 + hookable: 6.0.1 + import-without-cache: 0.2.5 + obug: 2.1.1 + picomatch: 4.0.3 + rolldown: 1.0.0-rc.3 + rolldown-plugin-dts: 0.22.1(rolldown@1.0.0-rc.3)(typescript@5.9.3) + semver: 7.7.4 + tinyexec: 1.0.2 + tinyglobby: 0.2.15 tree-kill: 1.2.2 - unconfig: 7.3.2 + unconfig-core: 7.5.0 + unrun: 0.2.27 optionalDependencies: - publint: 0.2.7 - typescript: 5.4.4 + publint: 0.3.17 + typescript: 5.9.3 transitivePeerDependencies: + - '@ts-macro/tsc' - '@typescript/native-preview' - oxc-resolver - - supports-color + - synckit - vue-tsc tslib@2.6.2: {} - typescript@5.4.4: {} + typescript@5.9.3: {} - unconfig@7.3.2: + unconfig-core@7.5.0: dependencies: - '@quansync/fs': 0.1.4 - defu: 6.1.4 - jiti: 2.5.1 - quansync: 0.2.10 + '@quansync/fs': 1.0.0 + quansync: 1.0.0 - undici-types@5.26.5: {} + undici-types@6.21.0: {} - uri-js@4.4.1: + unrun@0.2.27: dependencies: - punycode: 2.3.1 + rolldown: 1.0.0-rc.3 - vite-node@2.1.8(@types/node@18.19.31): + uri-js@4.4.1: dependencies: - cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 - pathe: 1.1.2 - vite: 5.2.8(@types/node@18.19.31) - transitivePeerDependencies: - - '@types/node' - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser + punycode: 2.3.1 - vite@5.2.8(@types/node@18.19.31): + vite@7.3.1(@types/node@22.19.11)(jiti@2.5.1): dependencies: - esbuild: 0.20.2 - postcss: 8.4.38 - rollup: 4.14.1 + esbuild: 0.27.3 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.57.1 + tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 18.19.31 + '@types/node': 22.19.11 fsevents: 2.3.3 + jiti: 2.5.1 - vitest@2.1.8(@types/node@18.19.31)(happy-dom@16.3.0): + vitest@4.0.18(@types/node@22.19.11)(happy-dom@20.6.1)(jiti@2.5.1): dependencies: - '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@5.2.8(@types/node@18.19.31)) - '@vitest/pretty-format': 2.1.8 - '@vitest/runner': 2.1.8 - '@vitest/snapshot': 2.1.8 - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 - chai: 5.1.2 - debug: 4.4.0 - expect-type: 1.1.0 - magic-string: 0.30.17 - pathe: 1.1.2 - std-env: 3.8.0 + '@vitest/expect': 4.0.18 + '@vitest/mocker': 4.0.18(vite@7.3.1(@types/node@22.19.11)(jiti@2.5.1)) + '@vitest/pretty-format': 4.0.18 + '@vitest/runner': 4.0.18 + '@vitest/snapshot': 4.0.18 + '@vitest/spy': 4.0.18 + '@vitest/utils': 4.0.18 + es-module-lexer: 1.7.0 + expect-type: 1.3.0 + magic-string: 0.30.21 + obug: 2.1.1 + pathe: 2.0.3 + picomatch: 4.0.3 + std-env: 3.10.0 tinybench: 2.9.0 - tinyexec: 0.3.2 - tinypool: 1.0.2 - tinyrainbow: 1.2.0 - vite: 5.2.8(@types/node@18.19.31) - vite-node: 2.1.8(@types/node@18.19.31) + tinyexec: 1.0.2 + tinyglobby: 0.2.15 + tinyrainbow: 3.0.3 + vite: 7.3.1(@types/node@22.19.11)(jiti@2.5.1) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 18.19.31 - happy-dom: 16.3.0 + '@types/node': 22.19.11 + happy-dom: 20.6.1 transitivePeerDependencies: + - jiti - less - lightningcss - msw - sass + - sass-embedded - stylus - sugarss - - supports-color - terser - - webidl-conversions@7.0.0: {} + - tsx + - yaml whatwg-mimetype@3.0.0: {} @@ -1591,4 +1592,4 @@ snapshots: siginfo: 2.0.0 stackback: 0.0.2 - wrappy@1.0.2: {} + ws@8.19.0: {} diff --git a/scripts/convert-p3-manifests-to-p4.mjs b/scripts/convert-p3-manifests-to-p4.mjs new file mode 100644 index 0000000..29bdbb7 --- /dev/null +++ b/scripts/convert-p3-manifests-to-p4.mjs @@ -0,0 +1,130 @@ +import { mkdirSync, readFileSync, readdirSync, rmSync, statSync, writeFileSync } from 'node:fs'; +import { dirname, join, relative, resolve } from 'node:path'; +import { normalize, serialize, serializeConfigPresentation4 } from '../dist/presentation-4.js'; + +const fixturesRoot = resolve(process.cwd(), 'fixtures'); +const outputRoot = resolve(fixturesRoot, '3-to-4-converted'); +const excludedTopLevel = new Set(['3-to-4-converted', 'presentation-4', 'cookbook-v4', 'stores']); + +function toPosixPath(value) { + return value.split('\\').join('/'); +} + +function walkJsonFiles(dir) { + const entries = readdirSync(dir).sort(); + const files = []; + + for (const entry of entries) { + const fullPath = join(dir, entry); + const stats = statSync(fullPath); + + if (stats.isDirectory()) { + files.push(...walkJsonFiles(fullPath)); + continue; + } + + if (stats.isFile() && entry.endsWith('.json')) { + files.push(fullPath); + } + } + + return files; +} + +function isPresentation3Manifest(resource) { + if (!resource || typeof resource !== 'object' || resource.type !== 'Manifest') { + return false; + } + + const context = resource['@context']; + const hasV3Context = (value) => + typeof value === 'string' && + (value.includes('/presentation/3/') || value === 'http://iiif.io/api/presentation/3/context.json'); + + if (hasV3Context(context)) { + return true; + } + + if (Array.isArray(context)) { + return context.some(hasV3Context); + } + + return false; +} + +function sanitizeConvertedManifest(resource, isTopLevel = true) { + if (Array.isArray(resource)) { + return resource.map((item) => sanitizeConvertedManifest(item, false)); + } + + if (!resource || typeof resource !== 'object') { + return resource; + } + + if (!isTopLevel && Object.prototype.hasOwnProperty.call(resource, '@context')) { + delete resource['@context']; + } + + if (resource.type === 'SpecificResource' && Array.isArray(resource.source) && resource.source.length === 1) { + resource.source = resource.source[0]; + } + + for (const [key, value] of Object.entries(resource)) { + resource[key] = sanitizeConvertedManifest(value, false); + } + + return resource; +} + +function main() { + rmSync(outputRoot, { recursive: true, force: true }); + mkdirSync(outputRoot, { recursive: true }); + + const sourceFiles = walkJsonFiles(fixturesRoot).filter((filePath) => { + const rel = toPosixPath(relative(fixturesRoot, filePath)); + const [topLevel] = rel.split('/'); + return !excludedTopLevel.has(topLevel); + }); + + const converted = []; + + for (const sourceFile of sourceFiles) { + const inputText = readFileSync(sourceFile, 'utf8'); + let inputJson; + + try { + inputJson = JSON.parse(inputText); + } catch { + continue; + } + + if (!isPresentation3Manifest(inputJson)) { + continue; + } + + const normalized = normalize(inputJson); + const upgraded = serialize( + { + mapping: normalized.mapping, + entities: normalized.entities, + requests: {}, + }, + normalized.resource, + serializeConfigPresentation4 + ); + const cleaned = sanitizeConvertedManifest(upgraded, true); + const rel = toPosixPath(relative(fixturesRoot, sourceFile)); + const destination = join(outputRoot, rel); + + mkdirSync(dirname(destination), { recursive: true }); + writeFileSync(destination, `${JSON.stringify(cleaned, null, 2)}\n`); + converted.push(toPosixPath(relative(outputRoot, destination))); + } + + converted.sort(); + writeFileSync(join(outputRoot, '_index.json'), `${JSON.stringify(converted, null, 2)}\n`); + + console.log(`Converted ${converted.length} P3 manifests to ${toPosixPath(relative(process.cwd(), outputRoot))}`); +} + +main(); diff --git a/scripts/generate-p3-to-p4-type-test.mjs b/scripts/generate-p3-to-p4-type-test.mjs new file mode 100644 index 0000000..2059710 --- /dev/null +++ b/scripts/generate-p3-to-p4-type-test.mjs @@ -0,0 +1,98 @@ +import { spawnSync } from 'node:child_process'; +import { existsSync, readFileSync, writeFileSync } from 'node:fs'; +import { join, resolve } from 'node:path'; + +const convertedRoot = resolve(process.cwd(), 'fixtures', '3-to-4-converted'); +const convertedIndex = join(convertedRoot, '_index.json'); +const outputFile = resolve(process.cwd(), '__tests__', 'presentation-types', 'p4-converted-from-p3-manifest-types.test.ts'); + +function toFixtureKey(pathname) { + return pathname.replace(/\.json$/i, '').replace(/[^a-zA-Z0-9]+/g, '_').replace(/^_+|_+$/g, '').toLowerCase(); +} + +function toObjectLiteral(value, indent = 4) { + const padding = ' '.repeat(indent); + return JSON.stringify(value, null, 2) + .split('\n') + .map((line) => `${padding}${line}`) + .join('\n'); +} + +function loadConvertedManifestFiles() { + if (!existsSync(convertedIndex)) { + throw new Error('fixtures/3-to-4-converted/_index.json does not exist. Run convert-p3-manifests-to-p4 first.'); + } + + const indexJson = JSON.parse(readFileSync(convertedIndex, 'utf8')); + if (!Array.isArray(indexJson)) { + throw new Error('fixtures/3-to-4-converted/_index.json must be an array of relative JSON paths.'); + } + + return indexJson.filter((item) => typeof item === 'string' && item.endsWith('.json')).sort(); +} + +function generateTestSource(entries) { + const lines = []; + lines.push("import { describe, expect, test } from 'vitest';"); + lines.push("import type { Manifest as Manifest4 } from '../../src/presentation-4/types';"); + lines.push(''); + lines.push('// Generated by scripts/generate-p3-to-p4-type-test.mjs from fixtures/3-to-4-converted.'); + lines.push('const manifestsByFixture = {'); + + const seenKeys = new Set(); + for (const entry of entries) { + const manifestPath = join(convertedRoot, entry); + const manifestJson = JSON.parse(readFileSync(manifestPath, 'utf8')); + if (!manifestJson || typeof manifestJson !== 'object' || manifestJson.type !== 'Manifest') { + continue; + } + + const baseKey = toFixtureKey(entry); + let key = baseKey; + let index = 2; + while (seenKeys.has(key)) { + key = `${baseKey}_${index}`; + index += 1; + } + seenKeys.add(key); + + lines.push(` ${JSON.stringify(key)}: ${toObjectLiteral(manifestJson)} satisfies Manifest4,`); + } + + lines.push('} as const;'); + lines.push(''); + lines.push("describe('presentation-4 upgraded-from-v3 fixture typing', () => {"); + lines.push(" test('all converted manifests satisfy Manifest4', () => {"); + lines.push(' expect(Object.keys(manifestsByFixture).length).toBeGreaterThan(0);'); + lines.push(' });'); + lines.push('});'); + lines.push(''); + + return lines.join('\n'); +} + +function runLint() { + const result = spawnSync('pnpm', ['run', 'lint'], { + cwd: process.cwd(), + stdio: 'inherit', + shell: process.platform === 'win32', + }); + + if (typeof result.status === 'number' && result.status !== 0) { + process.exit(result.status); + } + + if (result.error) { + throw result.error; + } +} + +function main() { + const entries = loadConvertedManifestFiles(); + const testSource = generateTestSource(entries); + writeFileSync(outputFile, testSource); + console.log(`Generated ${outputFile}`); + runLint(); +} + +main(); diff --git a/scripts/generate-p4-normalized-store-type-test.mjs b/scripts/generate-p4-normalized-store-type-test.mjs new file mode 100644 index 0000000..4c46a6f --- /dev/null +++ b/scripts/generate-p4-normalized-store-type-test.mjs @@ -0,0 +1,210 @@ +import { spawnSync } from 'node:child_process'; +import { existsSync, readFileSync, readdirSync, statSync, writeFileSync } from 'node:fs'; +import { join, relative, resolve } from 'node:path'; +import { normalize } from '../dist/presentation-4.js'; + +const repoRoot = process.cwd(); +const fixturesRoot = resolve(repoRoot, 'fixtures'); +const convertedRoot = resolve(fixturesRoot, '3-to-4-converted'); +const convertedIndex = join(convertedRoot, '_index.json'); +const outputFile = resolve( + repoRoot, + '__tests__', + 'presentation-types', + 'p4-normalized-store-types.test.ts' +); +const staticFixtureDirs = [resolve(fixturesRoot, 'presentation-4'), resolve(fixturesRoot, 'cookbook-v4')]; +const canvasLikeTypes = new Set(['Canvas', 'Scene', 'Timeline']); +const excludedFixturePaths = new Set([ + 'presentation-4/06-perspective-camera-with-choice.json', +]); + +function toPosixPath(value) { + return value.split('\\').join('/'); +} + +function walkJsonFiles(dir) { + const entries = readdirSync(dir).sort(); + const files = []; + + for (const entry of entries) { + const fullPath = join(dir, entry); + const stats = statSync(fullPath); + + if (stats.isDirectory()) { + files.push(...walkJsonFiles(fullPath)); + continue; + } + + if (stats.isFile() && entry.endsWith('.json')) { + files.push(fullPath); + } + } + + return files; +} + +function getConvertedManifestFiles() { + if (!existsSync(convertedIndex)) { + return []; + } + + const indexJson = JSON.parse(readFileSync(convertedIndex, 'utf8')); + if (!Array.isArray(indexJson)) { + return []; + } + + return indexJson + .filter((item) => typeof item === 'string' && item.endsWith('.json')) + .map((item) => join(convertedRoot, item)); +} + +function isManifest(value) { + return Boolean(value && typeof value === 'object' && value.type === 'Manifest'); +} + +function isCanvasLikeResource(value) { + return Boolean(value && typeof value === 'object' && canvasLikeTypes.has(value.type)); +} + +function pruneToSingleCanvasPerResource(value) { + if (Array.isArray(value)) { + return value.map((item) => pruneToSingleCanvasPerResource(item)); + } + + if (!value || typeof value !== 'object') { + return value; + } + + const output = {}; + for (const [key, nested] of Object.entries(value)) { + if (key !== 'items') { + output[key] = pruneToSingleCanvasPerResource(nested); + continue; + } + + if (!Array.isArray(nested)) { + output[key] = pruneToSingleCanvasPerResource(nested); + continue; + } + + const prunedItems = nested.map((item) => pruneToSingleCanvasPerResource(item)); + let canvasLikeSeen = false; + output[key] = prunedItems.filter((item) => { + if (!isCanvasLikeResource(item)) { + return true; + } + if (canvasLikeSeen) { + return false; + } + canvasLikeSeen = true; + return true; + }); + } + + return output; +} + +function toFixtureKey(pathname) { + return pathname.replace(/\.json$/i, '').replace(/[^a-zA-Z0-9]+/g, '_').replace(/^_+|_+$/g, '').toLowerCase(); +} + +function toObjectLiteral(value, indent = 4) { + const padding = ' '.repeat(indent); + return JSON.stringify(value, null, 2) + .split('\n') + .map((line) => `${padding}${line}`) + .join('\n'); +} + +function loadManifestEntries() { + const discovered = []; + for (const fixtureDir of staticFixtureDirs) { + if (!existsSync(fixtureDir)) { + continue; + } + discovered.push(...walkJsonFiles(fixtureDir)); + } + + discovered.push(...getConvertedManifestFiles()); + + const unique = [...new Set(discovered.map((filePath) => resolve(filePath)))]; + const filtered = unique.filter((filePath) => { + const rel = toPosixPath(relative(fixturesRoot, filePath)); + return !excludedFixturePaths.has(rel); + }); + filtered.sort(); + return filtered; +} + +function generateTestSource(entries) { + const lines = []; + lines.push("import { describe, expect, test } from 'vitest';"); + lines.push("import type { Presentation4Entities } from '../../src/presentation-4-normalized/types';"); + lines.push(''); + lines.push( + '// Generated by scripts/generate-p4-normalized-store-type-test.mjs from p4 fixtures and converted manifests.' + ); + lines.push('const normalizedStoresByFixture = {'); + + const seenKeys = new Set(); + let included = 0; + for (const filePath of entries) { + const fixtureJson = JSON.parse(readFileSync(filePath, 'utf8')); + if (!isManifest(fixtureJson)) { + continue; + } + + const prunedManifest = pruneToSingleCanvasPerResource(fixtureJson); + const normalized = normalize(prunedManifest); + const fixtureKeyBase = toFixtureKey(toPosixPath(relative(fixturesRoot, filePath))); + + let fixtureKey = fixtureKeyBase; + let keyCounter = 2; + while (seenKeys.has(fixtureKey)) { + fixtureKey = `${fixtureKeyBase}_${keyCounter}`; + keyCounter += 1; + } + seenKeys.add(fixtureKey); + included += 1; + + lines.push(` ${JSON.stringify(fixtureKey)}: ${toObjectLiteral(normalized.entities)} satisfies Presentation4Entities,`); + } + + lines.push('} as const;'); + lines.push(''); + lines.push("describe('presentation-4 normalized store typing', () => {"); + lines.push(" test('all normalized stores satisfy Presentation4Entities', () => {"); + lines.push(` expect(Object.keys(normalizedStoresByFixture).length).toBe(${included});`); + lines.push(' });'); + lines.push('});'); + lines.push(''); + + return lines.join('\n'); +} + +function runLint() { + const result = spawnSync('pnpm', ['run', 'lint'], { + cwd: repoRoot, + stdio: 'inherit', + shell: process.platform === 'win32', + }); + + if (typeof result.status === 'number' && result.status !== 0) { + process.exit(result.status); + } + + if (result.error) { + throw result.error; + } +} + +function main() { + const entries = loadManifestEntries(); + const testSource = generateTestSource(entries); + writeFileSync(outputFile, testSource); + console.log(`Generated ${toPosixPath(relative(repoRoot, outputFile))}`); + runLint(); +} + +main(); diff --git a/scripts/generate-presentation-4-meta.mjs b/scripts/generate-presentation-4-meta.mjs new file mode 100644 index 0000000..f0b05d2 --- /dev/null +++ b/scripts/generate-presentation-4-meta.mjs @@ -0,0 +1,406 @@ +import { promises as fs } from 'node:fs'; +import path from 'node:path'; + +const MODEL_URL = 'https://preview.iiif.io/api/prezi-4/presentation/4.0/model/'; +const ROOT = 'https://preview.iiif.io/api/prezi-4/presentation/4.0/model/'; +const OUT_DIR = path.join(process.cwd(), 'src', 'presentation-4', 'meta'); + +const GROUP_HEADINGS = new Set([ + 'Containers', + 'Annotations', + 'ContentResources', + 'Selectors', + 'scene-components', + 'utility-classes', +]); + +const RESOURCE_GROUP_NAME = { + Collection: 'topLevel', + Manifest: 'topLevel', + Range: 'topLevel', + CollectionPage: 'paging', + Timeline: 'containers', + Canvas: 'containers', + Scene: 'containers', + Annotation: 'annotations', + AnnotationCollection: 'annotations', + AnnotationPage: 'annotations', + SpecificResource: 'annotations', + TextualBody: 'annotations', + Choice: 'annotations', + FragmentSelector: 'selectors', + SvgSelector: 'selectors', + PointSelector: 'selectors', + WktSelector: 'selectors', + AudioContentSelector: 'selectors', + VisualContentSelector: 'selectors', + AnimationSelector: 'selectors', + ImageApiSelector: 'selectors', + Camera: 'sceneComponents', + OrthographicCamera: 'sceneComponents', + PerspectiveCamera: 'sceneComponents', + Light: 'sceneComponents', + AmbientLight: 'sceneComponents', + DirectionalLight: 'sceneComponents', + PointLight: 'sceneComponents', + SpotLight: 'sceneComponents', + AudioEmitters: 'sceneComponents', + AmbientAudio: 'sceneComponents', + PointAudio: 'sceneComponents', + SpotAudio: 'sceneComponents', + Transforms: 'sceneComponents', + RotateTransform: 'sceneComponents', + ScaleTransform: 'sceneComponents', + TranslateTransform: 'sceneComponents', + Agent: 'utility', + Quantity: 'utility', + Service: 'utility', +}; + +const CATEGORY_SETS = { + technical: new Set([ + 'id', + 'type', + 'format', + 'profile', + 'height', + 'width', + 'duration', + 'behavior', + 'timeMode', + 'viewingDirection', + 'version', + 'fileSize', + 'language', + ]), + descriptive: new Set(['label', 'metadata', 'summary', 'requiredStatement', 'rights', 'navDate', 'provider', 'thumbnail']), + linking: new Set(['homepage', 'logo', 'rendering', 'seeAlso', 'partOf', 'start', 'services', 'service', 'supplementary', 'canonical', 'via']), + structural: new Set(['items', 'structures', 'annotations', 'body', 'target', 'selector', 'source', 'first', 'last', 'next', 'prev', 'total', 'startIndex']), + spatialTemporal: new Set([ + 'x', + 'y', + 'z', + 'position', + 'lookAt', + 'near', + 'far', + 'fieldOfView', + 'angle', + 'rotation', + 'size', + 'region', + 'spatialScale', + 'temporalScale', + 'unit', + 'quantityValue', + 'value', + 'instant', + 'volume', + 'intensity', + 'color', + 'backgroundColor', + 'quality', + ]), + interaction: new Set([ + 'action', + 'exclude', + 'provides', + 'interactionMode', + 'styleClass', + 'stylesheet', + 'placeholderContainer', + 'accompanyingContainer', + 'transform', + 'motivation', + 'navPlace', + ]), +}; + +const PROPERTY_ID_ALIASES = { + filesize: 'fileSize', +}; + +function decodeEntities(value) { + return value + .replaceAll('&', '&') + .replaceAll('<', '<') + .replaceAll('>', '>') + .replaceAll('"', '"') + .replaceAll(''', "'") + .replaceAll(' ', ' ') + .replaceAll('–', '-') + .replaceAll('—', '-'); +} + +function stripTags(value) { + return decodeEntities(value.replace(/<[^>]*>/g, ' ')).replace(/\s+/g, ' ').trim(); +} + +function getSlice(html, startId, endId) { + const startNeedle = `id="${startId}"`; + const endNeedle = `id="${endId}"`; + const start = html.indexOf(startNeedle); + if (start < 0) { + throw new Error(`Could not find start section: ${startId}`); + } + const end = html.indexOf(endNeedle, start); + if (end < 0) { + throw new Error(`Could not find end section: ${endId}`); + } + return html.slice(start, end); +} + +function extractHeadingsWithSummary(htmlSlice, allowedLevels) { + const headingRegex = /([\s\S]*?)<\/h\1>/g; + const raw = []; + let match; + + while ((match = headingRegex.exec(htmlSlice))) { + const level = Number(match[1]); + if (!allowedLevels.has(level)) { + continue; + } + raw.push({ + level, + id: match[2], + title: stripTags(match[3]), + index: match.index, + endIndex: headingRegex.lastIndex, + }); + } + + return raw.map((entry, i) => { + const next = raw[i + 1]; + const body = htmlSlice.slice(entry.endIndex, next ? next.index : htmlSlice.length); + const paragraphs = [...body.matchAll(/

([\s\S]*?)<\/p>/g)].map((p) => stripTags(p[1])); + const preferred = paragraphs.find((paragraph) => { + if (!paragraph) { + return false; + } + if (/^\"type\":/.test(paragraph)) { + return false; + } + return paragraph.length > 24; + }); + const summary = preferred || paragraphs[0] || ''; + return { + level: entry.level, + id: entry.id, + title: entry.title, + summary, + }; + }); +} + +function extractClasses(html) { + const classSlice = getSlice(html, 'classes', 'properties'); + const headings = extractHeadingsWithSummary(classSlice, new Set([3, 4, 5])); + const classes = {}; + + for (const heading of headings) { + if (heading.level === 3 && GROUP_HEADINGS.has(heading.id)) { + continue; + } + const summary = heading.summary || `Class defined by the Presentation 4 model.`; + classes[heading.id] = { + link: `${ROOT}#${heading.id}`, + summary, + title: heading.title, + }; + } + + return Object.fromEntries(Object.entries(classes).sort(([a], [b]) => a.localeCompare(b))); +} + +function extractProperties(html) { + const propertySlice = getSlice(html, 'properties', 'dynamic-content'); + const headings = extractHeadingsWithSummary(propertySlice, new Set([3])); + const properties = {}; + + for (const heading of headings) { + const propertyName = PROPERTY_ID_ALIASES[heading.id] || heading.id; + const summary = heading.summary || `Property defined by the Presentation 4 model.`; + properties[propertyName] = { + link: `${ROOT}#${heading.id}`, + summary, + title: heading.title, + }; + } + + return Object.fromEntries(Object.entries(properties).sort(([a], [b]) => a.localeCompare(b))); +} + +function makeResourceGroups(allClasses) { + const groups = { + topLevel: [], + paging: [], + containers: [], + annotations: [], + selectors: [], + sceneComponents: [], + utility: [], + other: [], + }; + + for (const className of allClasses) { + const group = RESOURCE_GROUP_NAME[className] || 'other'; + groups[group].push(className); + } + + for (const key of Object.keys(groups)) { + groups[key].sort((a, b) => a.localeCompare(b)); + } + + return groups; +} + +function makePropertyCategories(allProperties) { + const categories = { + technical: [], + descriptive: [], + linking: [], + structural: [], + spatialTemporal: [], + interaction: [], + other: [], + }; + + for (const property of allProperties) { + if (CATEGORY_SETS.technical.has(property)) { + categories.technical.push(property); + continue; + } + if (CATEGORY_SETS.descriptive.has(property)) { + categories.descriptive.push(property); + continue; + } + if (CATEGORY_SETS.linking.has(property)) { + categories.linking.push(property); + continue; + } + if (CATEGORY_SETS.structural.has(property)) { + categories.structural.push(property); + continue; + } + if (CATEGORY_SETS.spatialTemporal.has(property)) { + categories.spatialTemporal.push(property); + continue; + } + if (CATEGORY_SETS.interaction.has(property)) { + categories.interaction.push(property); + continue; + } + + categories.other.push(property); + } + + for (const key of Object.keys(categories)) { + categories[key].sort((a, b) => a.localeCompare(b)); + } + + return categories; +} + +function ts(value) { + return JSON.stringify(value, null, 2); +} + +function createDocumentationSource(classes, properties) { + return `/** + * IIIF Presentation API version 4.0 model metadata. + * + * Source: ${MODEL_URL} + * Generated by scripts/generate-presentation-4-meta.mjs + */ + +type DocDefinition = { + link: string; + summary: string; + title: string; +}; + +const root = ${ts(ROOT)}; + +const definedTypes: Record = ${ts(classes)}; + +const propertyDocumentation: Record = ${ts(properties)}; + +export const documentation = { + attribution: + 'Copyright (c) IIIF Consortium and contributors. Generated summaries derived from the Presentation 4 model specification.', + disclaimer: 'https://iiif.io/api/annex/notes/disclaimer/', + license: 'https://creativecommons.org/licenses/by/4.0/', + version: '4.0', + root, + definedTypes, + properties: propertyDocumentation, +} as const; +`; +} + +function createResourcesSource(allClasses, groups) { + return `/** + * Presentation 4 resource type inventory derived from the model specification. + */ + +const all = ${ts(allClasses)} as const; + +export type Presentation4ResourceType = (typeof all)[number]; + +export const resources = { + all, + groups: ${ts(groups)} as const, +} as const; +`; +} + +function createPropertiesSource(allProperties, categories) { + return `/** + * Presentation 4 property inventory grouped for documentation and type work. + */ + +const all = ${ts(allProperties)} as const; + +export type Presentation4PropertyName = (typeof all)[number]; + +export const properties = { + all, + categories: ${ts(categories)} as const, +} as const; +`; +} + +async function run() { + const response = await fetch(MODEL_URL); + if (!response.ok) { + throw new Error(`Failed to fetch ${MODEL_URL}: ${response.status}`); + } + + const html = await response.text(); + const classes = extractClasses(html); + const properties = extractProperties(html); + + const allClasses = Object.keys(classes); + const allProperties = Object.keys(properties); + + const resourceGroups = makeResourceGroups(allClasses); + const propertyCategories = makePropertyCategories(allProperties); + + await fs.mkdir(OUT_DIR, { recursive: true }); + await fs.writeFile(path.join(OUT_DIR, 'documentation.ts'), createDocumentationSource(classes, properties)); + await fs.writeFile(path.join(OUT_DIR, 'resources.ts'), createResourcesSource(allClasses, resourceGroups)); + await fs.writeFile(path.join(OUT_DIR, 'properties.ts'), createPropertiesSource(allProperties, propertyCategories)); + await fs.writeFile( + path.join(OUT_DIR, 'index.ts'), + "export * from './documentation';\nexport * from './resources';\nexport * from './properties';\n" + ); + + console.log(`Generated Presentation 4 meta in ${OUT_DIR}`); + console.log(`Classes: ${allClasses.length}`); + console.log(`Properties: ${allProperties.length}`); +} + +run().catch((error) => { + console.error(error); + process.exit(1); +}); diff --git a/scripts/update-cookbook-v4.mjs b/scripts/update-cookbook-v4.mjs new file mode 100644 index 0000000..62da535 --- /dev/null +++ b/scripts/update-cookbook-v4.mjs @@ -0,0 +1,367 @@ +import { GlobalRegistrator } from '@happy-dom/global-registrator'; +import { promises as fs } from 'node:fs'; +import { join } from 'node:path'; +import { cwd } from 'node:process'; + +const { mkdir, readdir, readFile, rm, writeFile } = fs; + +const BASE_URL = 'https://preview.iiif.io/cookbook/v4/'; +const ROOT_SELECTOR = 'a[href]'; +const RECIPE_PATH_MATCHER = /^\/cookbook\/v4\/recipe\/([^/]+)\/?$/; +const EXCLUDED_RECIPE_IDS = new Set(['matrix', 'code']); +const FIXTURE_DIR = join(cwd(), 'fixtures', 'cookbook-v4'); +const fetch = globalThis.fetch.bind(globalThis); +const ARRAY_FIELDS = new Set([ + 'thumbnail', + 'provider', + 'seeAlso', + 'service', + 'services', + 'homepage', + 'rendering', + 'partOf', + 'annotations', + 'items', + 'structures', + 'motivation', + 'body', + 'target', + 'selector', + 'transform', + 'action', + 'provides', + 'exclude', + 'behavior', + 'metadata', +]); +const CONTAINER_TYPES = new Set(['Timeline', 'Canvas', 'Scene']); + +GlobalRegistrator.register(); + +function toAbsoluteUrl(maybeRelative, base) { + if (!maybeRelative) { + return null; + } + try { + return new URL(maybeRelative, base).toString(); + } catch { + return null; + } +} + +function getRecipeId(maybeRecipeUrl) { + try { + const url = new URL(maybeRecipeUrl); + const match = RECIPE_PATH_MATCHER.exec(url.pathname); + if (!match || !match[1]) { + return null; + } + return EXCLUDED_RECIPE_IDS.has(match[1]) ? null : match[1]; + } catch { + return null; + } +} + +function normalizeRecipeUrl(recipeId) { + return new URL(`recipe/${recipeId}/`, BASE_URL).toString(); +} + +function isPresentation4Context(resource) { + if (!resource || typeof resource !== 'object') { + return false; + } + const context = resource['@context']; + const values = Array.isArray(context) ? context : [context]; + return values.some( + (value) => typeof value === 'string' && /\/api\/presentation\/4\/context\.json$/.test(value) + ); +} + +function createDom(html) { + const wrapper = document.createElement('div'); + wrapper.innerHTML = html; + return wrapper; +} + +function collectRecipeUrls(indexHtml) { + const wrapper = createDom(indexHtml); + const recipeIds = new Set(); + + for (const anchor of wrapper.querySelectorAll(ROOT_SELECTOR)) { + const href = anchor.getAttribute('href'); + const absoluteUrl = toAbsoluteUrl(href, BASE_URL); + const recipeId = absoluteUrl ? getRecipeId(absoluteUrl) : null; + if (recipeId) { + recipeIds.add(recipeId); + } + } + + return Array.from(recipeIds).sort((a, b) => a.localeCompare(b)); +} + +function collectJsonCandidates(recipeHtml, recipeUrl) { + const wrapper = createDom(recipeHtml); + const candidates = new Set(); + + for (const anchor of wrapper.querySelectorAll('a[href]')) { + const href = anchor.getAttribute('href'); + const absoluteUrl = toAbsoluteUrl(href, recipeUrl); + if (!absoluteUrl) { + continue; + } + const parsed = new URL(absoluteUrl); + if (parsed.pathname.endsWith('.json')) { + candidates.add(absoluteUrl); + } + } + + for (const element of wrapper.querySelectorAll('[data-src]')) { + const value = element.getAttribute('data-src'); + const absoluteUrl = toAbsoluteUrl(value, recipeUrl); + if (!absoluteUrl) { + continue; + } + const parsed = new URL(absoluteUrl); + if (parsed.pathname.endsWith('.json')) { + candidates.add(absoluteUrl); + } + } + + for (const element of wrapper.querySelectorAll('[data-iiif-content]')) { + const value = element.getAttribute('data-iiif-content'); + const absoluteUrl = toAbsoluteUrl(value, recipeUrl); + if (!absoluteUrl) { + continue; + } + const parsed = new URL(absoluteUrl); + if (parsed.pathname.endsWith('.json')) { + candidates.add(absoluteUrl); + } + } + + return Array.from(candidates).sort((a, b) => a.localeCompare(b)); +} + +function createIndexKey(recipeId, manifestUrl, existingKeys) { + const parsed = new URL(manifestUrl); + const basePrefix = `/cookbook/v4/recipe/${recipeId}/`; + const relativePath = parsed.pathname.startsWith(basePrefix) + ? parsed.pathname.slice(basePrefix.length) + : parsed.pathname.split('/').pop() || 'manifest.json'; + + const normalized = relativePath.replace(/^v4\//, '').replace(/\.json$/, ''); + const baseKey = normalized === 'manifest' ? recipeId : `${recipeId}-${normalized.replace(/\//g, '-')}`; + let key = baseKey; + let index = 2; + + while (existingKeys.has(key)) { + key = `${baseKey}-${index}`; + index += 1; + } + + existingKeys.add(key); + return key; +} + +function sortObjectByKey(input) { + const sortedEntries = Object.entries(input).sort(([a], [b]) => a.localeCompare(b)); + return Object.fromEntries(sortedEntries); +} + +function canonicalizeForParser(value) { + if (Array.isArray(value)) { + return value.map((item) => canonicalizeForParser(item)); + } + + if (!value || typeof value !== 'object') { + return value; + } + + const output = {}; + for (const [key, nested] of Object.entries(value)) { + const normalizedNested = canonicalizeForParser(nested); + if (ARRAY_FIELDS.has(key) && typeof normalizedNested !== 'undefined' && !Array.isArray(normalizedNested)) { + output[key] = [normalizedNested]; + continue; + } + output[key] = normalizedNested; + } + return output; +} + +function collectTypeLookup(value, lookup = {}) { + if (Array.isArray(value)) { + for (const item of value) { + collectTypeLookup(item, lookup); + } + return lookup; + } + + if (!value || typeof value !== 'object') { + return lookup; + } + + if (typeof value.id === 'string' && typeof value.type === 'string' && !lookup[value.id]) { + lookup[value.id] = value.type; + } + + for (const nested of Object.values(value)) { + if (nested && typeof nested === 'object') { + collectTypeLookup(nested, lookup); + } + } + + return lookup; +} + +function inferTypeFromLookup(id, lookup, fallbackType) { + if (!id || typeof id !== 'string') { + return fallbackType; + } + + if (lookup[id]) { + return lookup[id]; + } + + const fragmentIndex = id.indexOf('#'); + if (fragmentIndex !== -1) { + const withoutFragment = id.slice(0, fragmentIndex); + if (lookup[withoutFragment]) { + return lookup[withoutFragment]; + } + } + + return fallbackType; +} + +function normalizeAnnotationTargets(value, lookup, containerHint = 'Canvas') { + if (Array.isArray(value)) { + return value.map((item) => normalizeAnnotationTargets(item, lookup, containerHint)); + } + + if (!value || typeof value !== 'object') { + return value; + } + + const currentType = typeof value.type === 'string' ? value.type : undefined; + const nextContainerHint = currentType && CONTAINER_TYPES.has(currentType) ? currentType : containerHint; + const output = {}; + + for (const [key, nested] of Object.entries(value)) { + if (currentType === 'Annotation' && key === 'target') { + const targets = Array.isArray(nested) ? nested : [nested]; + output[key] = targets.map((target) => { + if (typeof target === 'string') { + return { + id: target, + type: inferTypeFromLookup(target, lookup, nextContainerHint), + }; + } + if (target && typeof target === 'object' && !Array.isArray(target)) { + if (typeof target.id === 'string' && typeof target.type !== 'string') { + return { + ...normalizeAnnotationTargets(target, lookup, nextContainerHint), + type: inferTypeFromLookup(target.id, lookup, nextContainerHint), + }; + } + } + return normalizeAnnotationTargets(target, lookup, nextContainerHint); + }); + continue; + } + + output[key] = normalizeAnnotationTargets(nested, lookup, nextContainerHint); + } + + return output; +} + +async function fetchText(url) { + const response = await fetch(url); + if (!response.ok) { + throw new Error(`Failed to fetch ${url} (${response.status})`); + } + return response.text(); +} + +async function fetchJson(url) { + const response = await fetch(url); + if (!response.ok) { + throw new Error(`Failed to fetch ${url} (${response.status})`); + } + return response.json(); +} + +async function resetFixtureDirectory() { + await mkdir(FIXTURE_DIR, { recursive: true }); + const existing = await readdir(FIXTURE_DIR); + await Promise.all( + existing + .filter((file) => file.endsWith('.json')) + .map((file) => rm(join(FIXTURE_DIR, file), { force: true })) + ); +} + +async function main() { + await resetFixtureDirectory(); + + const indexHtml = await fetchText(BASE_URL); + const recipeIds = collectRecipeUrls(indexHtml); + const index = {}; + const indexKeys = new Set(); + + console.log(`Found ${recipeIds.length} recipe pages`); + + for (const recipeId of recipeIds) { + const recipeUrl = normalizeRecipeUrl(recipeId); + let recipeHtml; + + try { + recipeHtml = await fetchText(recipeUrl); + } catch (error) { + console.warn(`Skipping recipe ${recipeId}: ${(error && error.message) || error}`); + continue; + } + + const candidates = collectJsonCandidates(recipeHtml, recipeUrl).filter((candidateUrl) => + candidateUrl.includes(`/cookbook/v4/recipe/${recipeId}/`) + ); + + for (const candidateUrl of candidates) { + let json; + try { + json = await fetchJson(candidateUrl); + } catch (error) { + console.warn(`Skipping candidate ${candidateUrl}: ${(error && error.message) || error}`); + continue; + } + + if (!isPresentation4Context(json)) { + continue; + } + + const canonicalArrayForm = canonicalizeForParser(json); + const typeLookup = collectTypeLookup(canonicalArrayForm); + const canonical = normalizeAnnotationTargets(canonicalArrayForm, typeLookup); + + const key = createIndexKey(recipeId, candidateUrl, indexKeys); + const fixturePath = join(FIXTURE_DIR, `${key}.json`); + await writeFile(fixturePath, `${JSON.stringify(canonical, null, 2)}\n`); + + index[key] = { + id: key, + url: candidateUrl, + recipeUrl, + }; + } + } + + const sortedIndex = sortObjectByKey(index); + await writeFile(join(FIXTURE_DIR, '_index.json'), `${JSON.stringify(sortedIndex, null, 2)}\n`); + console.log(`Wrote ${Object.keys(sortedIndex).length} Presentation 4 fixtures to ${FIXTURE_DIR}`); +} + +main().catch((error) => { + console.error(error); + process.exitCode = 1; +}); diff --git a/src/image-3/index.ts b/src/image-3/index.ts index 2327259..7f536c5 100644 --- a/src/image-3/index.ts +++ b/src/image-3/index.ts @@ -1,31 +1,31 @@ -export * from './types'; -export * from './parser/parse-image-server-from-id'; -export * from './parser/parse-image-service-request'; -export * from './parser/parse-image-service-url'; -export * from './parser/parse-region-parameter'; -export * from './parser/parse-rotation-parameter'; -export * from './parser/parse-size-parameter'; -export * from './profiles/profiles'; -export * from './profiles/combine-profiles'; -export * from './profiles/level-to-profile'; -export * from './profiles/is-level-0'; -export * from './profiles/supports'; -export * from './profiles/supports-custom-sizes'; -export * from './profiles/image-service-supports-format'; -export * from './profiles/image-service-supports-request'; -export * from './serialize/image-service-request-to-string'; -export * from './serialize/image-service-request-info'; -export * from './serialize/region-parameter-to-string'; -export * from './serialize/rotation-parameter-to-string'; -export * from './serialize/size-parameter-to-string'; -export * from './utilities/canonical-service-url'; -export * from './utilities/create-image-service-request'; -export * from './utilities/extract-fixed-size-scales'; -export * from './utilities/fixed-sizes-from-scales'; -export * from './utilities/get-id'; -export * from './utilities/get-image-service-level'; -export * from './utilities/get-image-services'; -export * from './utilities/get-type'; -export * from './utilities/identify-image-server'; -export * from './utilities/is-image-service'; -export * from './utilities/is-image-service-level'; +export * from "./types"; +export * from "./parser/parse-image-server-from-id"; +export * from "./parser/parse-image-service-request"; +export * from "./parser/parse-image-service-url"; +export * from "./parser/parse-region-parameter"; +export * from "./parser/parse-rotation-parameter"; +export * from "./parser/parse-size-parameter"; +export * from "./profiles/profiles"; +export * from "./profiles/combine-profiles"; +export * from "./profiles/level-to-profile"; +export * from "./profiles/is-level-0"; +export * from "./profiles/supports"; +export * from "./profiles/supports-custom-sizes"; +export * from "./profiles/image-service-supports-format"; +export * from "./profiles/image-service-supports-request"; +export * from "./serialize/image-service-request-to-string"; +export * from "./serialize/image-service-request-info"; +export * from "./serialize/region-parameter-to-string"; +export * from "./serialize/rotation-parameter-to-string"; +export * from "./serialize/size-parameter-to-string"; +export * from "./utilities/canonical-service-url"; +export * from "./utilities/create-image-service-request"; +export * from "./utilities/extract-fixed-size-scales"; +export * from "./utilities/fixed-sizes-from-scales"; +export * from "./utilities/get-id"; +export * from "./utilities/get-image-service-level"; +export * from "./utilities/get-image-services"; +export * from "./utilities/get-type"; +export * from "./utilities/identify-image-server"; +export * from "./utilities/is-image-service"; +export * from "./utilities/is-image-service-level"; diff --git a/src/image-3/parser/parse-image-server-from-id.ts b/src/image-3/parser/parse-image-server-from-id.ts index 252fb21..e92649c 100644 --- a/src/image-3/parser/parse-image-server-from-id.ts +++ b/src/image-3/parser/parse-image-server-from-id.ts @@ -7,11 +7,11 @@ */ export function parseImageServerFromId(url: string): string { // Strip off the protocol + www - const id = url.replace(/(https?:\/\/)?(www.)?/i, ''); + const id = url.replace(/(https?:\/\/)?(www.)?/i, ""); // Strip off the path. - if (id.indexOf('/') !== -1) { - return id.split('/')[0]!; + if (id.indexOf("/") !== -1) { + return id.split("/")[0]!; } // Return the id. diff --git a/src/image-3/parser/parse-image-service-request.ts b/src/image-3/parser/parse-image-service-request.ts index 2fb2c03..7b3156e 100644 --- a/src/image-3/parser/parse-image-service-request.ts +++ b/src/image-3/parser/parse-image-service-request.ts @@ -1,49 +1,49 @@ -import { parseRegionParameter } from './parse-region-parameter'; -import { parseSizeParameter } from './parse-size-parameter'; -import { parseRotationParameter } from './parse-rotation-parameter'; -import { ImageServiceImageRequest } from '../types'; -import { parseImageServiceUrl } from './parse-image-service-url'; +import { parseRegionParameter } from "./parse-region-parameter"; +import { parseSizeParameter } from "./parse-size-parameter"; +import { parseRotationParameter } from "./parse-rotation-parameter"; +import { ImageServiceImageRequest } from "../types"; +import { parseImageServiceUrl } from "./parse-image-service-url"; -export function parseImageServiceRequest(input: string, _prefix = ''): ImageServiceImageRequest { +export function parseImageServiceRequest(input: string, _prefix = ""): ImageServiceImageRequest { const { path, scheme, server, prefix } = parseImageServiceUrl(input, _prefix); - const parts = path.split('/').reverse(); + const parts = path.split("/").reverse(); const [fileName, rotation, size, region, ...others] = parts; - const identifier = others.reverse().filter(Boolean).join('/'); + const identifier = others.reverse().filter(Boolean).join("/"); - if (parts.length === 1 || fileName === '') { + if (parts.length === 1 || fileName === "") { // likely the server will want to redirect this - return { type: 'base', scheme, server, prefix, identifier }; + return { type: "base", scheme, server, prefix, identifier }; } - if (fileName === 'info.json') { + if (fileName === "info.json") { const [, ...identifierParts] = parts; return { - type: 'info', + type: "info", scheme, server, prefix, - identifier: identifierParts.reverse().filter(Boolean).join('/'), + identifier: identifierParts.reverse().filter(Boolean).join("/"), }; } if ( - typeof scheme === 'undefined' || - typeof server === 'undefined' || - typeof path === 'undefined' || - typeof region === 'undefined' || - typeof size === 'undefined' || - typeof rotation === 'undefined' || - typeof fileName === 'undefined' + typeof scheme === "undefined" || + typeof server === "undefined" || + typeof path === "undefined" || + typeof region === "undefined" || + typeof size === "undefined" || + typeof rotation === "undefined" || + typeof fileName === "undefined" ) { - throw new Error('Invalid image service URL'); + throw new Error("Invalid image service URL"); } - const [quality = '', format = ''] = fileName.split('.'); + const [quality = "", format = ""] = fileName.split("."); return { - type: 'image', + type: "image", scheme, server, prefix, diff --git a/src/image-3/parser/parse-image-service-url.ts b/src/image-3/parser/parse-image-service-url.ts index 068f40b..1eb4ccb 100644 --- a/src/image-3/parser/parse-image-service-url.ts +++ b/src/image-3/parser/parse-image-service-url.ts @@ -1,4 +1,4 @@ -export function parseImageServiceUrl(canonicalId: string, prefix = '') { +export function parseImageServiceUrl(canonicalId: string, prefix = "") { const parsedUrl = canonicalId.match(/^(([a-zA-Z]+):\/\/([^/]+))?((.*)+)/); if (!parsedUrl) { throw new Error(`Invalid or unknown input ${canonicalId}`); @@ -6,11 +6,11 @@ export function parseImageServiceUrl(canonicalId: string, prefix = '') { const scheme = parsedUrl[2]; const server = parsedUrl[3]; let path = parsedUrl[4]!; - if (path[0] === '/') { + if (path[0] === "/") { path = path.substring(1); } if (prefix.length > 0) { - if (prefix[0] === '/') { + if (prefix[0] === "/") { prefix = prefix.substring(1); } if (prefix !== path.substring(0, prefix.length)) { diff --git a/src/image-3/parser/parse-region-parameter.ts b/src/image-3/parser/parse-region-parameter.ts index 5e8bd94..5b185f4 100644 --- a/src/image-3/parser/parse-region-parameter.ts +++ b/src/image-3/parser/parse-region-parameter.ts @@ -1,16 +1,16 @@ -import { RegionParameter } from '../types'; +import { RegionParameter } from "../types"; export function parseRegionParameter(pathPart: string): RegionParameter { try { - if (pathPart === 'full') { + if (pathPart === "full") { return { full: true }; } - if (pathPart === 'square') { + if (pathPart === "square") { return { square: true }; } - const percent = pathPart.startsWith('pct:'); - const stringParts = pathPart.substr(percent ? 4 : 0).split(','); + const percent = pathPart.startsWith("pct:"); + const stringParts = pathPart.substr(percent ? 4 : 0).split(","); const xywh = stringParts.map((part) => parseFloat(part)); return { x: xywh[0], diff --git a/src/image-3/parser/parse-rotation-parameter.ts b/src/image-3/parser/parse-rotation-parameter.ts index 83fed07..3a85f82 100644 --- a/src/image-3/parser/parse-rotation-parameter.ts +++ b/src/image-3/parser/parse-rotation-parameter.ts @@ -1,8 +1,8 @@ -import { RotationParameter } from '../types'; +import { RotationParameter } from "../types"; export function parseRotationParameter(pathPart: string): RotationParameter { const rotation: RotationParameter = { angle: 0 }; - if (pathPart[0] === '!') { + if (pathPart[0] === "!") { rotation.mirror = true; pathPart = pathPart.substr(1); } diff --git a/src/image-3/parser/parse-size-parameter.ts b/src/image-3/parser/parse-size-parameter.ts index 0a464ab..8445873 100644 --- a/src/image-3/parser/parse-size-parameter.ts +++ b/src/image-3/parser/parse-size-parameter.ts @@ -1,4 +1,4 @@ -import { SizeParameter } from '../types'; +import { SizeParameter } from "../types"; export function parseSizeParameter(pathPart: string): SizeParameter { const size: SizeParameter = { @@ -7,34 +7,34 @@ export function parseSizeParameter(pathPart: string): SizeParameter { confined: false, }; - if (pathPart[0] === '^') { + if (pathPart[0] === "^") { size.upscaled = true; pathPart = pathPart.slice(1); } - if (pathPart === 'max' || pathPart === 'full') { + if (pathPart === "max" || pathPart === "full") { size.max = true; - size.serialiseAsFull = pathPart === 'full'; + size.serialiseAsFull = pathPart === "full"; return size; } - if (pathPart[0] === '!') { + if (pathPart[0] === "!") { size.confined = true; pathPart = pathPart.slice(1); } - if (pathPart[0] === 'p') { + if (pathPart[0] === "p") { size.percentScale = parseFloat(pathPart.slice(4)); return size; } - const wh = pathPart.split(',').map((t) => t.trim()); + const wh = pathPart.split(",").map((t) => t.trim()); if (wh.length) { - if (wh[0] !== '') { + if (wh[0] !== "") { size.width = parseInt(wh[0]!, 10); } - if (wh[1] !== '') { + if (wh[1] !== "") { size.height = parseInt(wh[1]!, 10); } } diff --git a/src/image-3/profiles/combine-profiles.ts b/src/image-3/profiles/combine-profiles.ts index 633831a..afe420e 100644 --- a/src/image-3/profiles/combine-profiles.ts +++ b/src/image-3/profiles/combine-profiles.ts @@ -1,6 +1,6 @@ -import { levelToProfile } from './level-to-profile'; -import { Profile } from './profiles'; -import { ImageService } from '@iiif/presentation-3'; +import { levelToProfile } from "./level-to-profile"; +import { Profile } from "./profiles"; +import type { ImageService } from "../../presentation-3/types"; export function combineProfiles(service: ImageService): Profile { const profiles: any[] = service ? (Array.isArray(service.profile) ? service.profile : [service.profile]) : []; @@ -11,7 +11,7 @@ export function combineProfiles(service: ImageService): Profile { }; for (let profile of profiles) { - if (typeof profile === 'string') { + if (typeof profile === "string") { profile = levelToProfile(profile); } diff --git a/src/image-3/profiles/image-service-supports-format.ts b/src/image-3/profiles/image-service-supports-format.ts index 81732e7..48632a1 100644 --- a/src/image-3/profiles/image-service-supports-format.ts +++ b/src/image-3/profiles/image-service-supports-format.ts @@ -1,5 +1,5 @@ -import { ImageService } from '@iiif/presentation-3'; -import { supports } from './supports'; +import type { ImageService } from "../../presentation-3/types"; +import { supports } from "./supports"; export function imageServiceSupportsFormat(imageService: ImageService, format: string) { return supports(imageService, { diff --git a/src/image-3/profiles/image-service-supports-request.ts b/src/image-3/profiles/image-service-supports-request.ts index d031023..5a16771 100644 --- a/src/image-3/profiles/image-service-supports-request.ts +++ b/src/image-3/profiles/image-service-supports-request.ts @@ -1,48 +1,48 @@ -import { ImageService } from '@iiif/presentation-3'; -import { ImageServiceImageRequest } from '../types'; -import { supports } from './supports'; -import { ExtraFeature } from './profiles'; +import type { ImageService } from "../../presentation-3/types"; +import { ImageServiceImageRequest } from "../types"; +import { supports } from "./supports"; +import { ExtraFeature } from "./profiles"; export function imageServiceSupportsRequest(imageService: ImageService, request: ImageServiceImageRequest) { - if (request.type !== 'image') { + if (request.type !== "image") { return [true]; } const extraFeatures: ExtraFeature[] = []; if (request.rotation.mirror) { - extraFeatures.push('mirroring'); + extraFeatures.push("mirroring"); } if (request.region.percent) { - extraFeatures.push('regionByPct'); + extraFeatures.push("regionByPct"); } if (request.region.square) { - extraFeatures.push('regionSquare'); + extraFeatures.push("regionSquare"); } else if (!request.region.full) { - extraFeatures.push('regionByPx'); + extraFeatures.push("regionByPx"); } if (request.rotation.angle) { const remainder = request.rotation.angle % 90; if (remainder) { - extraFeatures.push('rotationArbitrary'); + extraFeatures.push("rotationArbitrary"); } else { - extraFeatures.push('rotationBy90s'); + extraFeatures.push("rotationBy90s"); } } if (request.size.confined) { - extraFeatures.push('sizeByConfinedWh'); + extraFeatures.push("sizeByConfinedWh"); } if (!request.size.width && request.size.height) { - extraFeatures.push('sizeByH'); + extraFeatures.push("sizeByH"); } if (request.size.percentScale) { - extraFeatures.push('sizeByPct'); + extraFeatures.push("sizeByPct"); } // Could we bail, and check sizes instead? @@ -53,19 +53,19 @@ export function imageServiceSupportsRequest(imageService: ImageService, request: (size.height === request.size.height && size.width === request.size.width) ); if (fixedSize) { - extraFeatures.push('sizeByWhListed'); + extraFeatures.push("sizeByWhListed"); } else { if (request.size.width && !request.size.height) { - extraFeatures.push('sizeByW'); + extraFeatures.push("sizeByW"); } if (request.size.width && request.size.height) { - extraFeatures.push('sizeByWh'); + extraFeatures.push("sizeByWh"); } } if (request.size.upscaled) { - extraFeatures.push('sizeUpscaling'); + extraFeatures.push("sizeUpscaling"); } const [doesSupport, reason] = supports(imageService, { diff --git a/src/image-3/profiles/is-level-0.ts b/src/image-3/profiles/is-level-0.ts index 60baa0a..f327d07 100644 --- a/src/image-3/profiles/is-level-0.ts +++ b/src/image-3/profiles/is-level-0.ts @@ -1,11 +1,11 @@ -import { ImageService } from '@iiif/presentation-3'; -import { onlyLevel0 } from './profiles'; +import type { ImageService } from "../../presentation-3/types"; +import { onlyLevel0 } from "./profiles"; export function isLevel0(service: ImageService) { const profile = Array.isArray(service.profile) ? service.profile : [service.profile]; for (const single of profile) { - if (typeof single === 'string' && onlyLevel0.indexOf(single) !== -1) { + if (typeof single === "string" && onlyLevel0.indexOf(single) !== -1) { return true; } } diff --git a/src/image-3/profiles/level-to-profile.ts b/src/image-3/profiles/level-to-profile.ts index 6a1db08..89bb9d3 100644 --- a/src/image-3/profiles/level-to-profile.ts +++ b/src/image-3/profiles/level-to-profile.ts @@ -1,4 +1,4 @@ -import { level0, level1, level1Support, level2, level2Support, Profile } from './profiles'; +import { level0, level1, level1Support, level2, level2Support, Profile } from "./profiles"; export function levelToProfile(levelProfile: string): Profile { const isLevel2 = level2Support.indexOf(levelProfile) !== -1; diff --git a/src/image-3/profiles/profiles.ts b/src/image-3/profiles/profiles.ts index 3f309c6..6d74787 100644 --- a/src/image-3/profiles/profiles.ts +++ b/src/image-3/profiles/profiles.ts @@ -1,41 +1,41 @@ -export const STANFORD_IIIF_IMAGE_COMPLIANCE_0 = 'http://library.stanford.edu/iiif/image-api/compliance.html#level0'; -export const STANFORD_IIIF_IMAGE_COMPLIANCE_1 = 'http://library.stanford.edu/iiif/image-api/compliance.html#level1'; -export const STANFORD_IIIF_IMAGE_COMPLIANCE_2 = 'http://library.stanford.edu/iiif/image-api/compliance.html#level2'; -export const STANFORD_IIIF_IMAGE_CONFORMANCE_0 = 'http://library.stanford.edu/iiif/image-api/conformance.html#level0'; -export const STANFORD_IIIF_IMAGE_CONFORMANCE_1 = 'http://library.stanford.edu/iiif/image-api/conformance.html#level1'; -export const STANFORD_IIIF_IMAGE_CONFORMANCE_2 = 'http://library.stanford.edu/iiif/image-api/conformance.html#level2'; +export const STANFORD_IIIF_IMAGE_COMPLIANCE_0 = "http://library.stanford.edu/iiif/image-api/compliance.html#level0"; +export const STANFORD_IIIF_IMAGE_COMPLIANCE_1 = "http://library.stanford.edu/iiif/image-api/compliance.html#level1"; +export const STANFORD_IIIF_IMAGE_COMPLIANCE_2 = "http://library.stanford.edu/iiif/image-api/compliance.html#level2"; +export const STANFORD_IIIF_IMAGE_CONFORMANCE_0 = "http://library.stanford.edu/iiif/image-api/conformance.html#level0"; +export const STANFORD_IIIF_IMAGE_CONFORMANCE_1 = "http://library.stanford.edu/iiif/image-api/conformance.html#level1"; +export const STANFORD_IIIF_IMAGE_CONFORMANCE_2 = "http://library.stanford.edu/iiif/image-api/conformance.html#level2"; export const STANFORD_IIIF_1_IMAGE_COMPLIANCE_0 = - 'http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level0'; + "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level0"; export const STANFORD_IIIF_1_IMAGE_COMPLIANCE_1 = - 'http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1'; + "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1"; export const STANFORD_IIIF_1_IMAGE_COMPLIANCE_2 = - 'http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2'; + "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2"; export const STANFORD_IIIF_1_IMAGE_CONFORMANCE_0 = - 'http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level0'; + "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level0"; export const STANFORD_IIIF_1_IMAGE_CONFORMANCE_1 = - 'http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1'; + "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1"; export const STANFORD_IIIF_1_IMAGE_CONFORMANCE_2 = - 'http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level2'; -export const IIIF_1_IMAGE_LEVEL_0 = 'http://iiif.io/api/image/1/level0.json'; -export const IIIF_1_IMAGE_LEVEL_0_PROFILE = 'http://iiif.io/api/image/1/profiles/level0.json'; -export const IIIF_1_IMAGE_LEVEL_1 = 'http://iiif.io/api/image/1/level1.json'; -export const IIIF_1_IMAGE_LEVEL_1_PROFILE = 'http://iiif.io/api/image/1/profiles/level1.json'; -export const IIIF_1_IMAGE_LEVEL_2 = 'http://iiif.io/api/image/1/level2.json'; -export const IIIF_1_IMAGE_LEVEL_2_PROFILE = 'http://iiif.io/api/image/1/profiles/level2.json'; -export const IIIF_2_IMAGE_LEVEL_0 = 'http://iiif.io/api/image/2/level0.json'; -export const IIIF_2_IMAGE_LEVEL_0_PROFILE = 'http://iiif.io/api/image/2/profiles/level0.json'; -export const IIIF_2_IMAGE_LEVEL_1 = 'http://iiif.io/api/image/2/level1.json'; -export const IIIF_2_IMAGE_LEVEL_1_PROFILE = 'http://iiif.io/api/image/2/profiles/level1.json'; -export const IIIF_2_IMAGE_LEVEL_2 = 'http://iiif.io/api/image/2/level2.json'; -export const IIIF_2_IMAGE_LEVEL_2_PROFILE = 'http://iiif.io/api/image/2/profiles/level2.json'; -export const IIIF_3_IMAGE_LEVEL_0 = 'level0'; -export const IIIF_3_IMAGE_LEVEL_1 = 'level1'; -export const IIIF_3_IMAGE_LEVEL_2 = 'level2'; + "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level2"; +export const IIIF_1_IMAGE_LEVEL_0 = "http://iiif.io/api/image/1/level0.json"; +export const IIIF_1_IMAGE_LEVEL_0_PROFILE = "http://iiif.io/api/image/1/profiles/level0.json"; +export const IIIF_1_IMAGE_LEVEL_1 = "http://iiif.io/api/image/1/level1.json"; +export const IIIF_1_IMAGE_LEVEL_1_PROFILE = "http://iiif.io/api/image/1/profiles/level1.json"; +export const IIIF_1_IMAGE_LEVEL_2 = "http://iiif.io/api/image/1/level2.json"; +export const IIIF_1_IMAGE_LEVEL_2_PROFILE = "http://iiif.io/api/image/1/profiles/level2.json"; +export const IIIF_2_IMAGE_LEVEL_0 = "http://iiif.io/api/image/2/level0.json"; +export const IIIF_2_IMAGE_LEVEL_0_PROFILE = "http://iiif.io/api/image/2/profiles/level0.json"; +export const IIIF_2_IMAGE_LEVEL_1 = "http://iiif.io/api/image/2/level1.json"; +export const IIIF_2_IMAGE_LEVEL_1_PROFILE = "http://iiif.io/api/image/2/profiles/level1.json"; +export const IIIF_2_IMAGE_LEVEL_2 = "http://iiif.io/api/image/2/level2.json"; +export const IIIF_2_IMAGE_LEVEL_2_PROFILE = "http://iiif.io/api/image/2/profiles/level2.json"; +export const IIIF_3_IMAGE_LEVEL_0 = "level0"; +export const IIIF_3_IMAGE_LEVEL_1 = "level1"; +export const IIIF_3_IMAGE_LEVEL_2 = "level2"; // Non-standard -export const IIIF_2_IMAGE_LEVEL_0_NO_JSON = 'http://iiif.io/api/image/2/level0'; -export const IIIF_2_IMAGE_LEVEL_1_NO_JSON = 'http://iiif.io/api/image/2/level1'; -export const IIIF_2_IMAGE_LEVEL_2_NO_JSON = 'http://iiif.io/api/image/2/level2'; +export const IIIF_2_IMAGE_LEVEL_0_NO_JSON = "http://iiif.io/api/image/2/level0"; +export const IIIF_2_IMAGE_LEVEL_1_NO_JSON = "http://iiif.io/api/image/2/level1"; +export const IIIF_2_IMAGE_LEVEL_2_NO_JSON = "http://iiif.io/api/image/2/level2"; export const level2Support = [ IIIF_2_IMAGE_LEVEL_2_NO_JSON, @@ -122,24 +122,24 @@ export type Profile = { }; export const level0: Profile = { - extraFormats: ['jpg'], - extraQualities: ['default'], - extraFeatures: ['sizeByWhListed'], + extraFormats: ["jpg"], + extraQualities: ["default"], + extraFeatures: ["sizeByWhListed"], }; export const level1: Profile = { - extraFormats: ['jpg'], - extraQualities: ['default'], + extraFormats: ["jpg"], + extraQualities: ["default"], extraFeatures: [ - 'baseUriRedirect', - 'cors', - 'jsonldMediaType', - 'regionByPx', - 'regionSquare', - 'sizeByWhListed', - 'sizeByH', - 'sizeByW', - 'sizeByWh', + "baseUriRedirect", + "cors", + "jsonldMediaType", + "regionByPx", + "regionSquare", + "sizeByWhListed", + "sizeByH", + "sizeByW", + "sizeByWh", // 2.1 // 'sizeByPct', <-- Used to be supported in 2.1 @@ -147,22 +147,22 @@ export const level1: Profile = { }; export const level2: Profile = { - extraFormats: ['jpg', 'png'], - extraQualities: ['default'], + extraFormats: ["jpg", "png"], + extraQualities: ["default"], extraFeatures: [ - 'baseUriRedirect', - 'cors', - 'jsonldMediaType', - 'regionByPct', - 'regionByPx', - 'regionSquare', - 'rotationBy90s', - 'sizeByWhListed', - 'sizeByConfinedWh', - 'sizeByH', - 'sizeByPct', - 'sizeByW', - 'sizeByWh', + "baseUriRedirect", + "cors", + "jsonldMediaType", + "regionByPct", + "regionByPx", + "regionSquare", + "rotationBy90s", + "sizeByWhListed", + "sizeByConfinedWh", + "sizeByH", + "sizeByPct", + "sizeByW", + "sizeByWh", // 2.1 // 'sizeByDistortedWh', <-- Used to be supported in 2.1 @@ -172,44 +172,44 @@ export const level2: Profile = { export const extraFeatures = [ // The base URI of the service will redirect to the image information document. - 'baseUriRedirect', + "baseUriRedirect", // The canonical image URI HTTP link header is provided on image responses. - 'canonicalLinkHeader', + "canonicalLinkHeader", // The CORS HTTP headers are provided on all responses. - 'cors', + "cors", // The JSON-LD media type is provided when requested. - 'jsonldMediaType', + "jsonldMediaType", // The image may be rotated around the vertical axis, resulting in a left-to-right mirroring of the content. - 'mirroring', + "mirroring", // The profile HTTP link header is provided on image responses. - 'profileLinkHeader', + "profileLinkHeader", // Regions of the full image may be requested by percentage. - 'regionByPct', + "regionByPct", // Regions of the full image may be requested by pixel dimensions. - 'regionByPx', + "regionByPx", // A square region may be requested, where the width and height are equal to the shorter dimension of the full image. - 'regionSquare', + "regionSquare", // Image rotation may be requested using values other than multiples of 90 degrees. - 'rotationArbitrary', + "rotationArbitrary", // Image rotation may be requested in multiples of 90 degrees. - 'rotationBy90s', + "rotationBy90s", // Image size may be requested in the form !w,h. - 'sizeByConfinedWh', + "sizeByConfinedWh", // Image size may be requested in the form ,h. - 'sizeByH', + "sizeByH", // Images size may be requested in the form pct:n. - 'sizeByPct', + "sizeByPct", // Image size may be requested in the form w,. - 'sizeByW', + "sizeByW", // Image size may be requested in the form w,h. - 'sizeByWh', + "sizeByWh", // Image sizes prefixed with ^ may be requested. - 'sizeUpscaling', + "sizeUpscaling", // 2.1.1 compat - 'sizeByWhListed', - 'sizeByDistortedWh', - 'sizeByForcedWh', + "sizeByWhListed", + "sizeByDistortedWh", + "sizeByForcedWh", ] as const; export type ExtraFeature = typeof extraFeatures extends ReadonlyArray ? ElementType : never; diff --git a/src/image-3/profiles/supports-custom-sizes.ts b/src/image-3/profiles/supports-custom-sizes.ts index 01f3671..bbe029b 100644 --- a/src/image-3/profiles/supports-custom-sizes.ts +++ b/src/image-3/profiles/supports-custom-sizes.ts @@ -1,6 +1,6 @@ -import { ImageService } from '@iiif/presentation-3'; -import { isImageService } from '../utilities/is-image-service'; -import { level1Support, Profile } from './profiles'; +import type { ImageService } from "../../presentation-3/types"; +import { isImageService } from "../utilities/is-image-service"; +import { level1Support, Profile } from "./profiles"; export function supportsCustomSizes(service: ImageService): boolean { if (!isImageService(service)) { @@ -10,15 +10,15 @@ export function supportsCustomSizes(service: ImageService): boolean { const profiles = Array.isArray(service.profile) ? service.profile : [service.profile]; for (const profile of profiles) { - if (typeof profile === 'string') { + if (typeof profile === "string") { if (level1Support.indexOf(profile) !== -1) { return true; } } else { const supports = [...(profile.supports || []), ...((profile as Profile).extraFeatures || [])]; if ( - supports.indexOf('regionByPx') !== -1 && - (supports.indexOf('sizeByW') !== -1 || supports.indexOf('sizeByWh') !== -1) + supports.indexOf("regionByPx") !== -1 && + (supports.indexOf("sizeByW") !== -1 || supports.indexOf("sizeByWh") !== -1) ) { return true; } diff --git a/src/image-3/profiles/supports.ts b/src/image-3/profiles/supports.ts index 026b38e..09957b2 100644 --- a/src/image-3/profiles/supports.ts +++ b/src/image-3/profiles/supports.ts @@ -1,14 +1,14 @@ -import { ImageService } from '@iiif/presentation-3'; -import { extraFeatures, Profile } from './profiles'; -import { isImageService } from '../utilities/is-image-service'; -import { combineProfiles } from './combine-profiles'; +import type { ImageService } from "../../presentation-3/types"; +import { extraFeatures, Profile } from "./profiles"; +import { isImageService } from "../utilities/is-image-service"; +import { combineProfiles } from "./combine-profiles"; export function supports( service: ImageService, req: Partial & { exactSize?: { width?: number; height?: number } } ) { if (!isImageService(service)) { - return [false, 'Not a valid image service'] as const; + return [false, "Not a valid image service"] as const; } req.extraFeatures = req.extraFeatures ? req.extraFeatures : []; @@ -21,14 +21,14 @@ export function supports( if (service.sizes) { for (const size of service.sizes) { if (size.width && size.width === req.exactSize.width) { - if (extraFeatures.indexOf('sizeByW') !== -1) { + if (extraFeatures.indexOf("sizeByW") !== -1) { valid = true; } else if (size.height && size.height === req.exactSize.height) { valid = true; } } if (size.height && size.height === req.exactSize.height) { - if (extraFeatures.indexOf('sizeByH') !== -1) { + if (extraFeatures.indexOf("sizeByH") !== -1) { valid = true; } else if (size.width && size.width === req.exactSize.width) { valid = true; @@ -47,12 +47,12 @@ export function supports( ) || undefined; if (!req.exactSize.height && req.exactSize.width) { - if (req.extraFeatures.indexOf('sizeByW') === -1) { - req.extraFeatures.push('sizeByW'); + if (req.extraFeatures.indexOf("sizeByW") === -1) { + req.extraFeatures.push("sizeByW"); } } else if (!req.exactSize.width && req.exactSize.height) { - if (req.extraFeatures.indexOf('sizeByH') === -1) { - req.extraFeatures.push('sizeByH'); + if (req.extraFeatures.indexOf("sizeByH") === -1) { + req.extraFeatures.push("sizeByH"); } } } @@ -78,7 +78,7 @@ export function supports( } } if (missingFeatures.length) { - return [false, `Missing features: ${missingFeatures.join(', ')}`] as const; + return [false, `Missing features: ${missingFeatures.join(", ")}`] as const; } } @@ -90,7 +90,7 @@ export function supports( } } if (missingFormats.length) { - return [false, `Missing formats: ${missingFormats.join(', ')}`] as const; + return [false, `Missing formats: ${missingFormats.join(", ")}`] as const; } } @@ -102,7 +102,7 @@ export function supports( } } if (missingQualities.length) { - return [false, `Missing qualities: ${missingQualities.join(', ')}`] as const; + return [false, `Missing qualities: ${missingQualities.join(", ")}`] as const; } } diff --git a/src/image-3/serialize/image-service-request-info.ts b/src/image-3/serialize/image-service-request-info.ts index c9ac65b..37a9c4f 100644 --- a/src/image-3/serialize/image-service-request-info.ts +++ b/src/image-3/serialize/image-service-request-info.ts @@ -1,7 +1,7 @@ -import { ImageService } from "@iiif/presentation-3"; +import type { ImageService } from "../../presentation-3/types"; import { ImageServiceImageRequest } from "../types"; import { imageServiceRequestToString } from "./image-service-request-to-string"; export function imageServiceRequestInfo(req: ImageServiceImageRequest, service?: ImageService): string { - return imageServiceRequestToString({ ...req, type: 'info' }, service); -} \ No newline at end of file + return imageServiceRequestToString({ ...req, type: "info" }, service); +} diff --git a/src/image-3/serialize/image-service-request-to-string.ts b/src/image-3/serialize/image-service-request-to-string.ts index b1351ca..31a3d2d 100644 --- a/src/image-3/serialize/image-service-request-to-string.ts +++ b/src/image-3/serialize/image-service-request-to-string.ts @@ -1,18 +1,18 @@ -import { ImageServiceImageRequest } from '../types'; -import { regionParameterToString } from './region-parameter-to-string'; -import { sizeParameterToString } from './size-parameter-to-string'; -import { rotationParameterToString } from './rotation-parameter-to-string'; -import { ImageService } from '@iiif/presentation-3'; +import { ImageServiceImageRequest } from "../types"; +import { regionParameterToString } from "./region-parameter-to-string"; +import { sizeParameterToString } from "./size-parameter-to-string"; +import { rotationParameterToString } from "./rotation-parameter-to-string"; +import type { ImageService } from "../../presentation-3/types"; export function imageServiceRequestToString(req: ImageServiceImageRequest, service?: ImageService): string { - const prefix = req.prefix.startsWith('/') ? req.prefix.substring(1) : req.prefix; - const baseUrl = `${req.scheme}://${req.server}/${prefix ? `${prefix}/` : ''}${req.identifier}`; + const prefix = req.prefix.startsWith("/") ? req.prefix.substring(1) : req.prefix; + const baseUrl = `${req.scheme}://${req.server}/${prefix ? `${prefix}/` : ""}${req.identifier}`; - if (req.type === 'base') { + if (req.type === "base") { return baseUrl; } - if (req.type === 'info') { + if (req.type === "info") { return `${baseUrl}/info.json`; } @@ -21,13 +21,13 @@ export function imageServiceRequestToString(req: ImageServiceImageRequest, servi if (service) { // Service specific changes. - const ctx = service['@context'] - ? Array.isArray(service['@context']) - ? service['@context'] - : [service['@context']] + const ctx = service["@context"] + ? Array.isArray(service["@context"]) + ? service["@context"] + : [service["@context"]] : []; - const is2 = ctx.indexOf('http://iiif.io/api/image/2/context.json') !== -1; - const is3 = ctx.indexOf('http://iiif.io/api/image/3/context.json') !== -1; + const is2 = ctx.indexOf("http://iiif.io/api/image/2/context.json") !== -1; + const is3 = ctx.indexOf("http://iiif.io/api/image/3/context.json") !== -1; // max size, for canonical. if ( @@ -77,5 +77,5 @@ export function imageServiceRequestToString(req: ImageServiceImageRequest, servi `${quality}.${format}`, ] .filter(Boolean) - .join('/'); + .join("/"); } diff --git a/src/image-3/serialize/region-parameter-to-string.ts b/src/image-3/serialize/region-parameter-to-string.ts index ab6cdf8..7e4d427 100644 --- a/src/image-3/serialize/region-parameter-to-string.ts +++ b/src/image-3/serialize/region-parameter-to-string.ts @@ -1,16 +1,16 @@ -import { RegionParameter } from '../types'; +import { RegionParameter } from "../types"; export function regionParameterToString({ x = 0, y = 0, w, h, full, square, percent }: RegionParameter) { if (full) { - return 'full'; + return "full"; } if (square) { - return 'square'; + return "square"; } - if (typeof w === 'undefined' || typeof h === 'undefined') { - throw new Error('RegionParameter: invalid region'); + if (typeof w === "undefined" || typeof h === "undefined") { + throw new Error("RegionParameter: invalid region"); } const xywh = `${x},${y},${w},${h}`; diff --git a/src/image-3/serialize/rotation-parameter-to-string.ts b/src/image-3/serialize/rotation-parameter-to-string.ts index 5afb5fe..f994eba 100644 --- a/src/image-3/serialize/rotation-parameter-to-string.ts +++ b/src/image-3/serialize/rotation-parameter-to-string.ts @@ -1,5 +1,5 @@ -import { RotationParameter } from '../types'; +import { RotationParameter } from "../types"; export function rotationParameterToString(rotationParameter: RotationParameter) { - return `${rotationParameter.mirror ? '!' : ''}${(rotationParameter.angle || 0) % 360}`; + return `${rotationParameter.mirror ? "!" : ""}${(rotationParameter.angle || 0) % 360}`; } diff --git a/src/image-3/serialize/size-parameter-to-string.ts b/src/image-3/serialize/size-parameter-to-string.ts index 0661e31..d382168 100644 --- a/src/image-3/serialize/size-parameter-to-string.ts +++ b/src/image-3/serialize/size-parameter-to-string.ts @@ -1,4 +1,4 @@ -import { SizeParameter } from '../types'; +import { SizeParameter } from "../types"; export function sizeParameterToString({ max, @@ -13,16 +13,16 @@ export function sizeParameterToString({ const sb: string[] = []; if (upscaled) { - sb.push('^'); + sb.push("^"); } if (max) { - sb.push(serialiseAsFull ? 'full' : 'max'); - return sb.join(''); + sb.push(serialiseAsFull ? "full" : "max"); + return sb.join(""); } if (confined) { - sb.push('!'); + sb.push("!"); } if (percentScale) { @@ -33,11 +33,11 @@ export function sizeParameterToString({ sb.push(`${width}`); } - sb.push(','); + sb.push(","); if (height && version === 3) { sb.push(`${height}`); } - return sb.join(''); + return sb.join(""); } diff --git a/src/image-3/types.ts b/src/image-3/types.ts index 7211130..360773a 100644 --- a/src/image-3/types.ts +++ b/src/image-3/types.ts @@ -47,21 +47,21 @@ export type RotationParameter = { export type ImageServiceImageRequest = | { - type: 'base'; + type: "base"; scheme: string; server: string; prefix: string; identifier: string; } | { - type: 'info'; + type: "info"; scheme: string; server: string; prefix: string; identifier: string; } | { - type: 'image'; + type: "image"; scheme: string; server: string; prefix: string; diff --git a/src/image-3/utilities/canonical-service-url.ts b/src/image-3/utilities/canonical-service-url.ts index 2b54775..e9e6126 100644 --- a/src/image-3/utilities/canonical-service-url.ts +++ b/src/image-3/utilities/canonical-service-url.ts @@ -5,9 +5,9 @@ * @param serviceId */ export function canonicalServiceUrl(serviceId: string) { - return serviceId.endsWith('info.json') + return serviceId.endsWith("info.json") ? serviceId - : serviceId.endsWith('/') - ? `${serviceId}info.json` - : `${serviceId}/info.json`; + : serviceId.endsWith("/") + ? `${serviceId}info.json` + : `${serviceId}/info.json`; } diff --git a/src/image-3/utilities/create-image-service-request.ts b/src/image-3/utilities/create-image-service-request.ts index 4a5241c..9d2cd20 100644 --- a/src/image-3/utilities/create-image-service-request.ts +++ b/src/image-3/utilities/create-image-service-request.ts @@ -1,25 +1,25 @@ -import { ImageService } from '@iiif/presentation-3'; -import { ImageServiceImageRequest } from '../types'; -import { combineProfiles } from '../profiles/combine-profiles'; -import { parseImageServiceRequest } from '../parser/parse-image-service-request'; -import { canonicalServiceUrl } from './canonical-service-url'; +import type { ImageService } from "../../presentation-3/types"; +import { ImageServiceImageRequest } from "../types"; +import { combineProfiles } from "../profiles/combine-profiles"; +import { parseImageServiceRequest } from "../parser/parse-image-service-request"; +import { canonicalServiceUrl } from "./canonical-service-url"; export function createImageServiceRequest(imageService: ImageService): ImageServiceImageRequest { const parsed = parseImageServiceRequest(canonicalServiceUrl(imageService.id)); - if (parsed.type !== 'info') { - throw new Error('Invalid service URL'); + if (parsed.type !== "info") { + throw new Error("Invalid service URL"); } const features = combineProfiles(imageService); return { identifier: parsed.identifier, - originalPath: '', + originalPath: "", server: parsed.server, prefix: parsed.prefix, scheme: parsed.scheme, - type: 'image', - quality: features.extraQualities.indexOf('default') === -1 ? features.extraQualities[0]! : 'default', + type: "image", + quality: features.extraQualities.indexOf("default") === -1 ? features.extraQualities[0]! : "default", region: { full: true, }, @@ -28,7 +28,7 @@ export function createImageServiceRequest(imageService: ImageService): ImageServ upscaled: false, confined: false, }, - format: 'jpg', + format: "jpg", rotation: { angle: 0, }, diff --git a/src/image-3/utilities/extract-fixed-size-scales.ts b/src/image-3/utilities/extract-fixed-size-scales.ts index 41f9830..7f4bb96 100644 --- a/src/image-3/utilities/extract-fixed-size-scales.ts +++ b/src/image-3/utilities/extract-fixed-size-scales.ts @@ -1,4 +1,4 @@ -import { ImageSize } from '@iiif/presentation-3'; +import type { ImageSize } from "../../presentation-3/types"; /** * Extract fixed size scales diff --git a/src/image-3/utilities/fixed-sizes-from-scales.ts b/src/image-3/utilities/fixed-sizes-from-scales.ts index 9025315..efcff0e 100644 --- a/src/image-3/utilities/fixed-sizes-from-scales.ts +++ b/src/image-3/utilities/fixed-sizes-from-scales.ts @@ -1,4 +1,4 @@ -import { ImageSize } from '@iiif/presentation-3'; +import type { ImageSize } from "../../presentation-3/types"; /** * Fixed sizes from scales. diff --git a/src/image-3/utilities/get-id.ts b/src/image-3/utilities/get-id.ts index 9cbffbf..6b2535f 100644 --- a/src/image-3/utilities/get-id.ts +++ b/src/image-3/utilities/get-id.ts @@ -1,6 +1,6 @@ export function getId(resource: any) { - if (resource['@id']) { - return resource['@id']; + if (resource["@id"]) { + return resource["@id"]; } if (resource.id) { diff --git a/src/image-3/utilities/get-image-service-level.ts b/src/image-3/utilities/get-image-service-level.ts index 91bce7f..95d23d1 100644 --- a/src/image-3/utilities/get-image-service-level.ts +++ b/src/image-3/utilities/get-image-service-level.ts @@ -1,6 +1,6 @@ -import { ImageService } from '@iiif/presentation-3'; -import { isImageServiceLevel } from './is-image-service-level'; -import { isImageService } from './is-image-service'; +import type { ImageService } from "../../presentation-3/types"; +import { isImageServiceLevel } from "./is-image-service-level"; +import { isImageService } from "./is-image-service"; export function getImageServiceLevel(service: ImageService): null | number { if (!isImageService(service)) { diff --git a/src/image-3/utilities/get-image-services.ts b/src/image-3/utilities/get-image-services.ts index 83304c7..43660e1 100644 --- a/src/image-3/utilities/get-image-services.ts +++ b/src/image-3/utilities/get-image-services.ts @@ -1,5 +1,5 @@ -import { ImageService, Service } from '@iiif/presentation-3'; -import { isImageService } from './is-image-service'; +import type { ImageService, Service } from "../../presentation-3/types"; +import { isImageService } from "./is-image-service"; /** * Given a resource, will return only the image services on that resource. diff --git a/src/image-3/utilities/get-type.ts b/src/image-3/utilities/get-type.ts index a458f0a..5dfd023 100644 --- a/src/image-3/utilities/get-type.ts +++ b/src/image-3/utilities/get-type.ts @@ -1,6 +1,6 @@ export function getType(resource: any) { - if (resource['@type']) { - return resource['@type']; + if (resource["@type"]) { + return resource["@type"]; } if (resource.type) { return resource.type; diff --git a/src/image-3/utilities/identify-image-server.ts b/src/image-3/utilities/identify-image-server.ts index ecad98d..16d982d 100644 --- a/src/image-3/utilities/identify-image-server.ts +++ b/src/image-3/utilities/identify-image-server.ts @@ -7,11 +7,11 @@ */ export function identifyImageServer(url: string): string { // Strip off the protocol + www - const id = url.replace(/(https?:\/\/)?(www.)?/i, ''); + const id = url.replace(/(https?:\/\/)?(www.)?/i, ""); // Strip off the path. - if (id.indexOf('/') !== -1) { - return id.split('/')[0]!; + if (id.indexOf("/") !== -1) { + return id.split("/")[0]!; } // Return the id. diff --git a/src/image-3/utilities/is-image-service-level.ts b/src/image-3/utilities/is-image-service-level.ts index 50514d1..26a616e 100644 --- a/src/image-3/utilities/is-image-service-level.ts +++ b/src/image-3/utilities/is-image-service-level.ts @@ -1,5 +1,5 @@ -import { ImageService } from '@iiif/presentation-3'; -import { level1Support, level2Support, onlyLevel0 } from '../profiles/profiles'; +import type { ImageService } from "../../presentation-3/types"; +import { level1Support, level2Support, onlyLevel0 } from "../profiles/profiles"; export function isImageServiceLevel(level: 0 | 1 | 2, imageService?: ImageService) { if (imageService && imageService.profile) { diff --git a/src/image-3/utilities/is-image-service.ts b/src/image-3/utilities/is-image-service.ts index 64a2e84..5057a6b 100644 --- a/src/image-3/utilities/is-image-service.ts +++ b/src/image-3/utilities/is-image-service.ts @@ -1,6 +1,6 @@ -import { imageServiceProfiles } from '../profiles/profiles'; -import { ImageService } from '@iiif/presentation-3'; -import { getId } from './get-id'; +import { imageServiceProfiles } from "../profiles/profiles"; +import type { ImageService } from "../../presentation-3/types"; +import { getId } from "./get-id"; export function isImageService(service: any): service is ImageService { if (!service || !service.profile) { @@ -14,7 +14,7 @@ export function isImageService(service: any): service is ImageService { const profiles = Array.isArray(service.profile) ? service.profile : [service.profile]; for (const profile of profiles) { - if (typeof profile === 'string' && imageServiceProfiles.indexOf(profile) !== -1) { + if (typeof profile === "string" && imageServiceProfiles.indexOf(profile) !== -1) { return true; } } diff --git a/src/index.ts b/src/index.ts index b4f6473..b976123 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,5 @@ // Exports the latest -export * from './presentation-3'; +export * from "./presentation-3"; +export { infer as infer2, cast as cast2, narrow as narrow2 } from "./presentation-2/types"; +export { infer as infer3, cast as cast3, narrow as narrow3 } from "./presentation-3/types"; +export { infer as infer4, cast as cast4, narrow as narrow4 } from "./presentation-4/types"; diff --git a/src/index.umd.ts b/src/index.umd.ts index 4de3bb7..3515ae5 100644 --- a/src/index.umd.ts +++ b/src/index.umd.ts @@ -1,9 +1,11 @@ -import * as Presentation2 from './presentation-2'; -import * as Presentation3 from './presentation-3'; -import * as Image3 from './image-3'; +import * as Presentation2 from "./presentation-2"; +import * as Presentation3 from "./presentation-3"; +import * as Presentation4 from "./presentation-4"; +import * as Image3 from "./image-3"; export default { Presentation2, Presentation3, + Presentation4, Image3, }; diff --git a/src/presentation-2/index.ts b/src/presentation-2/index.ts index 25fbf9d..25cded2 100644 --- a/src/presentation-2/index.ts +++ b/src/presentation-2/index.ts @@ -1,2 +1,3 @@ -export * from './traverse'; -export * from './upgrader'; +export * from "./traverse"; +export * from "./upgrader"; +export * from "./types"; diff --git a/src/presentation-2/traverse.ts b/src/presentation-2/traverse.ts index 20b501c..d9094dd 100644 --- a/src/presentation-2/traverse.ts +++ b/src/presentation-2/traverse.ts @@ -18,21 +18,21 @@ import type { TraversableEntityTypes, Traversal, TraversalMap, -} from '@iiif/presentation-2'; +} from "./types"; export const types: TraversableEntityTypes[] = [ - 'sc:Collection', - 'sc:Manifest', - 'sc:Canvas', - 'sc:AnnotationList', - 'oa:Annotation', - 'sc:Range', - 'sc:Layer', - 'sc:Sequence', - 'oa:Choice', + "sc:Collection", + "sc:Manifest", + "sc:Canvas", + "sc:AnnotationList", + "oa:Annotation", + "sc:Range", + "sc:Layer", + "sc:Sequence", + "oa:Choice", // Opaque. - 'Service', - 'ContentResource', + "Service", + "ContentResource", ]; export type TraverseOptions = { @@ -42,37 +42,37 @@ export type TraverseOptions = { }; export function identifyResource(resource: any): TraversableEntityTypes { - if (typeof resource === 'undefined' || resource === null) { - throw new Error('Null or undefined is not a valid entity.'); + if (typeof resource === "undefined" || resource === null) { + throw new Error("Null or undefined is not a valid entity."); } if (Array.isArray(resource)) { - throw new Error('Array is not a valid entity'); + throw new Error("Array is not a valid entity"); } - if (typeof resource !== 'object') { + if (typeof resource !== "object") { throw new Error(`${typeof resource} is not a valid entity`); } - if (typeof resource['@type'] === 'string') { - const hasType = types.indexOf(resource['@type'] as any); + if (typeof resource["@type"] === "string") { + const hasType = types.indexOf(resource["@type"] as any); if (hasType !== -1) { return types[hasType]!; } } if (resource.profile) { - return 'Service'; + return "Service"; } if (resource.format) { - return 'ContentResource'; + return "ContentResource"; } // Big o'l fallback. - if (resource['@type']) { - return 'ContentResource'; + if (resource["@type"]) { + return "ContentResource"; } - throw new Error('Resource type is not known'); + throw new Error("Resource type is not known"); } export class Traverse< @@ -144,7 +144,7 @@ export class Traverse< }); } - traverseCollection(collection: Collection): T['Collection'] { + traverseCollection(collection: Collection): T["Collection"] { return this.traverseType( this.traverseDescriptive(this.traverseLinking(this.traverseCollectionItems(collection))), this.traversals.collection @@ -155,14 +155,14 @@ export class Traverse< if (this.options.mergeMemberProperties) { const members = [ ...(collection.manifests || []).map((manifest) => { - if (typeof manifest === 'string') { - return { '@id': manifest, '@type': 'sc:Manifest' }; + if (typeof manifest === "string") { + return { "@id": manifest, "@type": "sc:Manifest" }; } return manifest; }), ...(collection.collections || []).map((subCollection) => { - if (typeof subCollection === 'string') { - return { '@id': subCollection, '@type': 'sc:Collection' }; + if (typeof subCollection === "string") { + return { "@id": subCollection, "@type": "sc:Collection" }; } return subCollection; }), @@ -171,10 +171,10 @@ export class Traverse< const seenIds: string[] = []; const filteredMembers = members.filter((resource) => { - if (seenIds.includes(resource['@id'])) { + if (seenIds.includes(resource["@id"])) { return false; } - seenIds.push(resource['@id']); + seenIds.push(resource["@id"]); return true; }); @@ -186,8 +186,8 @@ export class Traverse< if (collection.manifests) { collection.manifests = collection.manifests.map((manifest) => this.traverseManifest( - typeof manifest === 'string' - ? ({ '@id': manifest, '@type': 'sc:Manifest' } as Manifest) + typeof manifest === "string" + ? ({ "@id": manifest, "@type": "sc:Manifest" } as Manifest) : (manifest as Manifest) ) ); @@ -196,8 +196,8 @@ export class Traverse< if (collection.collections) { collection.collections = collection.collections.map((subCollection) => this.traverseCollection( - typeof subCollection === 'string' - ? ({ '@id': subCollection, '@type': 'sc:Collection' } as Collection) + typeof subCollection === "string" + ? ({ "@id": subCollection, "@type": "sc:Collection" } as Collection) : (subCollection as Collection) ) ); @@ -205,13 +205,13 @@ export class Traverse< if (collection.members) { collection.members = collection.members.map((member) => { - if (typeof member === 'string') { + if (typeof member === "string") { return member; } - if (member['@type'] === 'sc:Collection') { + if (member["@type"] === "sc:Collection") { return this.traverseCollection(member); } - if (member['@type'] === 'sc:Manifest') { + if (member["@type"] === "sc:Manifest") { return this.traverseManifest(member as any); } return this.traverseUnknown(member); @@ -221,7 +221,7 @@ export class Traverse< return collection; } - traverseManifest(manifest: Manifest): T['Manifest'] { + traverseManifest(manifest: Manifest): T["Manifest"] { return this.traverseType( this.traverseDescriptive(this.traverseLinking(this.traverseManifestItems(manifest))), this.traversals.manifest @@ -238,7 +238,7 @@ export class Traverse< return manifest; } - traverseSequence(sequence: Sequence): T['Sequence'] { + traverseSequence(sequence: Sequence): T["Sequence"] { return this.traverseType( this.traverseDescriptive(this.traverseLinking(this.traverseSequenceItems(sequence))), this.traversals.sequence @@ -252,7 +252,7 @@ export class Traverse< return sequence; } - traverseCanvas(canvas: Canvas): T['Canvas'] { + traverseCanvas(canvas: Canvas): T["Canvas"] { return this.traverseType( this.traverseDescriptive(this.traverseLinking(this.traverseCanvasItems(canvas))), this.traversals.canvas @@ -264,8 +264,8 @@ export class Traverse< canvas.images = canvas.images.map((image) => { // Fix malformed annotations where @type is missing or incorrect (e.g., "dctypes:Image" instead of "oa:Annotation"). // Detect by presence of "on" property which is unique to annotations. - if (image.on && image['@type'] !== 'oa:Annotation' && image['@type'] !== 'Annotation') { - image['@type'] = 'oa:Annotation'; + if (image.on && image["@type"] !== "oa:Annotation" && image["@type"] !== "Annotation") { + image["@type"] = "oa:Annotation"; } return this.traverseAnnotation(image); }); @@ -276,9 +276,9 @@ export class Traverse< return canvas; } - traverseRange(range: Range): T['Range'] { - if (range['@type'] !== 'sc:Range') { - range['@type'] = 'sc:Range'; + traverseRange(range: Range): T["Range"] { + if (range["@type"] !== "sc:Range") { + range["@type"] = "sc:Range"; } return this.traverseType( this.traverseDescriptive(this.traverseLinking(this.traverseRangeItems(range))), @@ -290,14 +290,14 @@ export class Traverse< if (this.options.mergeMemberProperties) { const members = [ ...(range.ranges || []).map((innerRange: any) => { - if (typeof innerRange === 'string') { - return { '@id': innerRange, '@type': 'sc:Range' }; + if (typeof innerRange === "string") { + return { "@id": innerRange, "@type": "sc:Range" }; } return innerRange; }), ...(range.canvases || []).map((canvas: any) => { - if (typeof canvas === 'string') { - return { '@id': canvas, '@type': 'sc:Canvas' }; + if (typeof canvas === "string") { + return { "@id": canvas, "@type": "sc:Canvas" }; } return canvas; }), @@ -326,10 +326,10 @@ export class Traverse< return range; } - traverseAnnotationList(annotationList: AnnotationList): T['AnnotationList'] { + traverseAnnotationList(annotationList: AnnotationList): T["AnnotationList"] { const list = - typeof annotationList === 'string' - ? ({ '@id': annotationList, '@type': 'sc:AnnotationList' } as any) + typeof annotationList === "string" + ? ({ "@id": annotationList, "@type": "sc:AnnotationList" } as any) : annotationList; return this.traverseType( @@ -346,7 +346,7 @@ export class Traverse< return annotationList; } - traverseAnnotation(annotation: Annotation): T['Annotation'] { + traverseAnnotation(annotation: Annotation): T["Annotation"] { return this.traverseType( this.traverseDescriptive(this.traverseLinking(this.traverseAnnotationItems(annotation))), this.traversals.annotation @@ -372,7 +372,7 @@ export class Traverse< return annotation; } - traverseLayer(layer: Layer): T['Layer'] { + traverseLayer(layer: Layer): T["Layer"] { return this.traverseType(this.traverseLinking(this.traverseLayerItems(layer)), this.traversals.layer); } @@ -383,27 +383,27 @@ export class Traverse< return layer; } - traverseChoice(choice: ChoiceEmbeddedContent): T['Choice'] { + traverseChoice(choice: ChoiceEmbeddedContent): T["Choice"] { return this.traverseType(this.traverseChoiceItems(choice), this.traversals.choice); } traverseChoiceItems(choice: ChoiceEmbeddedContent) { - if (choice.default && choice.default !== 'rdf:nil') { + if (choice.default && choice.default !== "rdf:nil") { choice.default = this.traverseContentResource(choice.default); } - if (choice.item && choice.item !== 'rdf:nil') { + if (choice.item && choice.item !== "rdf:nil") { choice.item = choice.item.map((item) => this.traverseContentResource(item)); } return choice; } - traverseService(service: Service): T['Service'] { + traverseService(service: Service): T["Service"] { return this.traverseType(this.traverseLinking(service as any), this.traversals.service); } - traverseContentResource(contentResource: CommonContentResource): T['ContentResource'] { - if (contentResource['@type'] === 'oa:Choice') { + traverseContentResource(contentResource: CommonContentResource): T["ContentResource"] { + if (contentResource["@type"] === "oa:Choice") { return this.traverseChoice(contentResource as any); } @@ -414,32 +414,32 @@ export class Traverse< } traverseUnknown(item: any) { - if (!item['@type'] || typeof item === 'string') { + if (!item["@type"] || typeof item === "string") { // Unknown item. return item; } switch (identifyResource(item)) { - case 'sc:Collection': + case "sc:Collection": return this.traverseCollection(item); - case 'sc:Manifest': + case "sc:Manifest": return this.traverseManifest(item); - case 'sc:Canvas': + case "sc:Canvas": return this.traverseCanvas(item); - case 'sc:Sequence': + case "sc:Sequence": return this.traverseSequence(item); - case 'sc:Range': + case "sc:Range": return this.traverseRange(item); - case 'oa:Annotation': + case "oa:Annotation": return this.traverseAnnotation(item); - case 'sc:AnnotationList': + case "sc:AnnotationList": return this.traverseAnnotationList(item); - case 'sc:Layer': + case "sc:Layer": return this.traverseLayer(item); - case 'Service': + case "Service": return this.traverseService(item); - case 'oa:Choice': + case "oa:Choice": return this.traverseChoice(item); - case 'ContentResource': + case "ContentResource": return this.traverseContentResource(item); } @@ -456,11 +456,11 @@ export class Traverse< const newResourceList: any[] = []; for (const singleResource of resourceList) { - if (typeof singleResource === 'string') { + if (typeof singleResource === "string") { newResourceList.push( this.traverseContentResource({ - '@id': singleResource, - '@type': 'dctypes:Image', + "@id": singleResource, + "@type": "dctypes:Image", }) ); } else { @@ -516,7 +516,7 @@ export class Traverse< resource.seeAlso = this.traverseOneOrManyType(resource.seeAlso, this.traversals.contentResource); } if (resource.within) { - if (typeof resource.within === 'string') { + if (typeof resource.within === "string") { // I don't know. skip? } else { resource.within = this.traverseOneOrManyType( @@ -526,9 +526,9 @@ export class Traverse< } } if (resource.startCanvas) { - if (typeof resource.startCanvas === 'string') { + if (typeof resource.startCanvas === "string") { resource.startCanvas = this.traverseType( - { '@id': resource.startCanvas, '@type': 'sc:Canvas' } as Canvas, + { "@id": resource.startCanvas, "@type": "sc:Canvas" } as Canvas, this.traversals.canvas ); } else if (resource.startCanvas) { @@ -536,10 +536,10 @@ export class Traverse< } } if (resource.contentLayer) { - if (typeof resource.contentLayer === 'string') { + if (typeof resource.contentLayer === "string") { resource.contentLayer = this.traverseLayer({ - '@id': resource.contentLayer, - '@type': 'sc:Layer', + "@id": resource.contentLayer, + "@type": "sc:Layer", }); } else { resource.contentLayer = this.traverseLayer(resource.contentLayer); @@ -562,7 +562,7 @@ export class Traverse< traverseType(object: T, traversals: Array>): Return { return traversals.reduce((acc: T, traversal: Traversal): T => { const returnValue = traversal(acc); - if (typeof returnValue === 'undefined' && !this.options.allowUndefinedReturn) { + if (typeof returnValue === "undefined" && !this.options.allowUndefinedReturn) { return acc; } return returnValue; diff --git a/src/presentation-2/types/index.ts b/src/presentation-2/types/index.ts new file mode 100644 index 0000000..db4ce5d --- /dev/null +++ b/src/presentation-2/types/index.ts @@ -0,0 +1,57 @@ +export type * from "./legacy/index"; + +import { createPresentationHelpers, type ResourceSpecs } from "../../presentation-shared/helpers/create-helpers"; +import type { + Annotation, + AnnotationList, + Canvas, + ChoiceEmbeddedContent, + Collection, + ContentResource, + Layer, + Manifest, + Range, + Sequence, +} from "./legacy/index"; + +export type P2ImageResourceLike = Extract; + +export type Presentation2HelperTypes = { + Collection: Collection; + Manifest: Manifest; + Canvas: Canvas; + AnnotationList: AnnotationList; + Annotation: Annotation; + Range: Range; + Layer: Layer; + Sequence: Sequence; + Choice: ChoiceEmbeddedContent; + ContentResource: ContentResource; + Image: P2ImageResourceLike; +}; + +const presentation2Specs: ResourceSpecs = { + Collection: { type: "sc:Collection", aliases: ["Collection"] }, + Manifest: { type: "sc:Manifest", aliases: ["Manifest"] }, + Canvas: { type: "sc:Canvas", aliases: ["Canvas"] }, + AnnotationList: { type: "sc:AnnotationList", aliases: ["AnnotationPage"] }, + Annotation: { type: "oa:Annotation", aliases: ["Annotation"] }, + Range: { type: "sc:Range", aliases: ["Range"] }, + Layer: { type: "sc:Layer", aliases: ["AnnotationCollection"] }, + Sequence: { type: "sc:Sequence" }, + Choice: { type: "oa:Choice", aliases: ["Choice"] }, + ContentResource: { + type: "ContentResource", + aliases: ["dctypes:Image", "dctypes:Text", "dctypes:Sound", "cnt:ContentAsText", "oa:SpecificResource"], + }, + Image: { type: "dctypes:Image", aliases: ["Image"] }, +}; + +const presentation2Helpers = createPresentationHelpers(presentation2Specs); + +/** Runtime-checked identity helpers for Presentation 2 resources. */ +export const infer = presentation2Helpers.infer; +/** Runtime assertion helpers for Presentation 2 resources. */ +export const cast = presentation2Helpers.cast; +/** Type guards for Presentation 2 discriminated resources. */ +export const narrow = presentation2Helpers.narrow; diff --git a/src/presentation-2/types/legacy/iiif/descriptive.d.ts b/src/presentation-2/types/legacy/iiif/descriptive.d.ts new file mode 100644 index 0000000..8d3ec65 --- /dev/null +++ b/src/presentation-2/types/legacy/iiif/descriptive.d.ts @@ -0,0 +1,73 @@ +import { LanguageProperty, OneOrMany } from "../utility"; +import { ImageResourceSegment, ImageResourceSegmentWithService } from "../resources/content-resource"; + +export declare type DescriptiveProperties = { + /** + * A human readable label, name or title for the resource. This property is intended to be displayed as a short, + * textual surrogate for the resource if a human needs to make a distinction between it and similar resources, + * for example between pages or between a choice of images to display. + * + * - A {@link Collection} must have at least one label. + * - A {@link Manifest} must have at least one label, such as the name of the object or title of the intellectual work that + * it embodies. + * - A {@link Sequence} may have one or more labels, and if there are multiple sequences in a single manifest then they must + * each have at least one label. + * - A {@link Canvas} must have at least one label, such as the page number or short description of the view. + * - A content resource may have one or more labels, and if there is a choice of content resource for the same canvas, + * then they should each have at least one label. + * - A {@link Range} must have at least one label. + * - A {@link Layer} must have at least one label. + * - Other resource types may have labels. + * + */ + label?: OneOrMany; + + /** + * A list of short descriptive entries, given as pairs of human readable label and value to be displayed to the user. + * The value should be either simple HTML, including links and text markup, or plain text, and the label should be + * plain text. There are no semantics conveyed by this information, and clients should not use it for discovery or + * other purposes. This list of descriptive pairs should be able to be displayed in a tabular form in the user + * interface. Clients should have a way to display the information about manifests and canvases, and may have a way + * to view the information about other resources. The client should display the pairs in the order provided by the + * description. A pair might be used to convey the author of the work, information about its creation, a brief + * physical description, or ownership information, amongst other use cases. The client is not expected to take any + * action on this information beyond displaying the label and value. An example pair of label and value might be a + * label of “Author” and a value of “Jehan Froissart”. + * + * - A {@link Collection} should have one or more metadata pairs associated with it. + * - A {@link Manifest} should have one or more metadata pairs associated with it describing the object or work. + * - Other resource types may have one or more metadata pairs. + */ + metadata?: Array<{ label: OneOrMany; value: OneOrMany }>; + + /** + * A longer-form prose description of the object or resource that the property is attached to, intended to be + * conveyed to the user as a full text description, rather than a simple label and value. It may be in simple HTML + * or plain text. It can duplicate any of the information from the metadata fields, along with additional information + * required to understand what is being displayed. Clients should have a way to display the descriptions of manifests + * and canvases, and may have a way to view the information about other resources. + * + * - A {@link Collection} should have one or more descriptions. + * - A {@link Manifest} should have one or more descriptions. + * - Other resource types may have one or more description. + */ + description?: OneOrMany; + + /** + * A small image that depicts or pictorially represents the resource that the property is attached to, such as the + * title page, a significant image or rendering of a canvas with multiple content resources associated with it. It + * is recommended that a IIIF Image API service be available for this image for manipulations such as resizing. + * If a resource has multiple thumbnails, then each of them should be different. + * + * - A {@link Collection} should have exactly one thumbnail image, and may have more than one. + * - A {@link Manifest} should have exactly one thumbnail image, and may have more than one. + * - A {@link Sequence} may have one or more thumbnails and should have at least one thumbnail if there are multiple sequences + * in a single manifest. + * - A {@link Canvas} may have one or more thumbnails and should have at least one thumbnail if there are multiple images or + * resources that make up the representation. + * - A {@link ContentResource} may have one or more thumbnails and should have at least one thumbnail if it is an option in + * a choice of resources. + * - Other resource types may have one or more thumbnails. + */ + thumbnail?: OneOrMany; +}; diff --git a/src/presentation-2/types/legacy/iiif/linking.d.ts b/src/presentation-2/types/legacy/iiif/linking.d.ts new file mode 100644 index 0000000..33bde29 --- /dev/null +++ b/src/presentation-2/types/legacy/iiif/linking.d.ts @@ -0,0 +1,83 @@ +import { ContentResource } from "../resources/content-resource"; +import { OneOrMany } from "../utility"; +import { Service } from "../../../../presentation-3/types"; +import { Canvas } from "../resources/canvas"; +import { Layer } from "../resources/layer"; + +export declare type LinkingProperties = { + /** + * A link to an external resource intended to be displayed directly to the user, and is related to the resource that + * has the related property. Examples might include a video or academic paper about the resource, a website, an HTML + * description, and so forth. A label and the format of the related resource should be given to assist clients in + * rendering the resource to the user. + * + * Any resource type may have one or more external resources related to it. + */ + related?: OneOrMany; + + /** + * A link to an external resource intended for display or download by a human user. This property can be used to link + * from a manifest, collection or other resource to the preferred viewing environment for that resource, such as a + * viewer page on the publisher’s web site. Other uses include a rendering of a {@link Manifest} as a PDF or EPUB with the + * images and text of the book, or a slide deck with images of the museum object. A label and the format of the + * rendering resource must be supplied to allow clients to present the option to the user. + * + * - Any resource type may have one or more external rendering resources. + */ + rendering?: OneOrMany; + + /** + * A link to a service that makes more functionality available for the resource, such as from an image to the base + * URI of an associated IIIF Image API service. The service resource should have additional information associated + * with it in order to allow the client to determine how to make appropriate use of it, such as a profile link to a + * service description. It may also have relevant information copied from the service itself. This duplication is + * permitted in order to increase the performance of rendering the object without necessitating additional HTTP + * requests. Please see the Service Profiles document for known services. + * + * - Any resource type may have one or more links to an external service. + */ + service?: OneOrMany; + + /** + * A link to a machine readable document that semantically describes the resource with the seeAlso property, such as + * an XML or RDF description. This document could be used for search and discovery or inferencing purposes, or just + * to provide a longer description of the resource. The profile and format properties of the document should be given + * to help the client to make appropriate use of the document. + * + * - Any resource type may have one or more external descriptions related to it. + */ + seeAlso?: OneOrMany; + + /** + * A link to a resource that contains the current resource, such as annotation lists within a {@link Layer layer}. + * This also allows linking upwards to {@link Collection collections} that allow browsing of the digitized objects + * available. + * + * - {@link Collection Collections} or {@link AnnotationList annotation lists} that serve as pages must be within + * exactly one paged resource. + * - Other resource types, including collections or annotation lists not serving as pages, may be within one or more + * containing resources. + */ + within?: OneOrMany; + + /** + * A link from a {@link Sequence sequence} or {@link Range range} to a {@link Canvas canvas} that is contained within + * the sequence. On seeing this relationship, a client should advance to the specified canvas when + * beginning navigation through the sequence/range. This allows the client to begin with the first canvas that + * contains interesting content rather than requiring the user to skip past blank or empty canvases manually. + * + * - A {@link Sequence sequence} or a {@link Range range} may have exactly one canvas as its start canvas. + * - Other resource types must not have a start canvas. + */ + startCanvas?: { "@id": string; type: "sc:Canvas" } | string; + + /** + * A link from a {@link Range range} to a {@link Layer layer} that includes the annotations of content resources for + * that range. Clients might use this to present content to the user from a different canvas when interacting with + * the range, or to jump to the next part of the range within the same {@link Canvas canvas}. + * + * - A {@link Range range} may have exactly one layer as its content layer. + * - Other resource types must not have a content layer. + */ + contentLayer?: string | Layer; +}; diff --git a/src/presentation-2/types/legacy/iiif/paging.d.ts b/src/presentation-2/types/legacy/iiif/paging.d.ts new file mode 100644 index 0000000..f97ca74 --- /dev/null +++ b/src/presentation-2/types/legacy/iiif/paging.d.ts @@ -0,0 +1,66 @@ +export declare type PagingProperties = { + /** + * A link from a resource with pages, such as a {@link Collection collection} or {@link Layer layer}, to its first + * page resource, another collection or an {@link AnnotationList annotation list} respectively. The page resource + * should be referenced by just its URI (from @id) but may also have more information associated with it as an object. + * + * - A {@link Collection collection} may have exactly one collection as its first page. + * - A {@link Layer layer} may have exactly one annotation list as its first page. + * - Other resource types must not have a first page. + */ + first?: string; + + /** + * A link from a resource with pages to its last page resource. The page resource should be referenced by just its + * URI (from @id) but may also have more information associated with it as an object. + * + * - A {@link Collection collection} may have exactly one collection as its last page. + * - A {@link Layer layer} may have exactly one annotation list as its last page. + * - Other resource types must not have a last page. + */ + last?: string; + + /** + * The total number of leaf resources, such as {@Link Annotation annotations} within a {@link Layer layer}, within a + * list of pages. The value must be a non-negative integer. + * + * - A {@link Collection collection} may have exactly one total, which must be the total number of collections and + * manifests in its list of pages. + * - A {@link Layer layer} may have exactly one total, which must be the total number of annotations in its list of + * pages. + * - Other resource types must not have a total. + */ + total?: number; + + /** + * A link from a page resource to the next page resource that follows it in order. The resource should be referenced + * by just its URI (from @id) but may also have more information associated with it as an object. + * + * - A {@link Collection collection} may have exactly one collection as its next page. + * - An {@link AnnotationList annotation list} may have exactly one annotation list as its next page. + * - Other resource types must not have next pages. + */ + next?: string; + + /** + * A link from a page resource to the previous page resource that precedes it in order. The resource should be + * referenced by just its URI (from @id) but may also have more information associated with it as an object. + * + * - A {@link Collection collection} may have exactly one collection as its previous page. + * - An {@link AnnotationList annotation list} may have exactly one annotation list as its previous page. + * - Other resource types must not have previous pages. + */ + prev?: string; + + /** + * The 0 based index of the first included resource in the current page, relative to the parent paged resource. The + * value must be a non-negative integer. + * + * - A {@link Collection collection} may have exactly one startIndex, which must be the index of its first collection + * or manifest relative to the order established by its paging collection. + * - An {@link AnnotationList annotation list} may have exactly one startIndex, which must be the index of its first + * annotation relative to the order established by its paging layer. + * - Other resource types must not have a startIndex. + */ + startIndex?: number; +}; diff --git a/src/presentation-2/types/legacy/iiif/rights.d.ts b/src/presentation-2/types/legacy/iiif/rights.d.ts new file mode 100644 index 0000000..375e49a --- /dev/null +++ b/src/presentation-2/types/legacy/iiif/rights.d.ts @@ -0,0 +1,42 @@ +import { LanguageProperty, OneOrMany } from "../utility"; +import { ImageResourceSegment, ImageResourceSegmentWithService } from "../resources/content-resource"; + +/** + * The following properties ensure that the interests of the owning or publishing institutions are conveyed regardless + * of the viewing environment, and a client must make these properties clearly available to the user. Given the wide + * variation of potential client user interfaces, it will not always be possible to display all or any of the properties + * to the user in the client’s initial state. If initially hidden, the method of revealing them must be obvious, such + * as a button or scroll bars. + */ +export declare type RightsProperties = { + /** + * Text that must be shown when the resource it is associated with is displayed or used. For example, this could be + * used to present copyright or ownership statements, or simply an acknowledgement of the owning and/or publishing + * institution. Clients should try to match the language preferred by the user, and if the preferred language is + * unknown or unavailable, then the client may choose which value to display. If there are multiple values of the + * same or unspecified language, then all of those values must be displayed. + * + * - Any resource type may have one or more attribution labels. + */ + attribution?: OneOrMany; + + /** + * A link to an external resource that describes the license or rights statement under which the resource may be used. + * The rationale for this being a URI and not a human readable label is that typically there is one license for many + * resources, and the text is too long to be displayed to the user along with the object. If displaying the text is + * a requirement, then it is recommended to include the information using the attribution property instead. + * + * - Any resource type may have one or more licenses associated with it. + */ + license?: OneOrMany; + + /** + * A small image that represents an individual or organization associated with the resource it is attached to. This + * could be the logo of the owning or hosting institution. The logo must be clearly rendered when the resource is + * displayed or used, without cropping, rotating or otherwise distorting the image. It is recommended that a IIIF + * Image API service be available for this image for manipulations such as resizing. + * + * - Any resource type may have one or more logos associated with it. + */ + logo?: OneOrMany; +}; diff --git a/src/presentation-2/types/legacy/iiif/technical.d.ts b/src/presentation-2/types/legacy/iiif/technical.d.ts new file mode 100644 index 0000000..c5c1486 --- /dev/null +++ b/src/presentation-2/types/legacy/iiif/technical.d.ts @@ -0,0 +1,182 @@ +export declare type TechnicalProperties = { + /** + * The top level resource in the response must have the @context property, and it should appear as the very first + * key/value pair of the JSON representation. This tells Linked Data processors how to interpret the information. + * The IIIF Presentation API context, below, must occur exactly once per response, and be omitted from any embedded + * resources. For example, when embedding a sequence within a manifest, the sequence must not have the @context field. + * + * ``` + * {"@context": "http://iiif.io/api/presentation/2/context.json"} + * ``` + * + * Any additional fields beyond those defined in this specification should be mapped to RDF predicates using further + * context documents. In this case, the enclosing object must have its own @context property, and it should be the + * first key/value pair of that object. This is required for service links that embed any information beyond a + * profile. These contexts should not redefine profile. As the top level resource must have the IIIF Presentation + * API context, if there are any additional contexts needed, the value will become an array of URI strings: + * + * ``` + * { + * "@context": [ + * "http://iiif.io/api/presentation/2/context.json", + * "http://example.org/extension/context.json" + * ] + * } + * ``` + */ + "@context"?: string | string[]; + + /** + * The URI that identifies the resource. It is recommended that an HTTP URI be used for all resources. Recommended + * HTTP URI patterns for the different classes of resource are given below. URIs from any registered scheme may be + * used, and implementers may find it convenient to use a UUID URN of the form: "urn:uuid:uuid-goes-here-1234". + * Resources that do not require URIs may be assigned + * {@link http://www.w3.org/TR/rdf11-concepts/#section-blank-nodes blank node identifiers}; this is the same as + * omitting @id. + * + * - A {@link Collection} must have exactly one id, and it must be the http(s) URI at which it is published. + * - A {@link Manifest} must have exactly one id, and it must be the http(s) URI at which it is published. + * - A {@link Sequence} may have an id and must not have more than one. + * - A {@link Canvas} must have exactly one id, and it must be an http(s) URI. The canvas’s JSON representation should be + * published at that URI. + * - A {@link ContentResource} must have exactly one id unless it is embedded in the response, and it must be the http(s) + * URI at which the resource is published. + * - A {@link Range} must have exactly one id, and it must be an http(s) URI. + * - A {@link Layer} must have exactly one id, and it must be an http(s) URI. + * - An {@link AnnotationList} must have exactly one id, and it must be the http(s) URI at which it is published. + * - An {@link Annotation} should have exactly one id, must not have more than one, and the annotation’s representation + * should be published at that URI. + */ + "@id": string; + + /** + * The type of the resource. For the resource types defined by this specification, the value of @type will be + * described in the sections below. For content resources, the type may be drawn from other vocabularies. + * Recommendations for basic types such as image, text or audio are also given in the sections below. + * + * - All resource types must have at least one type specified. + * - This requirement applies only to the types described in + * {@link https://iiif.io/api/presentation/2.1/#resource-type-overview Section 2}. Services, Thumbnails and + * other resources will have their own requirements. + */ + "@type": string; + + /** + * The specific media type (often called a MIME type) of a content resource, for example “image/jpeg”. This is + * important for distinguishing text in XML from plain text, for example. + * + * - A {@link ContentResource} may have exactly one format, and if so, it must be the value of the Content-Type header + * returned when the resource is dereferenced. + * - Other resource types must not have a format. + * + * This is different to the formats property in the {@link https://iiif.io/api/image/3.0/ Image API}, which gives + * the extension to use within that API. It would be inappropriate to use in this case, as format can be used with + * any content resource, not just images. + */ + format?: string; + + /** + * The height of a canvas or image resource. For images, the value is in pixels. For canvases, the value does not + * have a unit. In combination with the width, it conveys an aspect ratio for the space in which content resources + * are located. + * + * - A {@link Canvas} must have exactly one height. + * - A {@link ContentResource} may have exactly one height, given in pixels, if appropriate. + * - Other resource types must not have a height. + */ + height: number; + + /** + * The width of a {@link Canvas} or {@link ContentResource}. For images, the value is in pixels. For canvases, the value does not have + * a unit. In combination with the height, it conveys an aspect ratio for the space in which {@link ContentResource} + * are + * located. + * - A {@link Canvas} must have exactly one width. + * - A {@link ContentResource} may have exactly one width, given in pixels, if appropriate. + * - Other resource types must not have a width. + */ + width: number; + + /** + * The direction that a sequence of canvases should be displayed to the user. Possible values are specified in the table below. + * + * - A {@link Manifest} may have exactly one viewing direction, and if so, it applies to all of its sequences unless + * the sequence specifies its own viewing direction. + * - A {@link Sequence} may have exactly one viewing direction. + * - A {@link Range} or layer may have exactly one viewing direction. + * - Other resource types must not have a viewing direction. + * + * Values. + * + * - **left-to-right** – The object is displayed from left to right. The default if not specified. + * - **right-to-left** – The object is displayed from right to left. + * - **top-to-bottom** – The object is displayed from the top to the bottom. + * - **bottom-to-top** – The object is displayed from the bottom to the top. + */ + viewingDirection?: "left-to-right" | "right-to-left" | "top-to-bottom" | "bottom-to-top"; + + /** + * A hint to the client as to the most appropriate method of displaying the resource. This specification defines the + * values specified in the table below. Other values may be given, and if they are, they must be URIs. + * + * - Any resource type may have one or more viewing hints. + * + * Values + * + * - **individuals** - Valid on {@link Collection}, {@link Manifest}, sequence and range. When used as the viewingHint of a + * {@link Collection}, the client should treat each of the {@link Manifest}s as distinct individual objects. For {@link Manifest}, + * sequence and range, the {@link Canvas canvases} referenced are all distinct individual views, and should not be presented + * in a page-turning interface. Examples include a gallery of paintings, a set of views of a 3 dimensional object, + * or a set of the front sides of photographs in a {@link Collection}. + * + * - **paged** - Valid on {@link Manifest}, sequence and range. Canvases with this viewingHint represent pages in a bound + * volume, and should be presented in a page-turning interface if one is available. The first canvas is a single + * view (the first recto) and thus the second canvas represents the back of the object in the first {@link Canvas}. + * + * - **continuous** - Valid on {@link Manifest}, sequence and range. A {@link Canvas} with this viewingHint is a partial view and an + * appropriate rendering might display either the {@link Canvas canvases} individually, or all of the {@link Canvas canvases} virtually stitched + * together in the display. Examples when this would be appropriate include long scrolls, rolls, or objects + * designed to be displayed adjacent to each other. If this viewingHint is present, then the resource must also + * have a viewingDirection which will determine the arrangement of the {@link Canvas canvases}. Note that this does not allow for + * both sides of a scroll to be included in the same {@link Manifest} with this viewingHint. To accomplish that, the + * {@link Manifest} should be “individuals” and have two ranges, one for each side, which are “continuous”. + * + * - **multi-part** - Valid only for {@link Collection}s. Collections with this viewingHint consist of multiple {@link Manifest}s + * that each form part of a logical whole. Clients might render the {@link Collection} as a table of contents, rather + * than with thumbnails. Examples include multi-volume books or a set of journal issues or other serials. + * + * - **non-paged** - Valid only for {@link Canvas canvases}. Canvases with this viewingHint must not be presented in a page turning + * interface, and must be skipped over when determining the page sequence. This viewing hint must be ignored if + * the current sequence or {@link Manifest} does not have the ‘paged’ viewing hint. + * + * - **top** - Valid only for ranges. A {@link Range} with this viewingHint is the top-most node in a hierarchy of ranges + * that represents a structure to be rendered by the client to assist in navigation. For example, a table of + * contents within a paged object, major sections of a 3d object, the textual areas within a single scroll, and + * so forth. Other ranges that are descendants of the “top” range are the entries to be rendered in the navigation + * structure. There may be multiple {@link Range ranges} marked with this hint. If so, the client should display a choice of + * multiple structures to navigate through. + * + * - **facing-pages** - Valid only for {@link Canvas canvases}. Canvases with this viewingHint, in a sequence or {@link Manifest} with the + * “paged” viewing hint, must be displayed by themselves, as they depict both parts of the opening. If all of the + * canvases are like this, then page turning is not possible, so simply use “individuals” instead. + */ + viewingHint?: "individuals" | "paged" | "continuous" | "multi-part" | "non-paged" | "top" | "facing-pages"; + + /** + * A date that the client can use for navigation purposes when presenting the resource to the user in a time-based + * user interface, such as a calendar or timeline. The value must be an xsd:dateTime literal in UTC, expressed in + * the form “YYYY-MM-DDThh:mm:ssZ”. If the exact time is not known, then “00:00:00” should be used. Similarly, + * the month or day should be 01 if not known. There must be at most one navDate associated with any given resource. + * More descriptive date ranges, intended for display directly to the user, should be included in the metadata + * property for human consumption. + * + * - A {@link Collection} or {@link Manifest} may have exactly one navigation date associated with it. + * - Other resource types must not have navigation dates. + */ + navDate?: string; + + /** + * Non-standard property. + */ + behavior?: string[]; +}; diff --git a/src/presentation-2/types/legacy/index.d.ts b/src/presentation-2/types/legacy/index.d.ts new file mode 100644 index 0000000..37f5c2d --- /dev/null +++ b/src/presentation-2/types/legacy/index.d.ts @@ -0,0 +1,24 @@ +/** + * Original IIIF Presnetation 2.1.1 specification + * Copyright © 2012-2020 Editors and contributors. + * Published by the IIIF Consortium under the CC-BY license. + * https://iiif.io/api/presentation/2.1 + */ +export * from "./resources/abstract"; +export * from "./resources/collection"; +export * from "./resources/annotation-list"; +export * from "./resources/annotation"; +export * from "./resources/canvas"; +export * from "./resources/content-resource"; +export * from "./resources/layer"; +export * from "./resources/manifest"; +export * from "./resources/sequence"; +export * from "./resources/range"; + +export * from "./iiif/linking"; +export * from "./iiif/technical"; +export * from "./iiif/descriptive"; +export * from "./iiif/paging"; +export * from "./iiif/rights"; +export * from "./traversal"; +export * from "./utility"; diff --git a/src/presentation-2/types/legacy/resources/abstract.d.ts b/src/presentation-2/types/legacy/resources/abstract.d.ts new file mode 100644 index 0000000..07fc460 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/abstract.d.ts @@ -0,0 +1,27 @@ +import { LinkingProperties } from "../iiif/linking"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { PagingProperties } from "../iiif/paging"; +import { RightsProperties } from "../iiif/rights"; +import { TechnicalProperties } from "../iiif/technical"; +import { AnnotationStructural } from "./annotation"; +import { AnnotationListStructural } from "./annotation-list"; +import { CanvasStructural } from "./canvas"; +import { CollectionStructural } from "./collection"; +import { ManifestStructural } from "./manifest"; +import { RangeStructural } from "./range"; +import { SequenceStructural } from "./sequence"; + +export type AbstractResource = Partial< + DescriptiveProperties & + LinkingProperties & + PagingProperties & + RightsProperties & + TechnicalProperties & + AnnotationStructural & + AnnotationListStructural & + CanvasStructural & + CollectionStructural & + ManifestStructural & + RangeStructural & + SequenceStructural +>; diff --git a/src/presentation-2/types/legacy/resources/annotation-list.d.ts b/src/presentation-2/types/legacy/resources/annotation-list.d.ts new file mode 100644 index 0000000..d8b8a35 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/annotation-list.d.ts @@ -0,0 +1,30 @@ +import { OmitProperties } from "../utility"; +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { LinkingProperties } from "../iiif/linking"; +import { PagingProperties } from "../iiif/paging"; +import { Annotation } from "./annotation"; +import { RightsProperties } from "../iiif/rights"; + +type AnnotationListOmittedTechnical = "format" | "height" | "width" | "viewingDirection" | "navDate"; +type AnnotationListOmittedLinking = "startCanvas"; +type AnnotationListOmittedPaging = "first" | "last" | "total"; + +export type AnnotationListStructural = { + resources: Annotation[]; +}; + +/** + * Content resources and commentary are associated with a canvas via an annotation. This provides a single, coherent + * method for aligning information, and provides a standards based framework for distinguishing parts of resources and + * parts of canvases. As annotations can be added later, it promotes a distributed system in which publishers can align + * their content with the descriptions created by others. + */ +export interface AnnotationList + extends + OmitProperties, + DescriptiveProperties, + RightsProperties, + AnnotationListStructural, + OmitProperties, + OmitProperties {} diff --git a/src/presentation-2/types/legacy/resources/annotation.d.ts b/src/presentation-2/types/legacy/resources/annotation.d.ts new file mode 100644 index 0000000..8078c2f --- /dev/null +++ b/src/presentation-2/types/legacy/resources/annotation.d.ts @@ -0,0 +1,41 @@ +import { OmitProperties, OneOrMany } from "../utility"; +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { LinkingProperties } from "../iiif/linking"; +import { ContentResource, ContentResourceSelector } from "./content-resource"; +import { RightsProperties } from "../iiif/rights"; + +type AnnotationOmittedTechnical = "@id" | "format" | "height" | "width" | "viewingDirection" | "navDate"; +type AnnotationOmittedLinking = "startCanvas"; + +export type AnnotationStructural = { + motivation: OneOrMany; + resource: OneOrMany; + stylesheet?: { + "@type": ["oa:CssStyle", "cnt:ContentAsText"]; + chars: string; + }; + on: OneOrMany; // @todo maybe need to expand this. +}; + +export declare type SpecificResource = { + "@type": "oa:SpecificResource"; + full: string | ContentResource; + selector: ContentResourceSelector; +}; + +/** + * Content resources and commentary are associated with a canvas via an annotation. This provides a single, coherent + * method for aligning information, and provides a standards based framework for distinguishing parts of resources and + * parts of canvases. As annotations can be added later, it promotes a distributed system in which publishers can align + * their content with the descriptions created by others. + */ +export interface Annotation + extends + OmitProperties, + DescriptiveProperties, + RightsProperties, + AnnotationStructural, + OmitProperties { + "@id"?: string; +} diff --git a/src/presentation-2/types/legacy/resources/canvas.d.ts b/src/presentation-2/types/legacy/resources/canvas.d.ts new file mode 100644 index 0000000..f3e5d32 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/canvas.d.ts @@ -0,0 +1,29 @@ +import { OmitProperties } from "../utility"; +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { LinkingProperties } from "../iiif/linking"; +import { Annotation } from "./annotation"; +import { AnnotationList } from "./annotation-list"; +import { RightsProperties } from "../iiif/rights"; + +type CanvasOmittedTechnical = "format" | "viewingDirection" | "navDate"; +type CanvasOmittedLinking = "startCanvas"; + +export type CanvasStructural = { + images: Annotation[]; + otherContent?: Array; +}; + +/** + * A virtual container that represents a page or view and has content resources associated with it or with parts of it. + * The canvas provides a frame of reference for the layout of the content. The concept of a canvas is borrowed from + * standards like PDF and HTML, or applications like Photoshop and Powerpoint, where the display starts from a blank + * canvas and images, text and other resources are “painted” on to it. + */ +export interface Canvas + extends + OmitProperties, + DescriptiveProperties, + RightsProperties, + CanvasStructural, + Partial> {} diff --git a/src/presentation-2/types/legacy/resources/collection.d.ts b/src/presentation-2/types/legacy/resources/collection.d.ts new file mode 100644 index 0000000..09edd98 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/collection.d.ts @@ -0,0 +1,30 @@ +import { OmitProperties, Snippet } from "../utility"; +import { TechnicalProperties } from "../iiif/technical"; +import { LinkingProperties } from "../iiif/linking"; +import { Manifest } from "./manifest"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { RightsProperties } from "../iiif/rights"; + +type CollectionOmittedTechnical = "format" | "height" | "width" | "viewingDirection"; +type CollectionOmittedLinking = "startCanvas"; + +export type CollectionStructural = { + members?: Array>; + // @deprecated + collections?: Array>; + // @deprecated + manifests?: Array>; +}; + +/** + * An ordered list of manifests, and/or further collections. Collections allow easy advertising and browsing of the + * manifests in a hierarchical structure, potentially with its own descriptive information. They can also provide + * clients with a means to locate all of the manifests known to the publishing institution. + */ +export interface Collection + extends + OmitProperties, + DescriptiveProperties, + RightsProperties, + CollectionStructural, + OmitProperties {} diff --git a/src/presentation-2/types/legacy/resources/content-resource.d.ts b/src/presentation-2/types/legacy/resources/content-resource.d.ts new file mode 100644 index 0000000..9a95ac5 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/content-resource.d.ts @@ -0,0 +1,110 @@ +/** + * Content resources such as images or texts that are associated with a canvas. + */ +import { ImageService, Service as P3Service } from "../../../../presentation-3/types"; + +export type ContentResourceSelector = + | { + "@context": "http://iiif.io/api/annex/openannotation/context.json"; + "@type": "iiif:ImageApiSelector"; + region: string; + } + | { + "@type": ["oa:SvgSelector", "cnt:ContentAsText"] | ["cnt:ContentAsText", "oa:SvgSelector"] | "oa:SvgSelector"; + chars: string; + } + | { + "@context": "http://iiif.io/api/annex/openannotation/context.json"; + "@type": "iiif:ImageApiSelector"; + rotation: string; + } + | { + "@context": "http://iiif.io/api/annex/openannotation/context.json"; + "@type": "iiif:ImageApiSelector"; + region: string; + rotation: string; + } + | { + "@type": "oa:Choice"; + default: ContentResourceSelector; + item: ContentResourceSelector | ContentResourceSelector[]; + } + | { + "@type": "oa:FragmentSelector"; + value: string; + }; + +export type ImageResourceSegment = { + "@id": string; + "@type": "dctypes:Image"; + height?: number; + width?: number; + format?: string; + service?: ImageService; +}; + +type TextContentResource = { + "@id": string; + "@type": "dctypes:Text"; + format: "text/html"; +}; + +type SoundResource = { + "@id": string; + "@type": "dctypes:Sound"; + format: string; +}; + +export type ImageResourceSegmentWithService = { + "@id": "http://www.example.org/iiif/book1-page1/50,50,1250,1850/full/0/default.jpg"; + "@type": "oa:SpecificResource"; + style?: string; + full: ImageResourceSegment; + selector?: ContentResourceSelector; +}; + +export type XmlResourceResourceSegment = { + "@id": string; + "@type": "dctypes:Text"; + format: "application/tei+xml"; +}; + +export type CharsEmbeddedContent = { + "@type": "cnt:ContentAsText"; + chars: string; + format?: "text/plain"; + language?: "en"; +}; + +export type ChoiceEmbeddedContent = { + "@type": "oa:Choice"; + default: CommonContentResource | "rdf:nil"; + item: Array | "rdf:nil"; +}; + +export type Service = P3Service; + +export declare type CommonContentResource = + | ChoiceEmbeddedContent + | CharsEmbeddedContent + | XmlResourceResourceSegment + | ImageResourceSegmentWithService + | ImageResourceSegment + | TextContentResource + | SoundResource; + +export declare type ContentResource = + | CommonContentResource + | { + "@id": string; + "@type": string; + format?: string; + language?: string; + default?: ContentResource | "rdf:nil"; + item?: Array | "rdf:nil"; + selector?: ContentResourceSelector; + full?: ImageResourceSegment; + height?: number; + width?: number; + service?: Service; + }; diff --git a/src/presentation-2/types/legacy/resources/layer.d.ts b/src/presentation-2/types/legacy/resources/layer.d.ts new file mode 100644 index 0000000..60f2160 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/layer.d.ts @@ -0,0 +1,15 @@ +import { LanguageProperty, OmitProperties, OneOrMany } from "../utility"; +import { AnnotationList } from "./annotation-list"; +import { LinkingProperties } from "../iiif/linking"; + +/** + * An ordered list of annotation lists. Layers allow higher level groupings of annotations to be recorded. For example, + * all of the English translation annotations of a medieval French document could be kept separate from the + * transcription or an edition in modern French. + */ +export declare type Layer = OmitProperties & { + "@id": string; + "@type": "sc:Layer"; + label?: OneOrMany; + otherContent?: AnnotationList[]; +}; diff --git a/src/presentation-2/types/legacy/resources/manifest.d.ts b/src/presentation-2/types/legacy/resources/manifest.d.ts new file mode 100644 index 0000000..870bdc9 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/manifest.d.ts @@ -0,0 +1,54 @@ +import { OmitProperties } from "../utility"; +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { Sequence } from "./sequence"; +import { LinkingProperties } from "../iiif/linking"; +import { Range } from "./range"; +import { RightsProperties } from "../iiif/rights"; + +type ManifestOmittedTechnical = "format" | "height" | "width"; +type ManifestOmittedLinking = "startCanvas"; + +type ManifestTechnical = OmitProperties; +export type ManifestStructural = { + /** + * The order of the views of the object. Multiple sequences are allowed to cover situations when there are multiple + * equally valid orders through the content, such as when a manuscript’s pages are rebound or archival collections + * are reordered. + */ + sequences: Sequence[]; + structures?: Range[]; +}; +type ManifestLinking = OmitProperties; + +/** + * The overall description of the structure and properties of the digital representation of an object. It carries + * information needed for the viewer to present the digitized content to the user, such as a title and other + * descriptive information about the object or the intellectual work that it conveys. Each manifest describes how to + * present a single object such as a book, a photograph, or a statue. + * + * The manifest response contains sufficient information for the client to initialize itself and begin to display + * something quickly to the user. The manifest resource represents a single object and any intellectual work or works + * embodied within that object. In particular it includes the descriptive, rights and linking information for the + * object. It then embeds the {@link Sequence sequence}(s) of {@link Canvas canvases} that should be rendered to the + * user. + * + * The identifier in @id must always be able to be dereferenced to retrieve the JSON description of the manifest, and + * thus must use the http(s) URI scheme. + * + * Along with the {@link DescriptiveProperties descriptive information}, there is a sequences section, which is a list + * of JSON-LD objects. Each object describes a {@link Sequence Sequence}, discussed in the next section, that represents + * the order of the parts of the work, each represented by a {@link Canvas}. The first such sequence must be included + * within the manifest as well as optionally being available from its own URI. Subsequent sequences must only be + * referenced with their identifier (@id), class (@type) and label and thus must be dereferenced by clients in order + * to process them if the user selects to view that sequence. + * + * There may also be a structures section listing one or more {@link Range Ranges} which describe additional structure + * of the content, such as might be rendered as a table of contents. + * + * The example below includes only the manifest-level information, however actual implementations must embed the first + * sequence, canvas and content information. It includes examples in the descriptive metadata of how to associate + * multiple entries with a single field and how to be explicit about the language of a particular entry. + */ +export interface Manifest + extends ManifestTechnical, DescriptiveProperties, RightsProperties, ManifestStructural, Partial {} diff --git a/src/presentation-2/types/legacy/resources/range.d.ts b/src/presentation-2/types/legacy/resources/range.d.ts new file mode 100644 index 0000000..e46fa73 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/range.d.ts @@ -0,0 +1,41 @@ +import { OmitProperties } from "../utility"; +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { LinkingProperties } from "../iiif/linking"; +import { RightsProperties } from "../iiif/rights"; + +type RangeOmittedTechnical = "format" | "viewingDirection" | "navDate"; +type RangeOmittedLinking = "startCanvas"; + +export type RangeStructural = { + canvases?: string[]; + ranges?: string[]; + members?: Array< + | { + "@id": string; + "@type": "sc:Canvas"; + label: string; + contentLayer?: string; + } + | { + "@id": string; + "@type": "sc:Range"; + label: string; + contentLayer?: string; + } + >; +}; + +/** + * A virtual container that represents a page or view and has content resources associated with it or with parts of it. + * The canvas provides a frame of reference for the layout of the content. The concept of a canvas is borrowed from + * standards like PDF and HTML, or applications like Photoshop and Powerpoint, where the display starts from a blank + * canvas and images, text and other resources are “painted” on to it. + */ +export interface Range + extends + OmitProperties, + DescriptiveProperties, + RightsProperties, + RangeStructural, + Partial> {} diff --git a/src/presentation-2/types/legacy/resources/sequence.d.ts b/src/presentation-2/types/legacy/resources/sequence.d.ts new file mode 100644 index 0000000..300d360 --- /dev/null +++ b/src/presentation-2/types/legacy/resources/sequence.d.ts @@ -0,0 +1,42 @@ +import { OmitProperties } from "../utility"; +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { Canvas } from "./canvas"; +import { LinkingProperties } from "../iiif/linking"; +import { RightsProperties } from "../iiif/rights"; + +type SequenceTechnical = OmitProperties; +export type SequenceStructural = { + /** + * the set of pages in the object, represented by canvas resources, are listed in order in the canvases property. + * There must be at least one canvas given. + */ + canvases: Canvas[]; +}; + +/** + * The sequence conveys the ordering of the views of the object. The default sequence (and typically the only sequence) + * must be embedded within the {@link Manifest manifest}, and may also be available from its own URI. The default + * sequence may have a URI to identify it. Any additional sequences must be referred to from the manifest, not embedded + * within it, and thus these additional sequences must have an HTTP URI. + * + * The {name} parameter in the URI structure must distinguish it from any other sequences that may be available for the + * physical object. Typical default names for sequences are “normal” or “basic”. + * + * Sequences may have their own descriptive, rights and linking metadata using the same fields as for manifests. The + * label property may be given for sequences and must be given if there is more than one referenced from a manifest. + * After the metadata, the set of pages in the object, represented by {@link Canvas canvas} resources, are listed in + * order in the canvases property. There must be at least one canvas given. + * + * Sequences may have a startCanvas with a single value containing the URI of a canvas resource that is contained + * within the sequence. This is the canvas that a viewer should initialize its display with for the user. If it is not + * present, then the viewer should use the first canvas in the sequence. + * + * In the manifest example above, the sequence is referenced by its URI and contains only the basic information of + * label, @type and @id. The default sequence should be written out in full within the manifest file, as below but + * must not have the @context property. + */ +export declare interface Sequence + extends SequenceTechnical, DescriptiveProperties, RightsProperties, SequenceStructural, LinkingProperties { + "@id"?: string; +} diff --git a/src/presentation-2/types/legacy/traversal.d.ts b/src/presentation-2/types/legacy/traversal.d.ts new file mode 100644 index 0000000..d15d1e7 --- /dev/null +++ b/src/presentation-2/types/legacy/traversal.d.ts @@ -0,0 +1,40 @@ +import { Collection } from "./resources/collection"; +import { Manifest } from "./resources/manifest"; +import { Canvas } from "./resources/canvas"; +import { AnnotationList } from "./resources/annotation-list"; +import { Annotation } from "./resources/annotation"; +import { ChoiceEmbeddedContent, ContentResource } from "./resources/content-resource"; +import { Sequence } from "./resources/sequence"; +import { Service } from "../../../presentation-3/types"; +import { Layer } from "./resources/layer"; +import { Range } from "./resources/range"; + +export type Traversal = (jsonLd: T) => Partial | any; + +export type TraversalMap = { + collection?: Array>; + manifest?: Array>; + canvas?: Array>; + annotationList?: Array>; + annotation?: Array>; + contentResource?: Array>; + choice?: Array>; + range?: Array>; + service?: Array>; + sequence?: Array>; + layer?: Array>; +}; + +export type TraversableEntityTypes = + | "sc:Collection" + | "sc:Manifest" + | "sc:Canvas" + | "sc:AnnotationList" + | "oa:Annotation" + | "sc:Range" + | "sc:Layer" + | "sc:Sequence" + | "oa:Choice" + // Opaque. + | "Service" + | "ContentResource"; diff --git a/src/presentation-2/types/legacy/utility.d.ts b/src/presentation-2/types/legacy/utility.d.ts new file mode 100644 index 0000000..17d1018 --- /dev/null +++ b/src/presentation-2/types/legacy/utility.d.ts @@ -0,0 +1,98 @@ +/** + * Many of the properties in the API may be repeated. This is done by giving a list of values, using either of the + * representations described above, rather than a single string. + */ +export declare type OneOrMany = T | Array; + +/** + * Resource descriptions should be embedded within higher-level descriptions, and may also be available via separate + * requests from http(s) URIs linked in the responses. These URIs are in the @id property for the resource. Links to + * resources may be either given as just the URI if there is no additional information associated with them, or as a + * JSON object with the @id property. Other URI schemes may be used if the resource is not able to be retrieved via + * HTTP. Both options provide the same URI, however the second pattern associates additional information with the + * resource: + * ``` + * // Option A, plain string + * {"seeAlso": "http://example.org/descriptions/book1.xml"} + * ``` + * + * ``` + * // Option B, object with @id property + * {"seeAlso": {"@id": "http://example.org/descriptions/book1.xml", "format": "text/xml"}} + * ``` + * + * Many of the properties in the API may be repeated. This is done by giving a list of values, using either of the + * representations described above, rather than a single string. + * ``` + * { + * "seeAlso": [ + * "http://example.org/descriptions/book1.md", + * "http://example.org/descriptions/book1.csv", + * {"@id": "http://example.org/descriptions/book1.xml", "format": "text/xml"} + * ] + * } + * ``` + * + */ +export declare type URIRepresentation = string | { "@id": string; format?: string }; + +/** + * Minimal HTML markup may be included in the description, attribution and metadata properties. It must not be used in + * label or other properties. This is included to allow manifest creators to add links and simple formatting + * instructions to blocks of text. The content must be well-formed XML and therefore must be wrapped in an element + * such as p or span. There must not be whitespace on either side of the HTML string, and thus the first character in + * the string must be a ‘<’ character and the last character must be ‘>’, allowing a consuming application to test + * whether the value is HTML or plain text using these. To avoid a non-HTML string matching this, it is recommended + * that an additional whitespace character be added to the end of the value. + * + * In order to avoid HTML or script injection attacks, clients must remove: + * + * - Tags such as script, style, object, form, input and similar. + * - All attributes other than href on the a tag, src and alt on the img tag. + * - CData sections. + * - XML Comments. + * - Processing instructions. + * - Clients should allow only a, b, br, i, img, p, and span tags. Clients may choose to remove any and all tags, + * therefore it should not be assumed that the formatting will always be rendered. + */ +export declare type HTMLMarkup = string; + +/** + * Language may be associated with strings that are intended to be displayed to the user with the following pattern of + * `@value` plus the RFC 5646 code in `@language`, instead of a plain string. For example: + * + * ``` + * {"description": {"@value": "Here is a longer description of the object", "@language": "en"}} + * ``` + * + * This pattern may be used in label, description, attribution and the label and value fields of the metadata + * construction. + * + * Note that RFC 5646 allows the script of the text to be included after a hyphen, such as ar-latn, and clients should + * be aware of this possibility. This allows for full internationalization of the user interface components described + * in the response, as the labels as well as values may be translated in this manner; examples are given below. + * + * In the case where multiple values are supplied, clients must use the following algorithm to determine which values + * to display to the user. + * + * - If none of the values have a language associated with them, the client must display all of the values. + * - Else, the client should try to determine the user’s language preferences, or failing that use some default + * language preferences. Then: + * - If any of the values have a language associated with them, the client must display all of the values associated + * with the language that best matches the language preference. + * - If all of the values have a language associated with them, and none match the language preference, the client + * must select a language and display all of the values associated with that language. + * - If some of the values have a language associated with them, but none match the language preference, the client + * must display all of the values that do not have a language associated with them. + */ +export declare type LanguageProperty = HTMLMarkup | string | { "@language": string; "@value": string }; + +export declare type Required = T extends object ? { [P in keyof T]-?: NonNullable } : T; + +export declare type OmitProperties = Pick>; + +export declare type Snippet = { + "@id": T["@id"]; + "@type": T["@type"]; + label?: OneOrMany; +}; diff --git a/src/presentation-2/upgrader.ts b/src/presentation-2/upgrader.ts index 957bc97..2579038 100644 --- a/src/presentation-2/upgrader.ts +++ b/src/presentation-2/upgrader.ts @@ -1,20 +1,20 @@ -import * as Presentation3 from '@iiif/presentation-3'; -import * as Presentation2 from '@iiif/presentation-2'; -import { imageServiceProfiles, level1Support } from '../shared/image-api-profiles'; -import { Traverse } from './traverse'; -import { ensureArray } from '../shared/ensure-array'; -import { removeUndefinedProperties } from '../shared/remove-undefined-properties'; -import { level0Support, level2Support } from '../image-3/profiles/profiles'; +import type * as Presentation3 from "../presentation-3/types"; +import type * as Presentation2 from "./types"; +import { imageServiceProfiles, level1Support } from "../shared/image-api-profiles"; +import { Traverse } from "./traverse"; +import { ensureArray } from "../shared/ensure-array"; +import { removeUndefinedProperties } from "../shared/remove-undefined-properties"; +import { level0Support, level2Support } from "../image-3/profiles/profiles"; const configuration = { - attributionLabel: 'Attribution', - lang: 'none', - providerId: 'http://example.org/provider', - providerName: '', + attributionLabel: "Attribution", + lang: "none", + providerId: "http://example.org/provider", + providerName: "", }; function compatLanguageMap(inputLangProperty?: unknown): Array { - if (typeof inputLangProperty === 'string') { + if (typeof inputLangProperty === "string") { return [inputLangProperty]; } if (!inputLangProperty) { @@ -24,13 +24,13 @@ function compatLanguageMap(inputLangProperty?: unknown): Array, - defaultLang = 'none' + defaultLang = "none" ): Presentation3.InternationalString { if (!inputLangProperty) { - return { none: [''] }; + return { none: [""] }; } const arrayOfValues = compatLanguageMap(inputLangProperty); @@ -50,27 +50,27 @@ export function convertLanguageMapping( for (const language of arrayOfValues) { // For strings "label": ["a value"] - if (typeof language === 'string') { + if (typeof language === "string") { languageMap[defaultLang] = languageMap[defaultLang] ? languageMap[defaultLang] : []; - (languageMap[defaultLang] as string[]).push(language || ''); + (languageMap[defaultLang] as string[]).push(language || ""); continue; } // For maps without a language - if (!language['@language']) { + if (!language["@language"]) { languageMap[defaultLang] = languageMap[defaultLang] ? languageMap[defaultLang] : []; - (languageMap[defaultLang] as string[]).push(language['@value'] || ''); + (languageMap[defaultLang] as string[]).push(language["@value"] || ""); continue; } // Default case with language. - const lang = language['@language']; + const lang = language["@language"]; languageMap[lang] = languageMap[lang] ? languageMap[lang] : []; - (languageMap[lang] as string[]).push(language['@value'] || ''); + (languageMap[lang] as string[]).push(language["@value"] || ""); } if (Object.keys(languageMap).length === 0) { - return { none: [''] }; + return { none: [""] }; } return languageMap; @@ -78,22 +78,22 @@ export function convertLanguageMapping( export function getProfile(profile: any | any[]): string | undefined { if (Array.isArray(profile)) { - return getProfile(profile.find((s) => typeof s === 'string')); + return getProfile(profile.find((s) => typeof s === "string")); } if (level2Support.indexOf(profile) !== -1) { - return 'level2'; + return "level2"; } if (level1Support.indexOf(profile) !== -1) { - return 'level1'; + return "level1"; } if (level0Support.indexOf(profile) !== -1) { - return 'level0'; + return "level0"; } - if (typeof profile !== 'string') { + if (typeof profile !== "string") { return undefined; } @@ -105,14 +105,14 @@ export function getTypeFromContext(inputContexts: string | string[]): string | u for (const context of contexts) { switch (context) { - case 'http://iiif.io/api/image/2/context.json': - case 'http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2': - return 'ImageService2'; - case 'http://iiif.io/api/image/1/context.json': - case 'http://library.stanford.edu/iiif/image-api/1.1/context.json': - return 'ImageService1'; - case 'http://iiif.io/api/annex/openannotation/context.json': - return 'ImageApiSelector'; + case "http://iiif.io/api/image/2/context.json": + case "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2": + return "ImageService2"; + case "http://iiif.io/api/image/1/context.json": + case "http://library.stanford.edu/iiif/image-api/1.1/context.json": + return "ImageService1"; + case "http://iiif.io/api/annex/openannotation/context.json": + return "ImageApiSelector"; } } @@ -121,41 +121,41 @@ export function getTypeFromContext(inputContexts: string | string[]): string | u function getTypeFromProfile(inputProfile: string): string | undefined { switch (inputProfile) { - case 'http://iiif.io/api/image/2/level0.json': - case 'http://iiif.io/api/image/2/level1.json': - case 'http://iiif.io/api/image/2/level2.json': - return 'ImageService2'; - - case 'http://iiif.io/api/auth/1/kiosk': - case 'http://iiif.io/api/auth/1/login': - case 'http://iiif.io/api/auth/1/clickthrough': - case 'http://iiif.io/api/auth/1/external': - case 'http://iiif.io/api/auth/0/kiosk': - case 'http://iiif.io/api/auth/0/login': - case 'http://iiif.io/api/auth/0/clickthrough': - case 'http://iiif.io/api/auth/0/external': - return 'AuthCookieService1'; - - case 'http://iiif.io/api/auth/1/token': - case 'http://iiif.io/api/auth/0/token': - return 'AuthTokenService1'; - case 'http://iiif.io/api/auth/1/logout': - case 'http://iiif.io/api/auth/0/logout': - return 'AuthLogoutService1'; - - case 'http://iiif.io/api/search/1/search': - case 'http://iiif.io/api/search/0/search': - return 'SearchService1'; - case 'http://iiif.io/api/search/1/autocomplete': - case 'http://iiif.io/api/search/0/autocomplete': - return 'AutoCompleteService1'; + case "http://iiif.io/api/image/2/level0.json": + case "http://iiif.io/api/image/2/level1.json": + case "http://iiif.io/api/image/2/level2.json": + return "ImageService2"; + + case "http://iiif.io/api/auth/1/kiosk": + case "http://iiif.io/api/auth/1/login": + case "http://iiif.io/api/auth/1/clickthrough": + case "http://iiif.io/api/auth/1/external": + case "http://iiif.io/api/auth/0/kiosk": + case "http://iiif.io/api/auth/0/login": + case "http://iiif.io/api/auth/0/clickthrough": + case "http://iiif.io/api/auth/0/external": + return "AuthCookieService1"; + + case "http://iiif.io/api/auth/1/token": + case "http://iiif.io/api/auth/0/token": + return "AuthTokenService1"; + case "http://iiif.io/api/auth/1/logout": + case "http://iiif.io/api/auth/0/logout": + return "AuthLogoutService1"; + + case "http://iiif.io/api/search/1/search": + case "http://iiif.io/api/search/0/search": + return "SearchService1"; + case "http://iiif.io/api/search/1/autocomplete": + case "http://iiif.io/api/search/0/autocomplete": + return "AutoCompleteService1"; } return undefined; } function removePrefix(str: string) { - for (const prefix of ['sc', 'oa', 'dcterms', 'dctypes', 'iiif']) { + for (const prefix of ["sc", "oa", "dcterms", "dctypes", "iiif"]) { if (str.startsWith(`${prefix}:`)) { return str.slice(prefix.length + 1); } @@ -164,13 +164,13 @@ function removePrefix(str: string) { return str; } -const knownTypes = ['Collection', 'Manifest', 'Annotation', 'AnnotationPage', 'Range', 'Service']; +const knownTypes = ["Collection", "Manifest", "Annotation", "AnnotationPage", "Range", "Service"]; function getNewType(resource: any): string { - const id = resource['@id'] || resource.id; - let oldType: string | string[] = resource['@type'] || resource.type; + const id = resource["@id"] || resource.id; + let oldType: string | string[] = resource["@type"] || resource.type; const profile: any = resource.profile || undefined; - const context: any = resource['@context'] || undefined; + const context: any = resource["@context"] || undefined; if (profile) { const possibleType = getTypeFromProfile(profile); @@ -188,17 +188,17 @@ function getNewType(resource: any): string { if (oldType) { if (Array.isArray(oldType)) { - if (oldType.indexOf('oa:CssStylesheet') !== -1) { - return 'CssStylesheet'; + if (oldType.indexOf("oa:CssStylesheet") !== -1) { + return "CssStylesheet"; } - if (oldType.indexOf('cnt:ContentAsText') !== -1) { - return 'TextualBody'; + if (oldType.indexOf("cnt:ContentAsText") !== -1) { + return "TextualBody"; } // Nothing we can do? oldType = oldType[0]!; } - for (const prefix of ['sc', 'oa', 'dcterms', 'dctypes', 'iiif']) { + for (const prefix of ["sc", "oa", "dcterms", "dctypes", "iiif"]) { if (oldType.startsWith(`${prefix}:`)) { oldType = oldType.slice(prefix.length + 1); break; @@ -206,12 +206,12 @@ function getNewType(resource: any): string { } switch (oldType) { - case 'Layer': - return 'AnnotationCollection'; - case 'AnnotationList': - return 'AnnotationPage'; - case 'cnt:ContentAsText': - return 'TextualBody'; + case "Layer": + return "AnnotationCollection"; + case "AnnotationList": + return "AnnotationPage"; + case "cnt:ContentAsText": + return "TextualBody"; // @todo There are definitely some missing annotation types here. } } @@ -221,26 +221,26 @@ function getNewType(resource: any): string { } if (resource.format) { - if (resource.format.startsWith('image/')) { - return 'Image'; + if (resource.format.startsWith("image/")) { + return "Image"; } - if (resource.format.startsWith('text/')) { - return 'Text'; + if (resource.format.startsWith("text/")) { + return "Text"; } - if (resource.format === 'application/pdf') { - return 'Text'; + if (resource.format === "application/pdf") { + return "Text"; } - if (resource.format.startsWith('application/')) { - return 'Dataset'; + if (resource.format.startsWith("application/")) { + return "Dataset"; } } - if (id && (id.endsWith('.jpg') || id.endsWith('.png') || id.endsWith('.jpeg'))) { - return 'Image'; + if (id && (id.endsWith(".jpg") || id.endsWith(".png") || id.endsWith(".jpeg"))) { + return "Image"; } if (!oldType) { - return 'unknown'; + return "unknown"; } // Again, nothing we can do. @@ -260,10 +260,10 @@ function extractLicense(license: string) { async function getContentTypeOfRemoteResource(resourceId: string): Promise { try { - const response = await fetch(resourceId, { method: 'HEAD' }); + const response = await fetch(resourceId, { method: "HEAD" }); const headers = response.headers; - return headers.get('content-type') || undefined; + return headers.get("content-type") || undefined; } catch (e) { // do nothing. } @@ -272,12 +272,12 @@ async function getContentTypeOfRemoteResource(resourceId: string): Promise, + resource: Presentation3.SomeRequired, subResource?: string ) { - const origId = encodeURI((resource as { id?: string }).id || resource['@id'] || '').trim(); + const origId = encodeURI((resource as { id?: string }).id || resource["@id"] || "").trim(); if (origId && subResource) { return `${origId}/${subResource}`; @@ -375,7 +375,7 @@ function mintNewIdFromResource( mintedIdCounter++; // @todo. - return `http://example.org/${resource['@type']}${subResource ? `/${subResource}` : ''}/${mintedIdCounter}`; + return `http://example.org/${resource["@type"]}${subResource ? `/${subResource}` : ""}/${mintedIdCounter}`; } // @todo this was removed due to identifiers not being able to be used externally after upgrading. @@ -384,11 +384,11 @@ function resolveDecodedURI(uri: string) { } function technicalProperties>( - resource: Presentation3.SomeRequired & { + resource: Presentation3.SomeRequired & { motivation?: string | string[] | null; format?: string; profile?: any; - '@context'?: string | string[] | undefined; + "@context"?: string | string[] | undefined; } ) { const allBehaviors = [...(resource.behavior || [])]; @@ -405,8 +405,8 @@ function technicalProperties { - if (typeof t === 'string') { - return { id: t, type: 'Image' }; + if (typeof t === "string") { + return { id: t, type: "Image" }; } - if (t.type === 'unknown') { - t.type = 'Image'; + if (t.type === "unknown") { + t.type = "Image"; } return t; }); @@ -461,27 +461,27 @@ function compatThumbnail(thumb: any) { return thumb; } -function parseWithin(resource: Presentation2.AbstractResource): undefined | Presentation3.LinkingProperties['partOf'] { +function parseWithin(resource: Presentation2.AbstractResource): undefined | Presentation3.LinkingProperties["partOf"] { if (!resource.within) { return undefined; } const withinProperties = Array.isArray(resource.within) ? resource.within : [resource.within]; - const returnPartOf: Presentation3.LinkingProperties['partOf'] = []; + const returnPartOf: Presentation3.LinkingProperties["partOf"] = []; for (const within of withinProperties) { - if (typeof within === 'string') { + if (typeof within === "string") { if (within) { - switch (resource['@type']) { - case 'sc:Manifest': - returnPartOf.push({ id: within, type: 'Collection' }); + switch (resource["@type"]) { + case "sc:Manifest": + returnPartOf.push({ id: within, type: "Collection" }); break; // @todo are there more cases? } } - } else if ((within as any)['@id']) { + } else if ((within as any)["@id"]) { returnPartOf.push({ - id: (within as any)['@id'], // as any since content resources don't require an `@id` + id: (within as any)["@id"], // as any since content resources don't require an `@id` type: getNewType(within) as any, }); } else { @@ -504,7 +504,7 @@ function linkingProperties(resource: Presentation2.LinkingProperties & Presentat ? [ { id: configuration.providerId, - type: 'Agent' as const, + type: "Agent" as const, homepage: related.length ? [related[0] as any] : undefined, logo: resource.logo ? (Array.isArray(resource.logo) ? resource.logo : [resource.logo]) : undefined, label: convertLanguageMapping(configuration.providerName), @@ -531,21 +531,21 @@ function embeddedContentProperties(resource: Presentation2.CharsEmbeddedContent) function stringOrRefToRef(object: any, type: string) { if (!object) return null; - if (typeof object === 'string') { + if (typeof object === "string") { return { id: object, type, }; } - if (typeof object?.['@id'] === 'string') { + if (typeof object?.["@id"] === "string") { return { - id: object['@id'], + id: object["@id"], type, }; } - if (typeof object.id === 'string') { + if (typeof object.id === "string") { return { id: object.id, type, @@ -567,7 +567,7 @@ function paginationProperties(collection: Presentation2.Collection) { if ((collection as any).first) { // Note: This is a stop-gap solution for "v3.1", which does not have CollectionPages. - const ref = stringOrRefToRef((collection as any).first, 'Collection'); + const ref = stringOrRefToRef((collection as any).first, "Collection"); if (ref) { additionalProperties.first = ref; } @@ -578,14 +578,14 @@ function paginationProperties(collection: Presentation2.Collection) { } if ((collection as any).prev) { - const ref = stringOrRefToRef((collection as any).prev, 'Collection'); + const ref = stringOrRefToRef((collection as any).prev, "Collection"); if (ref) { additionalProperties.prev = ref; } } if ((collection as any).next) { - const ref = stringOrRefToRef((collection as any).next, 'Collection'); + const ref = stringOrRefToRef((collection as any).next, "Collection"); if (ref) { additionalProperties.next = ref; } @@ -609,7 +609,7 @@ function removeEmptyItems(resources: any[]) { function upgradeCollection(collection: Presentation2.Collection): Presentation3.Collection { return removeUndefinedProperties({ ...technicalProperties(collection), - ...descriptiveProperties>(collection), + ...descriptiveProperties>(collection), ...linkingProperties(collection), ...paginationProperties(collection), items: removeEmptyItems(collection.members as any), @@ -679,7 +679,7 @@ function flattenStructures(structures: Presentation3.Range[]): Presentation3.Ran for (const range of structures) { if (range.items) { const items = range.items.map((item) => { - if (typeof item === 'string') { + if (typeof item === "string") { found.push(item); return ranges.get(item) || item; } @@ -706,8 +706,8 @@ function upgradeCanvas(canvas: Presentation2.Canvas): Presentation3.Canvas { canvas.images && canvas.images.length ? [ { - id: mintNewIdFromResource(canvas, 'annotation-page'), - type: 'AnnotationPage', + id: mintNewIdFromResource(canvas, "annotation-page"), + type: "AnnotationPage", items: canvas.images as any, }, ] @@ -727,8 +727,8 @@ function upgradeAnnotationList(annotationPage: Presentation2.AnnotationList): Pr function upgradeSequence(sequence: Presentation2.Sequence): { canvases: Presentation3.Canvas[]; behavior?: string[]; - startCanvas?: Presentation3.Reference<'Canvas'> | undefined; - viewingDirection?: 'left-to-right' | 'right-to-left' | 'top-to-bottom' | 'bottom-to-top'; + startCanvas?: Presentation3.Reference<"Canvas"> | undefined; + viewingDirection?: "left-to-right" | "right-to-left" | "top-to-bottom" | "bottom-to-top"; } { /* rng = {"id": s.get('@id', self.mint_uri()), "type": "Range"} @@ -767,30 +767,30 @@ function upgradeAnnotation(annotation: Presentation2.Annotation): Presentation3. function upgradeTarget(target: typeof annotation.on): Presentation3.AnnotationTarget { if (Array.isArray(target)) { if (target.length > 1) { - return { type: 'List', items: target.map(upgradeTarget) as Presentation3.Target[] }; + return { type: "List", items: target.map(upgradeTarget) as Presentation3.Target[] }; } target = target[0]!; } - if (typeof target === 'string') { + if (typeof target === "string") { return encodeURI(target).trim(); - } else if ('@type' in target) { - let source: string | Presentation3.Reference<'Canvas'> | Presentation3.Reference<'Image'>; - if (typeof target.full === 'string') { + } else if ("@type" in target) { + let source: string | Presentation3.Reference<"Canvas"> | Presentation3.Reference<"Image">; + if (typeof target.full === "string") { source = target.full; - } else if (target.full['@type'] === 'dctypes:Image') { - source = { id: target.full['@id'], type: 'Image' }; - } else if (target.full['@type'] === 'sc:Canvas') { - source = { id: target.full['@id'], type: 'Canvas' }; + } else if (target.full["@type"] === "dctypes:Image") { + source = { id: target.full["@id"], type: "Image" }; + } else if (target.full["@type"] === "sc:Canvas") { + source = { id: target.full["@id"], type: "Canvas" }; } else { - throw new Error(`Unsupported source type on annotation: ${target.full['@type']}`); + throw new Error(`Unsupported source type on annotation: ${target.full["@type"]}`); } return { - type: 'SpecificResource', + type: "SpecificResource", source, selector: upgradeSelector(target.selector), }; } else { - return encodeURI(target['@id']).trim(); + return encodeURI(target["@id"]).trim(); } } return removeUndefinedProperties({ @@ -808,7 +808,7 @@ function upgradeAnnotation(annotation: Presentation2.Annotation): Presentation3. function upgradeContentResourceOrChoice( resource: Presentation2.ContentResource | Presentation2.ChoiceEmbeddedContent ): Presentation3.ContentResource | Presentation3.ChoiceBody { - if ((resource as any).type === 'Choice') { + if ((resource as any).type === "Choice") { return resource as any; } return upgradeContentResource(resource); @@ -829,11 +829,11 @@ function upgradeContentResource(inputContentResource: Presentation2.ContentResou function upgradeChoice(choice: Presentation2.ChoiceEmbeddedContent): Presentation3.ChoiceBody { const items = []; - if (choice.default && choice.default !== 'rdf:nil') { + if (choice.default && choice.default !== "rdf:nil") { items.push(choice.default); } - if (choice.item && choice.item !== 'rdf:nil') { + if (choice.item && choice.item !== "rdf:nil") { items.push(...choice.item); } @@ -859,22 +859,22 @@ function upgradeRange(range: Presentation2.Range): Presentation3.Range { } function upgradeService(service: Presentation2.Service): Presentation3.Service { - const { '@id': id, '@type': type, '@context': context, profile, ...additionalProps } = service as any; + const { "@id": id, "@type": type, "@context": context, profile, ...additionalProps } = service as any; const newService: any = {}; if (id) { - newService['@id'] = id; + newService["@id"] = id; } - newService['@type'] = getNewType(service); + newService["@type"] = getNewType(service); - if (newService['@type'] === 'unknown') { + if (newService["@type"] === "unknown") { // @todo handle case where there might be multiple contexts. if (context && context.length) { - newService['@context'] = context; + newService["@context"] = context; } - newService['@type'] = 'Service'; // optional on services. + newService["@type"] = "Service"; // optional on services. } if (profile) { @@ -924,19 +924,19 @@ export const presentation2to3 = new Traverse<{ export function convertPresentation2(entity: any): Presentation3.Manifest | Presentation3.Collection { if ( (entity && - entity['@context'] && - (entity['@context'] === 'http://iiif.io/api/presentation/2/context.json' || - (Array.isArray(entity['@context']) && - entity['@context'].indexOf('http://iiif.io/api/presentation/2/context.json') !== -1) || + entity["@context"] && + (entity["@context"] === "http://iiif.io/api/presentation/2/context.json" || + (Array.isArray(entity["@context"]) && + entity["@context"].indexOf("http://iiif.io/api/presentation/2/context.json") !== -1) || // Yale context. - entity['@context'] === 'http://www.shared-canvas.org/ns/context.json')) || - entity['@context'] === 'http://iiif.io/api/image/2/context.json' || + entity["@context"] === "http://www.shared-canvas.org/ns/context.json")) || + entity["@context"] === "http://iiif.io/api/image/2/context.json" || // No-context is possible. - (entity['@id'] && entity['@type'] === 'sc:Collection') || - (entity['@id'] && entity['@type'] === 'sc:Manifest') + (entity["@id"] && entity["@type"] === "sc:Collection") || + (entity["@id"] && entity["@type"] === "sc:Manifest") ) { - if (!entity['@context']) { - entity['@context'] = 'http://iiif.io/api/presentation/2/context.json'; + if (!entity["@context"]) { + entity["@context"] = "http://iiif.io/api/presentation/2/context.json"; } return presentation2to3.traverseUnknown(entity); } @@ -947,22 +947,22 @@ function upgradeSelector( selector: Presentation2.ContentResourceSelector ): Presentation3.Selector | Presentation3.Selector[] { const isSvgSelector = - ((Array.isArray(selector['@type']) && selector['@type'].includes('oa:SvgSelector')) || - selector['@type'] == 'oa:SvgSelector') && - ('chars' in selector || 'value' in selector); + ((Array.isArray(selector["@type"]) && selector["@type"].includes("oa:SvgSelector")) || + selector["@type"] == "oa:SvgSelector") && + ("chars" in selector || "value" in selector); if (isSvgSelector) { return { - type: 'SvgSelector', - value: 'chars' in selector ? selector.chars : selector.value, + type: "SvgSelector", + value: "chars" in selector ? selector.chars : selector.value, }; } - if (selector['@type'] === 'oa:FragmentSelector') { + if (selector["@type"] === "oa:FragmentSelector") { return { - type: 'FragmentSelector', + type: "FragmentSelector", value: selector.value, }; } - if (selector['@type'] === 'oa:Choice') { + if (selector["@type"] === "oa:Choice") { return [ upgradeSelector(selector.default) as Presentation3.Selector, ...((Array.isArray(selector.item) ? selector.item : [selector.item]).map( @@ -970,12 +970,12 @@ function upgradeSelector( ) as Presentation3.Selector[]), ]; } - if (selector['@type'] == 'iiif:ImageApiSelector') { + if (selector["@type"] == "iiif:ImageApiSelector") { return { - type: 'ImageApiSelector', - region: 'region' in selector ? selector.region : undefined, - rotation: 'rotation' in selector ? selector.rotation : undefined, + type: "ImageApiSelector", + region: "region" in selector ? selector.region : undefined, + rotation: "rotation" in selector ? selector.rotation : undefined, }; } - throw new Error(`Unsupported selector type: ${selector['@type']}`); + throw new Error(`Unsupported selector type: ${selector["@type"]}`); } diff --git a/src/presentation-3-normalized/index.ts b/src/presentation-3-normalized/index.ts new file mode 100644 index 0000000..267f746 --- /dev/null +++ b/src/presentation-3-normalized/index.ts @@ -0,0 +1 @@ +export type * from "./types"; diff --git a/src/presentation-3-normalized/types/index.ts b/src/presentation-3-normalized/types/index.ts new file mode 100644 index 0000000..72da6af --- /dev/null +++ b/src/presentation-3-normalized/types/index.ts @@ -0,0 +1 @@ +export type * from "./legacy/index"; diff --git a/src/presentation-3-normalized/types/legacy/iiif/descriptive.d.ts b/src/presentation-3-normalized/types/legacy/iiif/descriptive.d.ts new file mode 100644 index 0000000..1148560 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/iiif/descriptive.d.ts @@ -0,0 +1,11 @@ +import { DescriptiveProperties, OmitProperties, Reference } from "../../../../presentation-3/types"; + +export declare type DescriptiveNormalized = OmitProperties< + DescriptiveProperties, + "provider" | "thumbnail" | "accompanyingCanvas" | "placeholderCanvas" +> & { + thumbnail: Array>; + placeholderCanvas: Reference<"Canvas"> | null; + accompanyingCanvas: Reference<"Canvas"> | null; + provider: Array>; +}; diff --git a/src/presentation-3-normalized/types/legacy/iiif/linking.d.ts b/src/presentation-3-normalized/types/legacy/iiif/linking.d.ts new file mode 100644 index 0000000..618c90c --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/iiif/linking.d.ts @@ -0,0 +1,13 @@ +import { Reference, SpecificResource } from "../../../../presentation-3/types"; +import { ServiceNormalized } from "../resources/service"; + +export declare type LinkingNormalized = { + seeAlso: Array>; + service: Array; + services: Array; + rendering: Array>; + partOf: Array>; + start: SpecificResource> | null; + supplementary: Reference<"AnnotationCollection"> | null; + homepage: Array>; +}; diff --git a/src/presentation-3-normalized/types/legacy/iiif/structural.d.ts b/src/presentation-3-normalized/types/legacy/iiif/structural.d.ts new file mode 100644 index 0000000..2ac785e --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/iiif/structural.d.ts @@ -0,0 +1,7 @@ +import { Reference, SpecificResource } from "../../../../presentation-3/types"; + +export declare type StructuralNormalized = { + items: T[]; + annotations: Array>; + structures: Array>; +}; diff --git a/src/presentation-3-normalized/types/legacy/index.d.ts b/src/presentation-3-normalized/types/legacy/index.d.ts new file mode 100644 index 0000000..98a52cc --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/index.d.ts @@ -0,0 +1,13 @@ +export * from "./resources/annotation"; +export * from "./resources/annotationCollection"; +export * from "./resources/annotationPage"; +export * from "./resources/canvas"; +export * from "./resources/collection"; +export * from "./resources/contentResource"; +export * from "./resources/manifest"; +export * from "./resources/range"; +export * from "./resources/service"; +export * from "./resources/provider"; +export * from "./iiif/descriptive"; +export * from "./iiif/linking"; +export * from "./iiif/structural"; diff --git a/src/presentation-3-normalized/types/legacy/resources/annotation.d.ts b/src/presentation-3-normalized/types/legacy/resources/annotation.d.ts new file mode 100644 index 0000000..24f2049 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/annotation.d.ts @@ -0,0 +1,53 @@ +import { + Agent, + AnyMotivation, + Audience, + Stylesheet, + AnnotationOmittedTechnical, + AnnotationOmittedLinking, + AnnotationOmittedDescriptive, + JsonLDContext, + Reference, + TechnicalProperties, + OmitProperties, + SomeRequired, +} from "../../../../presentation-3/types"; +import { DescriptiveNormalized } from "../iiif/descriptive"; +import { LinkingNormalized } from "../iiif/linking"; + +export declare type CreatorNormalized = string[] | Agent[]; + +export declare type OtherPropertiesNormalized = { + // Lifecycle properties. + created: string | null; + generated: string | null; + modified: string | null; + creator: CreatorNormalized; + generator: CreatorNormalized; + // Intended audience + audience: Audience[]; + accessibility: string[]; + motivation: AnyMotivation[]; + // Rights + rights: string[]; + // Other identities + canonical: string | null; + via: string[]; +}; + +export declare type AnnotationW3cNormalised = JsonLDContext & + Partial & { + body: Array>; + bodyValue?: string | null; + target: Array>; + stylesheet?: Stylesheet | null; + }; + +export interface AnnotationNormalized + extends + SomeRequired, "id" | "type">, + Partial>, + Partial>, + AnnotationW3cNormalised { + type: "Annotation"; +} diff --git a/src/presentation-3-normalized/types/legacy/resources/annotationCollection.d.ts b/src/presentation-3-normalized/types/legacy/resources/annotationCollection.d.ts new file mode 100644 index 0000000..f692fa6 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/annotationCollection.d.ts @@ -0,0 +1,15 @@ +import { + AnnotationCollectionOmittedDescriptive, + AnnotationCollectionOmittedLinking, + AnnotationCollectionOmittedTechnical, + OmitProperties, + TechnicalProperties, +} from "../../../../presentation-3/types"; +import { LinkingNormalized } from "../iiif/linking"; +import { DescriptiveNormalized } from "../iiif/descriptive"; + +export interface AnnotationCollectionNormalized + extends + OmitProperties, + OmitProperties, + OmitProperties {} diff --git a/src/presentation-3-normalized/types/legacy/resources/annotationPage.d.ts b/src/presentation-3-normalized/types/legacy/resources/annotationPage.d.ts new file mode 100644 index 0000000..fed8b81 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/annotationPage.d.ts @@ -0,0 +1,19 @@ +import { + AnnotationPageOmittedDescriptive, + AnnotationPageOmittedLinking, + AnnotationPageOmittedStructural, + AnnotationPageOmittedTechnical, + OmitProperties, + Reference, + TechnicalProperties, +} from "../../../../presentation-3/types"; +import { LinkingNormalized } from "../iiif/linking"; +import { StructuralNormalized } from "../iiif/structural"; +import { DescriptiveNormalized } from "../iiif/descriptive"; + +export declare type AnnotationPageNormalized = OmitProperties & + OmitProperties & + OmitProperties>, AnnotationPageOmittedStructural> & + OmitProperties & { + type: "AnnotationPage"; + }; diff --git a/src/presentation-3-normalized/types/legacy/resources/canvas.d.ts b/src/presentation-3-normalized/types/legacy/resources/canvas.d.ts new file mode 100644 index 0000000..c3cbe46 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/canvas.d.ts @@ -0,0 +1,19 @@ +import { + CanvasOmittedDescriptive, + CanvasOmittedLinking, + CanvasOmittedStructural, + CanvasOmittedTechnical, + NavPlaceExtension, + OmitProperties, + Reference, + TechnicalProperties, +} from "../../../../presentation-3/types"; +import { DescriptiveNormalized } from "../iiif/descriptive"; +import { StructuralNormalized } from "../iiif/structural"; +import { LinkingNormalized } from "../iiif/linking"; + +export declare type CanvasNormalized = OmitProperties & + OmitProperties & + OmitProperties>, CanvasOmittedStructural> & + OmitProperties & + NavPlaceExtension & { type: "Canvas" }; diff --git a/src/presentation-3-normalized/types/legacy/resources/collection.d.ts b/src/presentation-3-normalized/types/legacy/resources/collection.d.ts new file mode 100644 index 0000000..a0c8c13 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/collection.d.ts @@ -0,0 +1,23 @@ +import { + CollectionOmittedDescriptive, + CollectionOmittedLinking, + CollectionOmittedStructural, + CollectionOmittedTechnical, + NavPlaceExtension, + OmitProperties, + Reference, + TechnicalProperties, +} from "../../../../presentation-3/types"; +import { DescriptiveNormalized } from "../iiif/descriptive"; +import { StructuralNormalized } from "../iiif/structural"; +import { LinkingNormalized } from "../iiif/linking"; + +export type NormalizedCollectionItemSchemas = Reference<"Collection"> | Reference<"Manifest">; + +export declare type CollectionNormalized = OmitProperties & + OmitProperties & + OmitProperties, CollectionOmittedStructural> & + OmitProperties & + NavPlaceExtension & { + type: "Collection"; + }; diff --git a/src/presentation-3-normalized/types/legacy/resources/contentResource.d.ts b/src/presentation-3-normalized/types/legacy/resources/contentResource.d.ts new file mode 100644 index 0000000..3f36dfb --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/contentResource.d.ts @@ -0,0 +1,4 @@ +import { ContentResource } from "../../../../presentation-3/types"; + +// @todo Content resource normalized? What should it narrow down to? Is it reversible? +export declare type ContentResourceNormalized = ContentResource; diff --git a/src/presentation-3-normalized/types/legacy/resources/manifest.d.ts b/src/presentation-3-normalized/types/legacy/resources/manifest.d.ts new file mode 100644 index 0000000..49c0ea2 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/manifest.d.ts @@ -0,0 +1,21 @@ +import { + ManifestOmittedDescriptive, + ManifestOmittedLinking, + ManifestOmittedTechnical, + OmitProperties, + Reference, + TechnicalProperties, + NavPlaceExtension, +} from "../../../../presentation-3/types"; +import { DescriptiveNormalized } from "../iiif/descriptive"; +import { StructuralNormalized } from "../iiif/structural"; +import { LinkingNormalized } from "../iiif/linking"; + +export declare type ManifestNormalized = OmitProperties & + OmitProperties & + StructuralNormalized> & + OmitProperties & + NavPlaceExtension & { + "@context"?: string | string[]; + type: "Manifest"; + }; diff --git a/src/presentation-3-normalized/types/legacy/resources/provider.d.ts b/src/presentation-3-normalized/types/legacy/resources/provider.d.ts new file mode 100644 index 0000000..6e4060c --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/provider.d.ts @@ -0,0 +1,10 @@ +import { InternationalString, Reference } from "../../../../presentation-3/types"; + +export declare type ResourceProviderNormalized = { + id: string; + type: "Agent"; + label: InternationalString; + homepage: Array>; + logo: Array>; + seeAlso: Array>; +}; diff --git a/src/presentation-3-normalized/types/legacy/resources/range.d.ts b/src/presentation-3-normalized/types/legacy/resources/range.d.ts new file mode 100644 index 0000000..bf2bcb1 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/range.d.ts @@ -0,0 +1,22 @@ +import { + OmitProperties, + RangeOmittedDescriptive, + RangeOmittedLinking, + RangeOmittedStructural, + RangeOmittedTechnical, + Reference, + TechnicalProperties, + SpecificResource, + NavPlaceExtension, +} from "../../../../presentation-3/types"; +import { StructuralNormalized } from "../iiif/structural"; +import { DescriptiveNormalized } from "../iiif/descriptive"; +import { LinkingNormalized } from "../iiif/linking"; + +export type NormalizedRangeItemSchemas = Reference<"Range"> | SpecificResource>; + +export declare type RangeNormalized = OmitProperties & + OmitProperties & + OmitProperties, RangeOmittedStructural> & + OmitProperties & + NavPlaceExtension & { type: "Range" }; diff --git a/src/presentation-3-normalized/types/legacy/resources/service.d.ts b/src/presentation-3-normalized/types/legacy/resources/service.d.ts new file mode 100644 index 0000000..2cdae19 --- /dev/null +++ b/src/presentation-3-normalized/types/legacy/resources/service.d.ts @@ -0,0 +1,4 @@ +import { Service } from "../../../../presentation-3/types"; + +// no more normalization for now. +export declare type ServiceNormalized = Service; diff --git a/src/presentation-3/empty-types.ts b/src/presentation-3/empty-types.ts index 492c9c1..5492d45 100644 --- a/src/presentation-3/empty-types.ts +++ b/src/presentation-3/empty-types.ts @@ -1,4 +1,4 @@ -import { +import type { AnnotationNormalized, AnnotationPageNormalized, CanvasNormalized, @@ -6,13 +6,13 @@ import { ManifestNormalized, RangeNormalized, ResourceProviderNormalized, -} from '@iiif/presentation-3-normalized'; -import { _ServiceNormalized } from './serialize'; -import { EMPTY } from './utilities'; +} from "../presentation-3-normalized/types"; +import { _ServiceNormalized } from "./serialize"; +import { EMPTY } from "./utilities"; export const emptyAnnotation: AnnotationNormalized = { - id: 'https://iiif-parser/annotation', - type: 'Annotation', + id: "https://iiif-parser/annotation", + type: "Annotation", behavior: EMPTY, label: null, thumbnail: EMPTY, @@ -43,8 +43,8 @@ export const emptyAnnotation: AnnotationNormalized = { }; export const emptyAnnotationPage: AnnotationPageNormalized = { - id: 'https://iiif-parser/annotation-page', - type: 'AnnotationPage', + id: "https://iiif-parser/annotation-page", + type: "AnnotationPage", behavior: EMPTY, label: null, thumbnail: EMPTY, @@ -61,8 +61,8 @@ export const emptyAnnotationPage: AnnotationPageNormalized = { }; export const emptyCanvas: CanvasNormalized = { - id: 'https://iiif-parser/empty-canvas', - type: 'Canvas', + id: "https://iiif-parser/empty-canvas", + type: "Canvas", label: null, behavior: EMPTY, thumbnail: EMPTY, @@ -87,10 +87,10 @@ export const emptyCanvas: CanvasNormalized = { }; export const emptyCollection: CollectionNormalized = { - id: 'https://iiif-parser/empty-collection', - type: 'Collection', + id: "https://iiif-parser/empty-collection", + type: "Collection", label: null, - viewingDirection: 'left-to-right', + viewingDirection: "left-to-right", behavior: EMPTY, thumbnail: EMPTY, accompanyingCanvas: null, @@ -112,8 +112,8 @@ export const emptyCollection: CollectionNormalized = { }; export const emptyManifest: ManifestNormalized = { - id: 'https://iiif-parser/empty-manifest', - type: 'Manifest', + id: "https://iiif-parser/empty-manifest", + type: "Manifest", annotations: EMPTY, behavior: EMPTY, homepage: EMPTY, @@ -135,12 +135,12 @@ export const emptyManifest: ManifestNormalized = { structures: EMPTY, summary: null, thumbnail: EMPTY, - viewingDirection: 'left-to-right', + viewingDirection: "left-to-right", }; export const emptyRange: RangeNormalized = { - id: 'https://iiif-parser/empty-canvas', - type: 'Range', + id: "https://iiif-parser/empty-canvas", + type: "Range", label: null, behavior: EMPTY, thumbnail: EMPTY, @@ -161,12 +161,12 @@ export const emptyRange: RangeNormalized = { service: EMPTY, start: null, supplementary: null, - viewingDirection: 'left-to-right', + viewingDirection: "left-to-right", }; export const emptyAgent: ResourceProviderNormalized = { - id: 'https://iiif-parser/empty-agent', - type: 'Agent', + id: "https://iiif-parser/empty-agent", + type: "Agent", label: {}, logo: EMPTY, seeAlso: EMPTY, @@ -174,6 +174,6 @@ export const emptyAgent: ResourceProviderNormalized = { }; export const emptyService: _ServiceNormalized = { - id: 'https://iiif-parser/empty-service', - type: 'UnknownService', + id: "https://iiif-parser/empty-service", + type: "UnknownService", } as any; diff --git a/src/presentation-3/index.ts b/src/presentation-3/index.ts index 5050d96..3ce9aa6 100644 --- a/src/presentation-3/index.ts +++ b/src/presentation-3/index.ts @@ -1,12 +1,13 @@ -export * from './empty-types'; -export * from './normalize'; -export * from './traverse'; -export * from './serialize'; -export * from './serialize-presentation-2'; -export * from './serialize-presentation-3'; -export * from './utilities'; +export * from "./empty-types"; +export * from "./normalize"; +export * from "./traverse"; +export * from "./serialize"; +export * from "./serialize-presentation-2"; +export * from "./serialize-presentation-3"; +export * from "./utilities"; +export * from "./types"; // Export some shared utilities -export * from '../shared/to-ref'; -export * from '../shared/compress-specific-resource'; -export * from '../shared/is-specific-resource'; +export * from "../shared/to-ref"; +export * from "../shared/compress-specific-resource"; +export * from "../shared/is-specific-resource"; diff --git a/src/presentation-3/meta/behavior.ts b/src/presentation-3/meta/behavior.ts new file mode 100644 index 0000000..fb40f7e --- /dev/null +++ b/src/presentation-3/meta/behavior.ts @@ -0,0 +1,141 @@ +import type { InternationalString } from "../types"; + +export interface BehaviorChoice { + id: string; + label: InternationalString; + type: "choice"; + addNone?: boolean; + groupBehavior?: string; + items: Array<{ + value: string; + label: InternationalString; + }>; +} + +const autoAdvance = ["auto-advance", "no-auto-advance"] as const; + +const repeat = ["repeat", "no-repeat"] as const; + +const manifestOrdering = ["unordered", "individuals", "continuous", "paged"] as const; + +const canvasOrdering = ["facing-pages", "paged", "non-paged"] as const; + +const collection = ["multi-part", "together"] as const; + +const range = ["sequence", "thumbnail-nav", "no-nav"] as const; + +const hidden = ["hidden"] as const; + +const collectionOrdering = manifestOrdering; + +const rangeOrdering = manifestOrdering; + +export const behaviors = { + autoAdvance, + repeat, + manifestOrdering, + collectionOrdering, + rangeOrdering, + canvasOrdering, + collection, + range, + hidden, +}; + +export const supportedBehaviorGroups = { + Collection: [collectionOrdering, collection, repeat, autoAdvance], + Manifest: [manifestOrdering, repeat, autoAdvance], + Canvas: [canvasOrdering, autoAdvance], + Annotation: [hidden], + AnnotationPage: [hidden], + Range: [rangeOrdering, range, autoAdvance], + AnnotationCollection: [hidden], + ContentResource: [hidden], +}; + +function mapToItem(i: string) { + return { label: { none: [i] }, value: i }; +} + +const autoAdvanceConfig: BehaviorChoice = { + id: "@iiif/auto-advance", + label: { en: ["Auto-advance"] }, + type: "choice", + addNone: true, + items: autoAdvance.map(mapToItem), +}; + +const repeatConfig: BehaviorChoice = { + id: "@iiif/repeat", + label: { en: ["Repeat"] }, + type: "choice", + addNone: true, + items: repeat.map(mapToItem), +}; + +const manifestOrderingConfig: BehaviorChoice = { + id: "@iiif/manifest-ordering", + label: { en: ["Manifest ordering"] }, + type: "choice", + addNone: true, + items: manifestOrdering.map(mapToItem), +}; + +const canvasOrderingConfig: BehaviorChoice = { + id: "@iiif/canvas-ordering", + label: { en: ["Canvas ordering"] }, + type: "choice", + addNone: true, + items: canvasOrdering.map(mapToItem), +}; + +const collectionConfig: BehaviorChoice = { + id: "@iiif/range", + label: { en: ["Collection"] }, + type: "choice", + addNone: true, + items: collection.map(mapToItem), +}; + +const rangeConfig: BehaviorChoice = { + id: "@iiif/range", + label: { en: ["Range"] }, + type: "choice", + addNone: true, + items: range.map(mapToItem), +}; + +const collectionOrderingConfig: BehaviorChoice = { + id: "@iiif/collection-ordering", + label: { en: ["Collection ordering"] }, + type: "choice", + addNone: true, + items: collectionOrdering.map(mapToItem), +}; + +const rangeOrderingConfig: BehaviorChoice = { + id: "@iiif/range-ordering", + label: { en: ["Range ordering"] }, + type: "choice", + addNone: true, + items: rangeOrdering.map(mapToItem), +}; + +const hiddenConfig: BehaviorChoice = { + id: "@iiif/range-hidden", + label: { en: ["Visibility"] }, + type: "choice", + addNone: true, + items: hidden.map(mapToItem), +}; + +export const supportedBehaviorConfig = { + Collection: [collectionOrderingConfig, collectionConfig, repeatConfig, autoAdvanceConfig], + Manifest: [manifestOrderingConfig, repeatConfig, autoAdvanceConfig], + Canvas: [canvasOrderingConfig, autoAdvanceConfig], + Annotation: [hiddenConfig], + AnnotationPage: [hiddenConfig], + Range: [rangeOrderingConfig, rangeConfig, autoAdvanceConfig], + AnnotationCollection: [hiddenConfig], + ContentResource: [hiddenConfig], +}; diff --git a/src/presentation-3/meta/descriptive.ts b/src/presentation-3/meta/descriptive.ts new file mode 100644 index 0000000..6de4d6f --- /dev/null +++ b/src/presentation-3/meta/descriptive.ts @@ -0,0 +1,115 @@ +import type { DescriptiveProperties } from "../types"; + +const required = { + Collection: ["label"], + Manifest: ["label"], + Canvas: [], + Annotation: [], + AnnotationPage: [], + Range: [], + AnnotationCollection: [], + ContentResource: [], + Agent: ["label"], +} as const satisfies DescriptiveMap; + +const recommended = { + Collection: ["metadata", "summary", "provider", "thumbnail"], + Manifest: ["metadata", "summary", "provider", "thumbnail"], + Canvas: ["label"], + Annotation: [], + AnnotationPage: [], + Range: ["label"], + AnnotationCollection: ["label"], + ContentResource: ["label"], + Agent: [], +} as const satisfies DescriptiveMap; + +const optional = { + Collection: ["requiredStatement", "rights", "navDate", "placeholderCanvas", "accompanyingCanvas"], + Manifest: ["requiredStatement", "rights", "navDate", "placeholderCanvas", "accompanyingCanvas"], + Canvas: [ + "metadata", + "summary", + "requiredStatement", + "rights", + "navDate", + "provider", + "thumbnail", + "placeholderCanvas", + "accompanyingCanvas", + ], + Annotation: ["label", "metadata", "summary", "requiredStatement", "rights", "provider", "thumbnail"], + AnnotationPage: ["label", "metadata", "summary", "requiredStatement", "rights", "provider", "thumbnail"], + Range: [ + "metadata", + "summary", + "requiredStatement", + "rights", + "navDate", + "provider", + "thumbnail", + "placeholderCanvas", + "accompanyingCanvas", + ], + AnnotationCollection: ["metadata", "summary", "requiredStatement", "rights", "provider", "thumbnail"], + ContentResource: ["label", "metadata", "summary", "requiredStatement", "rights", "provider", "thumbnail"], + Agent: [], +} as const satisfies DescriptiveMap; + +const notAllowed = { + Collection: ["language"], + Manifest: ["language"], + Canvas: ["language"], + Annotation: ["navDate", "language", "placeholderCanvas", "accompanyingCanvas"], + AnnotationPage: ["navDate", "language", "placeholderCanvas", "accompanyingCanvas"], + Range: ["language"], + AnnotationCollection: ["navDate", "placeholderCanvas", "accompanyingCanvas"], + ContentResource: ["navDate", "placeholderCanvas", "accompanyingCanvas"], + Agent: [ + "provider", + "language", + "metadata", + "summary", + "thumbnail", + "requiredStatement", + "rights", + "navDate", + "placeholderCanvas", + "accompanyingCanvas", + ], +} as const satisfies DescriptiveMap; + +type DescriptiveMap = Record< + | "Collection" + | "Manifest" + | "Canvas" + | "Annotation" + | "AnnotationPage" + | "Range" + | "AnnotationCollection" + | "ContentResource" + | "Agent", + readonly (keyof DescriptiveProperties)[] +>; + +const all = [ + "label", + "summary", + "metadata", + "requiredStatement", + "rights", + "navDate", + "language", + "thumbnail", + "provider", + "placeholderCanvas", + "accompanyingCanvas", +] as const; + +export const descriptiveProperties = { + all, + required, + recommended, + optional, + notAllowed, +} as const; diff --git a/src/presentation-3/meta/documentation.ts b/src/presentation-3/meta/documentation.ts new file mode 100644 index 0000000..5f280ec --- /dev/null +++ b/src/presentation-3/meta/documentation.ts @@ -0,0 +1,223 @@ +/** + * IIIF Presentation API version 3.0 + * + * Everything in this file is adapted from this specification: https://iiif.io/api/presentation/3.0/ + * Summaries are provided by this specification. + * + * Editors of the specification: + * + * Michael Appleby, Yale University + * Tom Crane, Digirati + * Robert Sanderson, J. Paul Getty Trust + * Jon Stroop, Princeton University Library + * Simeon Warner, Cornell University + * + * Copyright © 2012-2023 Editors and contributors. Published by the IIIF Consortium under the CC-BY license. + */ + +import { DescriptiveProperties, LinkingProperties, StructuralProperties, TechnicalProperties } from "../types"; + +type DocDefinition = { + link: string; + summary: string; +}; + +const root = `https://iiif.io/api/presentation/3.0/`; + +const definedTypes: Record = { + Collection: { + link: `${root}#overview-collection`, + summary: `An ordered list of Manifests, and/or further Collections. Collections allow Manifests and child Collections to be grouped in a hierarchical structure for presentation, which can be for generating navigation, showing dynamic results from a search, or providing fixed sets of related resources for any other purpose.`, + }, + Manifest: { + link: `${root}#overview-manifest`, + summary: `A description of the structure and properties of the compound object. It carries information needed for the client to present the content to the user, such as a title and other descriptive information about the object or the intellectual work that it conveys. Each Manifest usually describes how to present a single compound object such as a book, a statue or a music album.`, + }, + Canvas: { + link: `${root}#overview-canvas`, + summary: `A virtual container that represents a particular view of the object and has content resources associated with it or with parts of it. The Canvas provides a frame of reference for the layout of the content, both spatially and temporally. The concept of a Canvas is borrowed from standards like PDF and HTML, or applications like Photoshop and PowerPoint, where an initially blank display surface has images, video, text and other content “painted” on to it by Annotations, collected in Annotation Pages.`, + }, + Range: { + link: `${root}#overview-range`, + summary: `An ordered list of Canvases, and/or further Ranges. Ranges allow Canvases, or parts thereof, to be grouped together in some way. This could be for content-based reasons, such as might be described in a table of contents or the set of scenes in a play. Equally, physical features might be important such as page gatherings in an early book, or when recorded music is split across different physical carriers such as two CDs.`, + }, + AnnotationPage: { + link: `${root}#overview-annotationpage`, + summary: `An ordered list of Annotations that is typically associated with a Canvas but may be referenced from other types of resource as well. Annotation Pages collect and order lists of Annotations, which in turn provide commentary about a resource or content that is part of a Canvas.`, + }, + Annotation: { + link: `${root}#overview-annotation`, + summary: `Annotations associate content resources with Canvases. The same mechanism is used for the visible and/or audible resources as is used for transcriptions, commentary, tags and other content. This provides a single, unified method for aligning information, and provides a standards-based framework for distinguishing parts of resources and parts of Canvases. As Annotations can be added later, it promotes a distributed system in which publishers can align their content with the descriptions created by others. Annotation related functionality may also rely on further classes such as SpecificResource, Choice or Selectors.`, + }, + ContentResource: { + link: `${root}#overview-content`, + summary: `Web resources such as images, audio, video, or text which are associated with a Canvas via an Annotation, or provide a representation of any resource.`, + }, + AnnotationCollection: { + link: `${root}#overview-annotationcollection`, + summary: `An ordered list of Annotation Pages. Annotation Collections allow higher level groupings of Annotations to be recorded. For example, all of the English translation Annotations of a medieval French document could be kept separate from the transcription or an edition in modern French, or the director’s commentary on a film can be separated from the script.`, + }, +}; + +const descriptive: Record = { + label: { + link: `${root}#label`, + summary: `A human readable label, name or title. The label property is intended to be displayed as a short, textual surrogate for the resource if a human needs to make a distinction between it and similar resources, for example between objects, pages, or options for a choice of images to display. The label property can be fully internationalized, and each language can have multiple values.`, + }, + metadata: { + link: `${root}#metadata`, + summary: `An ordered list of descriptions to be displayed to the user when they interact with the resource, given as pairs of human readable label and value entries. The content of these entries is intended for presentation only; descriptive semantics should not be inferred. An entry might be used to convey information about the creation of the object, a physical description, ownership information, or other purposes.`, + }, + summary: { + link: `${root}#summary`, + summary: `A short textual summary intended to be conveyed to the user when the metadata entries for the resource are not being displayed. This could be used as a brief description for item level search results, for small-screen environments, or as an alternative user interface when the metadata property is not currently being rendered. The summary property follows the same pattern as the label property described above.`, + }, + requiredStatement: { + link: `${root}#requiredstatement`, + summary: `Text that must be displayed when the resource is displayed or used. For example, the requiredStatement property could be used to present copyright or ownership statements, an acknowledgement of the owning and/or publishing institution, or any other text that the publishing organization deems critical to display to the user. Given the wide variation of potential client user interfaces, it will not always be possible to display this statement to the user in the client’s initial state. If initially hidden, clients must make the method of revealing it as obvious as possible.`, + }, + rights: { + link: `${root}#rights`, + summary: `A string that identifies a license or rights statement that applies to the content of the resource, such as the JSON of a Manifest or the pixels of an image. The value must be drawn from the set of Creative Commons license URIs, the RightsStatements.org rights statement URIs, or those added via the extension mechanism. The inclusion of this property is informative, and for example could be used to display an icon representing the rights assertions.`, + }, + provider: { + link: `${root}#provider`, + summary: `An organization or person that contributed to providing the content of the resource. Clients can then display this information to the user to acknowledge the provider's contributions. This differs from the requiredStatement property, in that the data is structured, allowing the client to do more than just present text but instead have richer information about the people and organizations to use in different interfaces.`, + }, + thumbnail: { + link: `${root}#thumbnail`, + summary: `A content resource, such as a small image or short audio clip, that represents the resource that has the thumbnail property. A resource may have multiple thumbnail resources that have the same or different type and format.`, + }, + navDate: { + link: `${root}#navdate`, + summary: `A date that clients may use for navigation purposes when presenting the resource to the user in a date-based user interface, such as a calendar or timeline. More descriptive date ranges, intended for display directly to the user, should be included in the metadata property for human consumption. If the resource contains Canvases that have the duration property, the datetime given corresponds to the navigation datetime of the start of the resource. For example, a Range that includes a Canvas that represents a set of video content recording a historical event, the navDate is the datetime of the first moment of the recorded event.`, + }, + placeholderCanvas: { + link: `${root}#placeholdercanvas`, + summary: `A single Canvas that provides additional content for use before the main content of the resource that has the placeholderCanvas property is rendered, or as an advertisement or stand-in for that content. Examples include images, text and sound standing in for video content before the user initiates playback; or a film poster to attract user attention. The content provided by placeholderCanvas differs from a thumbnail: a client might use thumbnail to summarize and navigate multiple resources, then show content from placeholderCanvas as part of the initial presentation of a single resource. A placeholder Canvas is likely to have different dimensions to those of the Canvas(es) of the resource that has the placeholderCanvas property.`, + }, + accompanyingCanvas: { + link: `${root}#accompanyingcanvas`, + summary: `A single Canvas that provides additional content for use while rendering the resource that has the accompanyingCanvas property. Examples include an image to show while a duration-only Canvas is playing audio; or background audio to play while a user is navigating an image-only Manifest.`, + }, + language: { + link: `${root}#language`, + summary: `The language or languages used in the content of this external resource. This property is already available from the Web Annotation model for content resources that are the body or target of an Annotation, however it may also be used for resources referenced from homepage, rendering, and partOf.`, + }, +}; + +const technical: Record = { + id: { + link: `${root}#id`, + summary: `The URI that identifies the resource. If the resource is only available embedded within another resource, such as a Range within a Manifest, then the URI may be the URI of the embedding resource with a unique fragment on the end. This is not true for Canvases, which must have their own URI without a fragment.`, + }, + type: { + link: `${root}#type`, + summary: `The type or class of the resource. For classes defined for this specification`, + }, + format: { + link: `${root}#format`, + summary: `The specific media type (often called a MIME type) for a content resource, for example image/jpeg. This is important for distinguishing different formats of the same overall type of resource, such as distinguishing text in XML from plain text.`, + }, + profile: { + link: `${root}#profile`, + summary: `A schema or named set of functionality available from the resource. The profile can further clarify the type and/or format of an external resource or service, allowing clients to customize their handling of the resource that has the profile property.`, + }, + height: { + link: `${root}#height`, + summary: `The height of the Canvas or external content resource. For content resources, the value is in pixels. For Canvases, the value does not have a unit. In combination with the width, it conveys an aspect ratio for the space in which content resources are located.`, + }, + width: { + link: `${root}#width`, + summary: `The width of the Canvas or external content resource. For content resources, the value is in pixels. For Canvases, the value does not have a unit. In combination with the height, it conveys an aspect ratio for the space in which content resources are located.`, + }, + duration: { + link: `${root}#duration`, + summary: `The duration of the Canvas or external content resource, given in seconds.`, + }, + viewingDirection: { + link: `${root}#viewingdirection`, + summary: `The direction in which a set of Canvases should be displayed to the user. This specification defines four direction values in the table below. Others may be defined externally as an extension.`, + }, + behavior: { + link: `${root}#behavior`, + summary: `A set of user experience features that the publisher of the content would prefer the client to use when presenting the resource. This specification defines the values in the table below. Others may be defined externally as an extension.`, + }, + timeMode: { + link: `${root}#timemode`, + summary: `A mode associated with an Annotation that is to be applied to the rendering of any time-based media, or otherwise could be considered to have a duration, used as a body resource of that Annotation. Note that the association of timeMode with the Annotation means that different resources in the body cannot have different values. This specification defines the values specified in the table below. Others may be defined externally as an extension.`, + }, + motivation: { + link: `${root}#values-for-motivation`, + summary: `This specification defines two values for the Web Annotation property of motivation, or purpose when used on a Specific Resource or Textual Body. Resources associated with a Canvas by an Annotation that has the motivation value "painting" must be presented to the user as the representation of the Canvas. Resources associated with a Canvas by an Annotation that has the motivation value supplementing may be presented to the user as part of the representation of the Canvas, or may be presented in a different part of the user interface.`, + }, +}; + +const linking: Record = { + // External + homepage: { + link: `${root}#homepage`, + summary: `A web page that is about the object represented by the resource that has the homepage property. The web page is usually published by the organization responsible for the object, and might be generated by a content management system or other cataloging system. The resource must be able to be displayed directly to the user. Resources that are related, but not home pages, must instead be added into the metadata property, with an appropriate label or value to describe the relationship.`, + }, + logo: { + link: `${root}#logo`, + summary: `A small image resource that represents the Agent resource it is associated with. The logo must be clearly rendered when the resource is displayed or used, without cropping, rotating or otherwise distorting the image. It is recommended that a IIIF Image API service be available for this image for other manipulations such as resizing.`, + }, + rendering: { + link: `${root}#rendering`, + summary: `A resource that is an alternative, non-IIIF representation of the resource that has the rendering property. Such representations typically cannot be painted onto a single Canvas, as they either include too many views, have incompatible dimensions, or are compound resources requiring additional rendering functionality. The rendering resource must be able to be displayed directly to a human user, although the presentation may be outside of the IIIF client. The resource must not have a splash page or other interstitial resource that mediates access to it. If access control is required, then the IIIF Authentication API is recommended. Examples include a rendering of a book as a PDF or EPUB, a slide deck with images of a building, or a 3D model of a statue.`, + }, + service: { + link: `${root}#service`, + summary: `A service that the client might interact with directly and gain additional information or functionality for using the resource that has the service property, such as from an Image to the base URI of an associated IIIF Image API service. The service resource should have additional information associated with it in order to allow the client to determine how to make appropriate use of it. Please see the Service Registry document for the details of currently known service types.`, + }, + services: { + link: `${root}#services`, + summary: `A list of one or more service definitions on the top-most resource of the document, that are typically shared by more than one subsequent resource. This allows for these shared services to be collected together in a single place, rather than either having their information duplicated potentially many times throughout the document, or requiring a consuming client to traverse the entire document structure to find the information. The resource that the service applies to must still have the service property, as described above, where the service resources have at least the id and type or @id and @type properties. This allows the client to know that the service applies to that resource. Usage of the services property is at the discretion of the publishing system.`, + }, + seeAlso: { + link: `${root}#seealso`, + summary: `A machine-readable resource such as an XML or RDF description that is related to the current resource that has the seeAlso property. Properties of the resource should be given to help the client select between multiple descriptions (if provided), and to make appropriate use of the document. If the relationship between the resource and the document needs to be more specific, then the document should include that relationship rather than the IIIF resource. Other IIIF resources are also valid targets for seeAlso, for example to link to a Manifest that describes a related object. The URI of the document must identify a single representation of the data in a particular format. For example, if the same data exists in JSON and XML, then separate resources should be added for each representation, with distinct id and format properties.`, + }, + // Internal + partOf: { + link: `${root}#partof`, + summary: `A containing resource that includes the resource that has the partOf property. When a client encounters the partOf property, it might retrieve the referenced containing resource, if it is not embedded in the current representation, in order to contribute to the processing of the contained resource. For example, the partOf property on a Canvas can be used to reference an external Manifest in order to enable the discovery of further relevant information. Similarly, a Manifest can reference a containing Collection using partOf to aid in navigation.`, + }, + start: { + link: `${root}#start`, + summary: `A Canvas, or part of a Canvas, which the client should show on initialization for the resource that has the start property. The reference to part of a Canvas is handled in the same way that Ranges reference parts of Canvases. This property allows the client to begin with the first Canvas that contains interesting content rather than requiring the user to manually navigate to find it.`, + }, + supplementary: { + link: `${root}#supplementary`, + summary: `A link from this Range to an Annotation Collection that includes the supplementing Annotations of content resources for the Range. Clients might use this to present additional content to the user from a different Canvas when interacting with the Range, or to jump to the next part of the Range within the same Canvas. For example, the Range might represent a newspaper article that spans non-sequential pages, and then uses the supplementary property to reference an Annotation Collection that consists of the Annotations that record the text, split into Annotation Pages per newspaper page. Alternatively, the Range might represent the parts of a manuscript that have been transcribed or translated, when there are other parts that have yet to be worked on. The Annotation Collection would be the Annotations that transcribe or translate, respectively.`, + }, +}; + +const structural: Record, DocDefinition> = { + items: { + link: `${root}#items`, + summary: `Much of the functionality of the IIIF Presentation API is simply recording the order in which child resources occur within a parent resource, such as Collections or Manifests within a parent Collection, or Canvases within a Manifest. All of these situations are covered with a single property, items.`, + }, + structures: { + link: `${root}#structures`, + summary: `The structure of an object represented as a Manifest can be described using a hierarchy of Ranges. Ranges can be used to describe the “table of contents” of the object or other structures that the user can interact with beyond the order given by the items property of the Manifest. The hierarchy is built by nesting the child Range resources in the items array of the higher level Range. The top level Ranges of these hierarchies are given in the structures property.`, + }, + annotations: { + link: `${root}#annotations`, + summary: `An ordered list of Annotation Pages that contain commentary or other Annotations about this resource, separate from the Annotations that are used to paint content on to a Canvas. The motivation of the Annotations must not be painting, and the target of the Annotations must include this resource or part of it.`, + }, +}; + +export const documentation = { + attribution: `Copyright © 2012-2023 Editors and contributors. Published by the IIIF Consortium under the CC-BY license, see disclaimer.`, + disclaimer: `https://iiif.io/api/annex/notes/disclaimer/`, + license: "https://creativecommons.org/licenses/by/4.0/", + version: "3.0", + definedTypes, + descriptive, + structural, + technical, + linking, + root, +}; diff --git a/src/presentation-3/meta/extensions.ts b/src/presentation-3/meta/extensions.ts new file mode 100644 index 0000000..40aa93a --- /dev/null +++ b/src/presentation-3/meta/extensions.ts @@ -0,0 +1,74 @@ +import type { NavPlaceExtension, TextGranularityExtension } from "../types"; + +export type ExtensionProperties = TextGranularityExtension & NavPlaceExtension; + +const required = { + Collection: [], + Manifest: [], + Canvas: [], + Annotation: [], + AnnotationPage: [], + Range: [], + AnnotationCollection: [], + ContentResource: [], + Agent: [], +} as const satisfies ExtensionsMap; + +const recommended = { + Collection: [], + Manifest: [], + Canvas: [], + Annotation: [], + AnnotationPage: [], + Range: [], + AnnotationCollection: [], + ContentResource: [], + Agent: [], +} as const satisfies ExtensionsMap; + +const optional = { + Collection: ["navPlace"], + Manifest: ["navPlace"], + Canvas: ["navPlace"], + Annotation: ["textGranularity"], + AnnotationPage: [], + Range: ["navPlace"], + AnnotationCollection: [], + ContentResource: [], + Agent: [], +} as const satisfies ExtensionsMap; + +const notAllowed = { + Collection: ["textGranularity"], + Manifest: ["textGranularity"], + Canvas: ["textGranularity"], + Annotation: ["navPlace"], + AnnotationPage: ["textGranularity", "navPlace"], + Range: ["textGranularity"], + AnnotationCollection: ["textGranularity", "navPlace"], + ContentResource: ["textGranularity", "navPlace"], + Agent: ["textGranularity", "navPlace"], +} as const satisfies ExtensionsMap; + +type ExtensionsMap = Record< + | "Collection" + | "Manifest" + | "Canvas" + | "Annotation" + | "AnnotationPage" + | "Range" + | "AnnotationCollection" + | "ContentResource" + | "Agent", + readonly (keyof ExtensionProperties)[] +>; + +const all: readonly (keyof ExtensionProperties)[] = ["navPlace", "textGranularity"]; + +export const extensionProperties = { + all, + required, + recommended, + optional, + notAllowed, +} as const; diff --git a/src/presentation-3/meta/index.ts b/src/presentation-3/meta/index.ts new file mode 100644 index 0000000..9f33f13 --- /dev/null +++ b/src/presentation-3/meta/index.ts @@ -0,0 +1,10 @@ +export * from "./behavior"; +export * from "./descriptive"; +export * from "./documentation"; +export * from "./extensions"; +export * from "./linking"; +export * from "./references"; +export * from "./resources"; +export * from "./rights"; +export * from "./structural"; +export * from "./technical"; diff --git a/src/presentation-3/meta/linking.ts b/src/presentation-3/meta/linking.ts new file mode 100644 index 0000000..fcb220a --- /dev/null +++ b/src/presentation-3/meta/linking.ts @@ -0,0 +1,82 @@ +import type { LinkingProperties } from "../types"; + +const required = { + Collection: [], + Manifest: [], + Canvas: [], + Annotation: [], + AnnotationPage: [], + Range: [], + AnnotationCollection: [], + ContentResource: [], + Agent: [], +} as const satisfies LinkingMap; + +const recommended = { + Collection: [], + Manifest: [], + Canvas: [], + Annotation: [], + AnnotationPage: [], + Range: [], + AnnotationCollection: [], + ContentResource: [], + Agent: ["homepage", "logo"], +} as const satisfies LinkingMap; + +const optional = { + Collection: ["seeAlso", "service", "homepage", "rendering", "partOf", "services"], + Manifest: ["seeAlso", "service", "homepage", "rendering", "partOf", "start", "services"], + Canvas: ["seeAlso", "service", "homepage", "rendering", "partOf"], + Annotation: ["seeAlso", "service", "homepage", "rendering", "partOf"], + AnnotationPage: ["seeAlso", "service", "homepage", "rendering", "partOf"], + Range: ["seeAlso", "service", "homepage", "rendering", "partOf", "start", "supplementary"], + AnnotationCollection: ["seeAlso", "service", "homepage", "rendering", "partOf"], + ContentResource: ["seeAlso", "service", "homepage", "rendering", "partOf"], + Agent: ["seeAlso"], +} as const satisfies LinkingMap; + +const notAllowed = { + Collection: ["supplementary", "logo"], + Manifest: ["supplementary", "logo"], + Canvas: ["start", "supplementary", "services", "logo"], + Annotation: ["start", "supplementary", "services", "logo"], + AnnotationPage: ["start", "supplementary", "services", "logo"], + Range: ["services", "logo"], + AnnotationCollection: ["start", "supplementary", "services", "logo"], + ContentResource: ["start", "supplementary", "services", "logo"], + Agent: ["service", "homepage", "rendering", "partOf", "services", "start", "supplementary"], +} as const satisfies LinkingMap; + +type LinkingMap = Record< + | "Collection" + | "Manifest" + | "Canvas" + | "Annotation" + | "AnnotationPage" + | "Range" + | "AnnotationCollection" + | "ContentResource" + | "Agent", + readonly (keyof LinkingProperties)[] +>; + +const all: readonly (keyof LinkingProperties)[] = [ + "seeAlso", + "service", + "services", + "rendering", + "partOf", + "start", + "supplementary", + "homepage", + "logo", +] as const; + +export const linkingProperties = { + all, + required, + recommended, + optional, + notAllowed, +} as const; diff --git a/src/presentation-3/meta/references.ts b/src/presentation-3/meta/references.ts new file mode 100644 index 0000000..fc65e42 --- /dev/null +++ b/src/presentation-3/meta/references.ts @@ -0,0 +1,56 @@ +const externalProperties = [ + "thumbnail", + "seeAlso", + "rendering", + "partOf", + "supplementary", + "homepage", + "logo", + "body", + "annotations", +] as const; + +const inlineProperties = ["service", "services"] as const; + +const internalProperties = [ + "target", + "provider", + "placeholderCanvas", + "accompanyingCanvas", + "partOf", + "start", + "items", + "structures", + "annotations", +] as const; + +const all = [ + "target", + "thumbnail", + "provider", + "placeholderCanvas", + "accompanyingCanvas", + "seeAlso", + "service", + "services", + "rendering", + "partOf", + "start", + "body", + "supplementary", + "homepage", + "logo", + "items", + "structures", + "annotations", +] as const; + +const single = ["start", "target"] as const; + +export const references = { + all, + single, + inlineProperties, + externalProperties, + internalProperties, +}; diff --git a/src/presentation-3/meta/resources.ts b/src/presentation-3/meta/resources.ts new file mode 100644 index 0000000..c21782a --- /dev/null +++ b/src/presentation-3/meta/resources.ts @@ -0,0 +1,82 @@ +import { descriptiveProperties } from "./descriptive"; +import { extensionProperties } from "./extensions"; +import { linkingProperties } from "./linking"; +import { structuralProperties } from "./structural"; +import { technicalProperties } from "./technical"; + +const all = [ + "Collection", + "Manifest", + "Canvas", + "Annotation", + "AnnotationPage", + "Range", + "AnnotationCollection", + "ContentResource", + "Agent", +] as const; + +export type AllResourceTypes = (typeof all)[number]; + +function getSupported(type: Type) { + const required = [ + ...(technicalProperties.required[type] || []), + ...(descriptiveProperties.required[type] || []), + ...(linkingProperties.required[type] || []), + ...(structuralProperties.required[type] || []), + ...(extensionProperties.required[type] || []), + ]; + const recommended = [ + ...(technicalProperties.recommended[type] || []), + ...(descriptiveProperties.recommended[type] || []), + ...(linkingProperties.recommended[type] || []), + ...(structuralProperties.recommended[type] || []), + ...(extensionProperties.recommended[type] || []), + ]; + const notAllowed = [ + ...(technicalProperties.notAllowed[type] || []), + ...(descriptiveProperties.notAllowed[type] || []), + ...(linkingProperties.notAllowed[type] || []), + ...(structuralProperties.notAllowed[type] || []), + ...(extensionProperties.notAllowed[type] || []), + ]; + const optional = [ + ...(technicalProperties.optional[type] || []), + ...(descriptiveProperties.optional[type] || []), + ...(linkingProperties.optional[type] || []), + ...(structuralProperties.optional[type] || []), + ...(extensionProperties.optional[type] || []), + ]; + + const allowed = [...required, ...recommended, ...optional]; + + const all = [...allowed, ...notAllowed]; + + return { all, allowed, required, recommended, notAllowed, optional }; +} + +const Collection = getSupported("Collection"); +const Manifest = getSupported("Manifest"); +const Canvas = getSupported("Canvas"); +const Annotation = getSupported("Annotation"); +const AnnotationPage = getSupported("AnnotationPage"); +const Range = getSupported("Range"); +const AnnotationCollection = getSupported("AnnotationCollection"); +const ContentResource = getSupported("ContentResource"); +const Agent = getSupported("Agent"); + +export const resources = { + all, + getSupported, + supported: { + Collection, + Manifest, + Canvas, + Annotation, + AnnotationPage, + Range, + AnnotationCollection, + ContentResource, + Agent, + }, +}; diff --git a/src/presentation-3/meta/rights.ts b/src/presentation-3/meta/rights.ts new file mode 100644 index 0000000..2025ba6 --- /dev/null +++ b/src/presentation-3/meta/rights.ts @@ -0,0 +1,92 @@ +type CCDefinition = { + label: string; + shortLabel: string; + description: string; + icon: string; + value: string; + url: string; + legal: string; +}; + +const CC0 = "http://creativecommons.org/publicdomain/zero/1.0/"; +const CC_BY = "http://creativecommons.org/licenses/by/4.0/"; +const CC_BY_SA = "http://creativecommons.org/licenses/by-sa/4.0/"; +const CC_BY_ND = "http://creativecommons.org/licenses/by-nd/4.0/"; +const CC_BY_NC = "http://creativecommons.org/licenses/by-nc/4.0/"; +const CC_BY_NC_SA = "http://creativecommons.org/licenses/by-nc-sa/4.0/"; +const CC_BY_NC_ND = "http://creativecommons.org/licenses/by-nc-nd/4.0/"; + +export const allRights = [CC0, CC_BY, CC_BY_SA, CC_BY_ND, CC_BY_NC, CC_BY_NC_SA, CC_BY_NC_ND] as const; + +export const creativeCommons: CCDefinition[] = [ + { + label: "Public Domain", + shortLabel: "CC0", + description: + "The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law.", + icon: "https://licensebuttons.net/p/zero/1.0/88x31.png", + value: CC0, + url: "https://creativecommons.org/publicdomain/zero/1.0/", + legal: "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + }, + { + label: "Attribution", + shortLabel: "CC BY", + description: + "This license lets others distribute, remix, adapt, and build upon your work, even commercially, as long as they credit you for the original creation. This is the most accommodating of licenses offered. Recommended for maximum dissemination and use of licensed materials.", + icon: "https://licensebuttons.net/l/by/3.0/88x31.png", + value: CC_BY, + url: "https://creativecommons.org/licenses/by/4.0/", + legal: "http://creativecommons.org/licenses/by/4.0/legalcode", + }, + { + label: "Attribution-ShareAlike", + shortLabel: "CC BY-SA", + description: + "This license lets others remix, adapt, and build upon your work even for commercial purposes, as long as they credit you and license their new creations under the identical terms. This license is often compared to “copyleft” free and open source software licenses. All new works based on yours will carry the same license, so any derivatives will also allow commercial use. This is the license used by Wikipedia, and is recommended for materials that would benefit from incorporating content from Wikipedia and similarly licensed projects.", + icon: "https://licensebuttons.net/l/by-sa/3.0/88x31.png", + value: CC_BY_SA, + url: "https://creativecommons.org/licenses/by-sa/4.0/", + legal: "http://creativecommons.org/licenses/by-sa/4.0/legalcode", + }, + { + label: "Attribution-NoDerivs", + shortLabel: "CC BY-ND", + description: + "This license lets others reuse the work for any purpose, including commercially; however, it cannot be shared with others in adapted form, and credit must be provided to you.", + icon: "https://licensebuttons.net/l/by-nd/3.0/88x31.png", + value: CC_BY_ND, + url: "https://creativecommons.org/licenses/by-nd/4.0/", + legal: "http://creativecommons.org/licenses/by-nd/4.0/legalcode", + }, + { + label: "Attribution-NonCommercial", + shortLabel: "CC BY-NC", + description: + "This license lets others remix, adapt, and build upon your work non-commercially, and although their new works must also acknowledge you and be non-commercial, they don’t have to license their derivative works on the same terms.", + icon: "https://licensebuttons.net/l/by-nc/3.0/88x31.png", + value: CC_BY_NC, + url: "https://creativecommons.org/licenses/by-nc/4.0/", + legal: "http://creativecommons.org/licenses/by-nc/4.0/legalcode", + }, + { + label: "Attribution-NonCommercial-ShareAlike", + shortLabel: "CC BY-NC-SA", + description: + "This license lets others remix, adapt, and build upon your work non-commercially, as long as they credit you and license their new creations under the identical terms.", + icon: "https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png", + value: CC_BY_NC_SA, + url: "https://creativecommons.org/licenses/by-nc-sa/4.0/", + legal: "http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", + }, + { + label: "Attribution-NonCommercial-NoDerivs", + shortLabel: "CC BY-NC-ND", + description: + "This license is the most restrictive of our six main licenses, only allowing others to download your works and share them with others as long as they credit you, but they can’t change them in any way or use them commercially.", + icon: "https://licensebuttons.net/l/by-nc-nd/3.0/88x31.png", + value: CC_BY_NC_ND, + url: "https://creativecommons.org/licenses/by-nc-nd/4.0/", + legal: "http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode", + }, +]; diff --git a/src/presentation-3/meta/structural.ts b/src/presentation-3/meta/structural.ts new file mode 100644 index 0000000..c48e6b2 --- /dev/null +++ b/src/presentation-3/meta/structural.ts @@ -0,0 +1,79 @@ +import type { StructuralProperties } from "../types"; + +const required = { + Collection: ["items"], + Manifest: ["items"], + Canvas: [], + Annotation: ["target"], + AnnotationPage: [], + Range: [], + AnnotationCollection: [], + ContentResource: [], + Agent: [], +} as const satisfies StructuralMap; + +const recommended = { + Collection: [], + Manifest: [], + Canvas: ["items"], + Annotation: ["body"], + AnnotationPage: ["items"], + Range: [], + AnnotationCollection: [], + ContentResource: [], + Agent: [], +} as const satisfies StructuralMap; + +const optional = { + Collection: ["annotations"], + Manifest: ["structures", "annotations"], + Canvas: ["annotations"], + Annotation: [], + AnnotationPage: [], + Range: ["annotations"], + AnnotationCollection: [], + ContentResource: ["annotations"], + Agent: [], +} as const satisfies StructuralMap; + +const notAllowed = { + Collection: ["structures", "target", "body"], + Manifest: ["target", "body"], + Canvas: ["structures", "target", "body"], + Annotation: ["items", "structures", "annotations"], + AnnotationPage: ["structures", "annotations", "target", "body"], + Range: ["structures", "target", "body"], + AnnotationCollection: [ + // Leaving this out, as it's technically valid - just not withing a Presentation 3 context. + // "items", + "structures", + "annotations", + "target", + "body", + ], + ContentResource: ["items", "structures", "target", "body"], + Agent: ["items", "structures", "annotations", "target", "body"], +} as const satisfies StructuralMap; + +type StructuralMap = Record< + | "Collection" + | "Manifest" + | "Canvas" + | "Annotation" + | "AnnotationPage" + | "Range" + | "AnnotationCollection" + | "ContentResource" + | "Agent", + readonly (keyof StructuralProperties | "body" | "target")[] +>; + +const all = ["annotations", "items", "structures"] as const; + +export const structuralProperties = { + all, + required, + recommended, + optional, + notAllowed, +} as const; diff --git a/src/presentation-3/meta/technical.ts b/src/presentation-3/meta/technical.ts new file mode 100644 index 0000000..db82755 --- /dev/null +++ b/src/presentation-3/meta/technical.ts @@ -0,0 +1,114 @@ +import type { TechnicalProperties } from "../types"; + +const required = { + Collection: ["id", "type"], + Manifest: ["id", "type"], + Canvas: ["id", "type"], + Annotation: ["id", "type"], + AnnotationPage: ["id", "type"], + Range: ["id", "type"], + AnnotationCollection: ["id", "type"], + ContentResource: ["id", "type"], + Agent: ["id", "type"], +} as const satisfies TechnicalMap; + +const recommended = { + Collection: [], + Manifest: [], + Canvas: [], + Annotation: [], + AnnotationPage: [], + Range: [], + AnnotationCollection: [], + ContentResource: [], + Agent: [], +} as const satisfies TechnicalMap; + +const optional = { + Collection: ["viewingDirection", "behavior"], + Manifest: ["viewingDirection", "behavior"], + Canvas: ["height", "width", "duration", "behavior"], + Annotation: ["behavior", "timeMode"], + AnnotationPage: ["behavior"], + Range: ["viewingDirection", "behavior"], + AnnotationCollection: ["behavior"], + ContentResource: ["format", "height", "width", "duration", "behavior"], + Agent: [], +} as const satisfies TechnicalMap; + +const annotationOnly = ["motivation"] as const; + +const notAllowed = { + Collection: ["format", "profile", "height", "width", "duration", "timeMode", ...annotationOnly], + Manifest: ["format", "profile", "height", "width", "duration", "timeMode", ...annotationOnly], + Canvas: ["format", "profile", "viewingDirection", "timeMode", ...annotationOnly], + Annotation: ["format", "profile", "height", "width", "duration", "viewingDirection"], + AnnotationPage: [ + "format", + "profile", + "height", + "width", + "duration", + "viewingDirection", + "timeMode", + ...annotationOnly, + ], + Range: ["format", "profile", "height", "width", "duration", "timeMode", ...annotationOnly], + AnnotationCollection: [ + "format", + "profile", + "height", + "width", + "duration", + "viewingDirection", + "timeMode", + ...annotationOnly, + ], + ContentResource: ["viewingDirection", "timeMode", ...annotationOnly], + Agent: [ + "viewingDirection", + "format", + "profile", + "height", + "width", + "duration", + "timeMode", + "behavior", + ...annotationOnly, + ], +} as const satisfies TechnicalMap; + +type TechnicalMap = Record< + | "Collection" + | "Manifest" + | "Canvas" + | "Annotation" + | "AnnotationPage" + | "Range" + | "AnnotationCollection" + | "ContentResource" + | "Agent", + readonly (keyof TechnicalProperties)[] +>; + +const all = [ + "id", + "type", + "format", + "profile", + "height", + "width", + "duration", + "viewingDirection", + "behavior", + "timeMode", + "motivation", +] as const; + +export const technicalProperties = { + all, + required, + recommended, + optional, + notAllowed, +} as const; diff --git a/src/presentation-3/normalize.ts b/src/presentation-3/normalize.ts index 5c5df69..6d12eb0 100644 --- a/src/presentation-3/normalize.ts +++ b/src/presentation-3/normalize.ts @@ -11,7 +11,7 @@ import type { Selector, Service, SpecificResource, -} from '@iiif/presentation-3'; +} from "./types"; import type { AnnotationPageNormalized, CanvasNormalized, @@ -19,10 +19,10 @@ import type { ManifestNormalized, RangeNormalized, ResourceProviderNormalized, -} from '@iiif/presentation-3-normalized'; -import { convertPresentation2 } from '../presentation-2'; -import { expandTargetToSpecificResource } from '../shared/expand-target'; -import { isSpecificResource } from '../shared/is-specific-resource'; +} from "../presentation-3-normalized/types"; +import { convertPresentation2 } from "../presentation-2"; +import { expandTargetToSpecificResource } from "../shared/expand-target"; +import { isSpecificResource } from "../shared/is-specific-resource"; import { emptyAgent, emptyAnnotationPage, @@ -31,11 +31,11 @@ import { emptyManifest, emptyRange, emptyService, -} from './empty-types'; -import type { CompatibleStore, NormalizedEntity } from './serialize'; -import { type TraversalContext, Traverse } from './traverse'; -import { EMPTY, HAS_PART, IS_EXTERNAL, PART_OF, WILDCARD } from './utilities'; -import { splitCanvasFragment } from '../shared/canvas-fragments'; +} from "./empty-types"; +import type { CompatibleStore, NormalizedEntity } from "./serialize"; +import { type TraversalContext, Traverse } from "./traverse"; +import { EMPTY, HAS_PART, IS_EXTERNAL, PART_OF, WILDCARD } from "./utilities"; +import { splitCanvasFragment } from "../shared/canvas-fragments"; export const defaultEntities = { Collection: {}, @@ -68,7 +68,7 @@ export function getDefaultEntities() { } function getResource(entityOrString: PolyEntity, type: string): Reference { - if (typeof entityOrString === 'string') { + if (typeof entityOrString === "string") { return { id: entityOrString, type }; } if (!entityOrString.id) { @@ -94,7 +94,7 @@ function mapToEntities(entities: Record }); return { id: resource.id, - type: type === 'ContentResource' ? type : resource.type, + type: type === "ContentResource" ? type : resource.type, } as T; } return resource as T; @@ -109,7 +109,7 @@ export function merge(existing: any, incoming: any, context?: { parent?: any; is } if (Array.isArray(existing)) { if (!Array.isArray(incoming)) { - throw new Error('Cannot merge array with non-array'); + throw new Error("Cannot merge array with non-array"); } // For arrays, we check if any of the incoming values are not already in the // existing values and add them if this is not the case. If the incoming @@ -117,11 +117,11 @@ export function merge(existing: any, incoming: any, context?: { parent?: any; is // merged with the existing value. const merged = [...existing]; for (const item of incoming) { - if (item['@id'] && !item.id) { - item.id = item['@id']; + if (item["@id"] && !item.id) { + item.id = item["@id"]; } - if (item['@type'] && !item.type) { - item.type = item['@type']; + if (item["@type"] && !item.type) { + item.type = item["@type"]; } if (item === null || item === undefined) { continue; @@ -129,7 +129,7 @@ export function merge(existing: any, incoming: any, context?: { parent?: any; is if (Array.isArray(item)) { // FIXME: How to handle this properly? merged.push(item); - } else if (typeof item === 'object' && item.id && item.type) { + } else if (typeof item === "object" && item.id && item.type) { const existingIdx = merged.findIndex((e) => e.id === item.id && e.type === item.type); if (existingIdx >= 0) { merged[existingIdx] = merge(merged[existingIdx], item); @@ -139,20 +139,20 @@ export function merge(existing: any, incoming: any, context?: { parent?: any; is } } return merged; - } else if (typeof existing === 'object') { - if (Array.isArray(incoming) || typeof incoming !== 'object') { - throw new Error('Cannot merge object with non-object'); + } else if (typeof existing === "object") { + if (Array.isArray(incoming) || typeof incoming !== "object") { + throw new Error("Cannot merge object with non-object"); } // For objects, we check the existing object for non-existing or "empty" // properties and use the value from the incoming object for them const merged = { ...existing }; const added: string[] = []; const unchanged: string[] = []; - const existingKeys = Object.keys(existing).filter((key) => key !== HAS_PART && key !== 'id' && key !== 'type'); + const existingKeys = Object.keys(existing).filter((key) => key !== HAS_PART && key !== "id" && key !== "type"); const previouslyChangedValues: any = {}; const incomingChangedValues: any = {}; for (const [key, val] of Object.entries(incoming)) { - if (key === HAS_PART || key === 'id' || key === 'type') { + if (key === HAS_PART || key === "id" || key === "type") { continue; } const currentVal = merged[key]; @@ -184,7 +184,7 @@ export function merge(existing: any, incoming: any, context?: { parent?: any; is } if (merged[HAS_PART] && merged[HAS_PART].length) { - const noExplicit = !(merged[HAS_PART] || []).find((r: any) => r['@explicit']); + const noExplicit = !(merged[HAS_PART] || []).find((r: any) => r["@explicit"]); const hasDiverged = added.length > 0 || unchanged.length !== existingKeys.length; // We already have one, it may conflict here. // 1. Fix the first part. @@ -193,7 +193,7 @@ export function merge(existing: any, incoming: any, context?: { parent?: any; is const first = { ...item }; const changedKeys = Object.keys(previouslyChangedValues); if (first) { - first['@explicit'] = true; + first["@explicit"] = true; for (const addedProperty of existingKeys) { if (addedProperty !== HAS_PART) { first[addedProperty] = WILDCARD; @@ -212,7 +212,7 @@ export function merge(existing: any, incoming: any, context?: { parent?: any; is if (hasDiverged) { // Add the framing. const changedKeys = Object.keys(incomingChangedValues); - part['@explicit'] = true; + part["@explicit"] = true; for (const addedProperty of added) { part[addedProperty] = WILDCARD; } @@ -244,15 +244,15 @@ export function mergeEntities( incoming: any, context?: { parent?: any; isTopLevel?: boolean } ): NormalizedEntity { - if (typeof existing === 'string') { + if (typeof existing === "string") { return existing; } if (incoming.id !== (existing as any).id || incoming.type !== (existing as any).type) { - if (incoming.type === 'ImageService3') { + if (incoming.type === "ImageService3") { return incoming; } - if ((existing as any).type === 'ImageService3') { + if ((existing as any).type === "ImageService3") { return existing; } @@ -269,10 +269,10 @@ function recordTypeInMapping(mapping: Record) { return (type: string, defaultStringType?: string) => { return (r: T): T => { const { id, type: foundType } = getResource(r, defaultStringType || type); - if (typeof id === 'undefined') { - throw new Error('Found invalid entity without an ID.'); + if (typeof id === "undefined") { + throw new Error("Found invalid entity without an ID."); } - if (type === 'ContentResource' || type === 'Service') { + if (type === "ContentResource" || type === "Service") { mapping[id] = type; } else { mapping[id] = foundType as any; @@ -284,12 +284,12 @@ function recordTypeInMapping(mapping: Record) { function normalizeService(_service: any): any { const service = Object.assign({}, _service); - if (service['@id']) { - service.id = service['@id']; + if (service["@id"]) { + service.id = service["@id"]; } - if (service['@type']) { - service.type = service['@type']; + if (service["@type"]) { + service.type = service["@type"]; } if (service.service) { @@ -297,8 +297,8 @@ function normalizeService(_service: any): any { service.service = Array.isArray(service.service) ? service.service : [service.service]; for (const innerService of service.service) { serviceReferences.push({ - id: innerService['@id'] || innerService.id, - type: innerService['@type'] || innerService.type, + id: innerService["@id"] || innerService.id, + type: innerService["@type"] || innerService.type, }); } service.service = serviceReferences; @@ -307,10 +307,10 @@ function normalizeService(_service: any): any { return Object.assign({}, emptyService, service); } -function recordServiceForLoading(store: CompatibleStore['entities']) { +function recordServiceForLoading(store: CompatibleStore["entities"]) { return (resource: Service) => { store.Service = store.Service ? store.Service : {}; - const id: string = (resource as any).id || (resource as any)['@id']; + const id: string = (resource as any).id || (resource as any)["@id"]; const normalizedResource = normalizeService(resource); // @todo add loading status for image services. @@ -347,14 +347,14 @@ function hash(object: any): string { const hexString = num.toString(16); if (hexString.length % 2) { - return '0' + hexString; + return "0" + hexString; } return hexString; } function addMissingIdToContentResource>(type: string) { return (resource: T | string): T => { - if (typeof resource === 'string') { + if (typeof resource === "string") { return { id: resource, type } as T; } if (!resource.id) { @@ -407,20 +407,20 @@ function toSpecificResource( target: string | Reference | SpecificResource | Partial, { typeHint, partOfTypeHint }: { typeHint?: string; partOfTypeHint?: string } = {} ): SpecificResource { - if (typeof target === 'string') { - target = { id: target, type: typeHint || 'unknown' }; + if (typeof target === "string") { + target = { id: target, type: typeHint || "unknown" }; } if (isSpecificResource(target)) { - if (typeof target.source === 'string') { - target.source = { id: target.source, type: typeHint || 'unknown' }; + if (typeof target.source === "string") { + target.source = { id: target.source, type: typeHint || "unknown" }; } - if (target.source.type === 'Canvas' && target.source.partOf && typeof target.source.partOf === 'string') { + if (target.source.type === "Canvas" && target.source.partOf && typeof target.source.partOf === "string") { target.source.partOf = [ { id: target.source.partOf, - type: partOfTypeHint || 'Manifest', // Most common is manifest. + type: partOfTypeHint || "Manifest", // Most common is manifest. }, ]; } @@ -434,14 +434,14 @@ function toSpecificResource( if (targetFragment) { if (targetFragment) { selector = { - type: 'FragmentSelector', + type: "FragmentSelector", value: targetFragment, }; } } return { - type: 'SpecificResource', + type: "SpecificResource", source: target, selector, }; @@ -451,7 +451,7 @@ function rangeItemToSpecificResource(range: Range): Range { const _range = Object.assign({}, range); if (range && range.items) { _range.items = range.items.map((rangeItem) => { - if (typeof rangeItem === 'string' || rangeItem.type === 'Canvas') { + if (typeof rangeItem === "string" || rangeItem.type === "Canvas") { return toSpecificResource(rangeItem); } return rangeItem; @@ -464,7 +464,7 @@ function startCanvasToSpecificResource(manifest: Manifest): Manifest { const _manifest = Object.assign({}, manifest); if (_manifest.start) { _manifest.start = toSpecificResource(_manifest.start, { - typeHint: 'Canvas', + typeHint: "Canvas", }) as any; return _manifest; } @@ -474,7 +474,7 @@ function startCanvasToSpecificResource(manifest: Manifest): Manifest { function annotationTargetToSpecificResource(annotation: Annotation): Annotation { const _annotation = Object.assign({}, annotation); if (_annotation.target) { - _annotation.target = expandTargetToSpecificResource(_annotation.target as any, { typeHint: 'Canvas' }) as any; + _annotation.target = expandTargetToSpecificResource(_annotation.target as any, { typeHint: "Canvas" }) as any; return _annotation; } return annotation; @@ -485,7 +485,7 @@ export function traverseSpecificResource(specificResource: SpecificResource): Sp } export function addFlagForExternalResource(resource: T): T { - if (typeof resource.items === 'undefined') { + if (typeof resource.items === "undefined") { (resource as any)[IS_EXTERNAL] = true; } return resource; @@ -502,55 +502,55 @@ export function normalize(unknownEntity: unknown) { collection: [ addFlagForExternalResource, ensureDefaultFields(emptyCollection), - addToMapping('Collection'), - addToEntities('Collection'), + addToMapping("Collection"), + addToEntities("Collection"), ], manifest: [ addFlagForExternalResource, ensureDefaultFields(emptyManifest), startCanvasToSpecificResource, - addToMapping('Manifest'), - addToEntities('Manifest'), + addToMapping("Manifest"), + addToEntities("Manifest"), ], canvas: [ ensureDefaultFields(emptyCanvas), - addToMapping('Canvas'), - addToEntities('Canvas'), + addToMapping("Canvas"), + addToEntities("Canvas"), ], annotationPage: [ addFlagForExternalResource, - addMissingIdToContentResource('AnnotationPage'), + addMissingIdToContentResource("AnnotationPage"), ensureDefaultFields(emptyAnnotationPage), - addToMapping('AnnotationPage'), - addToEntities('AnnotationPage'), + addToMapping("AnnotationPage"), + addToEntities("AnnotationPage"), ], annotation: [ // This won't be normalized before going into the state. // It will be normalized through selectors and pattern matching. - addMissingIdToContentResource('Annotation'), + addMissingIdToContentResource("Annotation"), ensureArrayOnAnnotation, annotationTargetToSpecificResource, - addToMapping('Annotation'), - addToEntities('Annotation'), + addToMapping("Annotation"), + addToEntities("Annotation"), ], contentResource: [ // This won't be normalized before going into the state. // It will be normalized through selectors and pattern matching. - addMissingIdToContentResource('ContentResource'), - addToMapping('ContentResource'), - addToEntities('ContentResource'), + addMissingIdToContentResource("ContentResource"), + addToMapping("ContentResource"), + addToEntities("ContentResource"), ], range: [ // This will add a LOT to the state, maybe this will be configurable down the line. ensureDefaultFields(emptyRange), rangeItemToSpecificResource, - addToMapping('Range', 'Canvas'), - addToEntities('Range', 'Canvas'), + addToMapping("Range", "Canvas"), + addToEntities("Range", "Canvas"), ], agent: [ ensureDefaultFields(emptyAgent), - addToMapping('Agent'), - addToEntities('Agent'), + addToMapping("Agent"), + addToEntities("Agent"), ], specificResource: [ // Special-case changes to this type of resource. diff --git a/src/presentation-3/serialize-presentation-2.ts b/src/presentation-3/serialize-presentation-2.ts index d6e7ab8..e55f30d 100644 --- a/src/presentation-3/serialize-presentation-2.ts +++ b/src/presentation-3/serialize-presentation-2.ts @@ -1,15 +1,15 @@ -import { SerializeConfig } from './serialize'; -import { +import { SerializeConfig } from "./serialize"; +import type { FragmentSelector, InternationalString, Reference, Selector, SpecificResource, TechnicalProperties, -} from '@iiif/presentation-3'; -import { DescriptiveNormalized, LinkingNormalized } from '@iiif/presentation-3-normalized'; -import * as Presentation2 from '@iiif/presentation-2'; -import { compressSpecificResource } from '../shared/compress-specific-resource'; +} from "./types"; +import type { DescriptiveNormalized, LinkingNormalized } from "../presentation-3-normalized/types"; +import type * as Presentation2 from "../presentation-2/types"; +import { compressSpecificResource } from "../shared/compress-specific-resource"; export function languageString2to3( value: InternationalString | null | undefined @@ -28,25 +28,25 @@ export function languageString2to3( if (languages.length === 1) { const language = languages[0]; if (!language) { - return ''; + return ""; } - const singleValue = (value[language] || []).join(''); + const singleValue = (value[language] || []).join(""); - if (language === '@none' || language === 'none' || language === 'en') { + if (language === "@none" || language === "none" || language === "en") { return singleValue; } return { - '@language': language, - '@value': singleValue, + "@language": language, + "@value": singleValue, }; } return languages.map((language) => { return { - '@language': language, - '@value': (value[language] || []).join(''), + "@language": language, + "@value": (value[language] || []).join(""), }; }); } @@ -56,11 +56,11 @@ function parseCanvasTarget(target: any): any { return target.map((t) => parseCanvasTarget(t)); } - if (typeof target === 'string') { + if (typeof target === "string") { return target; } - if (target.type && target.type === 'Canvas') { + if (target.type && target.type === "Canvas") { return target.id; } @@ -83,37 +83,37 @@ function convertService(service: any) { return undefined; } - if (typeof service === 'string') { + if (typeof service === "string") { return { - '@id': service, + "@id": service, }; } - if ('@id' in service) { + if ("@id" in service) { const newService = { ...service }; - delete newService['@type']; + delete newService["@type"]; return newService; } // @todo support auth. return { - '@context': 'http://iiif.io/api/image/2/context.json', - '@id': service.id, + "@context": "http://iiif.io/api/image/2/context.json", + "@id": service.id, profile: `http://iiif.io/api/image/2/profiles/${service.profile}.json`, }; } function technicalProperties(props: Partial, type?: string) { return [ - ['@id', props.id], - ['@type', type], - ['format', props.format], - ['height', props.height], - ['width', props.width], - ['viewingDirection', props.viewingDirection !== 'left-to-right' ? props.viewingDirection : undefined], + ["@id", props.id], + ["@type", type], + ["format", props.format], + ["height", props.height], + ["width", props.width], + ["viewingDirection", props.viewingDirection !== "left-to-right" ? props.viewingDirection : undefined], // Non-standard property. - ['license', (props as any).license ? (props as any).license : undefined], + ["license", (props as any).license ? (props as any).license : undefined], // @todo Viewing hint is merged with behavior // ['viewingHint', props.] ]; @@ -123,49 +123,49 @@ function* descriptiveProperties(prop: Partial): Generator const provider = prop.provider ? yield prop.provider[0] : undefined; return [ - ['label', languageString2to3(prop.label)], + ["label", languageString2to3(prop.label)], [ - 'metadata', + "metadata", prop.metadata && prop.metadata.length ? prop.metadata.map((item) => ({ - label: languageString2to3(item.label) || '', - value: languageString2to3(item.value) || '', + label: languageString2to3(item.label) || "", + value: languageString2to3(item.value) || "", })) : undefined, ], - ['description', languageString2to3(prop.summary)], - ['thumbnail', unNestArray(yield prop.thumbnail)], - ['navDate', prop.navDate], + ["description", languageString2to3(prop.summary)], + ["thumbnail", unNestArray(yield prop.thumbnail)], + ["navDate", prop.navDate], // @todo these needs consideration if the way provider is parsed changes. - ['logo', provider ? unNestArray(provider.logo) : undefined], - ['homepage', provider ? provider.homepage : undefined], - ['attribution', prop.requiredStatement ? languageString2to3(prop.requiredStatement.value) : undefined], + ["logo", provider ? unNestArray(provider.logo) : undefined], + ["homepage", provider ? provider.homepage : undefined], + ["attribution", prop.requiredStatement ? languageString2to3(prop.requiredStatement.value) : undefined], ]; } function* linkingProperties(prop: Partial) { const startProp = - prop.start && prop.start.type && (prop.start as any).type === 'SpecificResource' + prop.start && prop.start.type && (prop.start as any).type === "SpecificResource" ? compressSpecificResource(prop.start as any) : prop.start; return [ - ['seeAlso', unNestArray(yield prop.seeAlso)], + ["seeAlso", unNestArray(yield prop.seeAlso)], // @todo support more services (like auth) - ['service', unNestArray((prop.service || []).map(convertService))], - ['rendering', unNestArray(yield prop.rendering)], + ["service", unNestArray((prop.service || []).map(convertService))], + ["rendering", unNestArray(yield prop.rendering)], // @todo part of to within // ['within', unNestArray(yield prop.partOf)], // @todo this may not work completely. - ['startCanvas', startProp ? startProp.id : undefined], + ["startCanvas", startProp ? startProp.id : undefined], ]; } function isSpecificResource(resource: unknown): resource is SpecificResource { - return (resource as any).type === 'SpecificResource'; + return (resource as any).type === "SpecificResource"; } function isFragmentSelector(resource: unknown): resource is FragmentSelector { - return (resource as any) && (resource as any).type === 'FragmentSelector'; + return (resource as any) && (resource as any).type === "FragmentSelector"; } function specificResourceToString(resource: Reference | SpecificResource) { @@ -178,7 +178,7 @@ function specificResourceToString(resource: Reference | SpecificResource) { : undefined; if (isFragmentSelector(selector)) { - id += '#' + selector.value; + id += "#" + selector.value; } return id; } @@ -188,23 +188,23 @@ function specificResourceToString(resource: Reference | SpecificResource) { export const serializeConfigPresentation2: SerializeConfig = { Manifest: function* (entity, state, { isTopLevel }) { return [ - ...(isTopLevel ? [['@context', 'http://iiif.io/api/presentation/2/context.json']] : []), - ...technicalProperties(entity, 'sc:Manifest'), + ...(isTopLevel ? [["@context", "http://iiif.io/api/presentation/2/context.json"]] : []), + ...technicalProperties(entity, "sc:Manifest"), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), // Structural. // @todo structures [ - 'sequences', + "sequences", [ { - '@id': `${entity.id}/sequence0`, - '@type': 'sc:Sequence', + "@id": `${entity.id}/sequence0`, + "@type": "sc:Sequence", canvases: yield entity.items, }, ], ], - ['structures', yield entity.structures], + ["structures", yield entity.structures], ]; }, @@ -213,13 +213,13 @@ export const serializeConfigPresentation2: SerializeConfig = { const resources = paintingPage[0]; return [ // Items. - ...technicalProperties(entity, 'sc:Canvas'), + ...technicalProperties(entity, "sc:Canvas"), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), - ['images', resources ? [resources.resources] : undefined], + ["images", resources ? [resources.resources] : undefined], [ // @todo use otherContent if they are inlined - 'annotations', + "annotations", entity.annotations && entity.annotations.length ? unNestArray(yield entity.annotations) : undefined, ], ]; @@ -227,34 +227,34 @@ export const serializeConfigPresentation2: SerializeConfig = { AnnotationPage: function* (entity) { return [ - ...technicalProperties(entity, 'sc:AnnotationList'), + ...technicalProperties(entity, "sc:AnnotationList"), ...(yield* descriptiveProperties(entity)), - ['resources', entity.items && entity.items.length ? unNestArray(yield entity.items) : undefined], + ["resources", entity.items && entity.items.length ? unNestArray(yield entity.items) : undefined], ]; }, Annotation: function* (entity) { return [ - ['@id', entity.id], - ['@type', 'oa:Annotation'], + ["@id", entity.id], + ["@type", "oa:Annotation"], // This could be improved. - ['motivation', 'sc:painting'], - ['on', parseCanvasTarget(entity.target)], - ['resource', unNestArray(yield entity.body, true)], + ["motivation", "sc:painting"], + ["on", parseCanvasTarget(entity.target)], + ["resource", unNestArray(yield entity.body, true)], ]; }, ContentResource: function* (entity: any) { switch (entity.type) { - case 'Image': + case "Image": return [ // Image properties. - ...technicalProperties(entity, 'dctypes:Image'), + ...technicalProperties(entity, "dctypes:Image"), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), ]; - case 'Text': - case 'Dataset': + case "Text": + case "Dataset": default: return [...technicalProperties(entity, undefined), ...(yield* descriptiveProperties(entity))]; } @@ -263,18 +263,18 @@ export const serializeConfigPresentation2: SerializeConfig = { AnnotationCollection: function* (entity) { return [ // @todo expand properties if they are actually used. - ['@id', entity.id], - ['@type', 'sc:Layer'], - ['label', languageString2to3(entity.label)], + ["@id", entity.id], + ["@type", "sc:Layer"], + ["label", languageString2to3(entity.label)], ]; }, Collection: function* (entity) { return [ - ...technicalProperties(entity, 'sc:Collection'), + ...technicalProperties(entity, "sc:Collection"), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), - ['members', yield* entity.items], + ["members", yield* entity.items], ]; }, @@ -284,16 +284,16 @@ export const serializeConfigPresentation2: SerializeConfig = { if (entity.items) { for (const _item of entity.items) { - const item = _item.type === 'SpecificResource' ? _item.source : _item; + const item = _item.type === "SpecificResource" ? _item.source : _item; if (item) { const canvas = yield item; members.push({ - '@id': specificResourceToString(_item), - '@type': item.type, + "@id": specificResourceToString(_item), + "@type": item.type, label: canvas ? canvas.label : undefined, within: entity.id, }); - if (item.type === 'Canvas') { + if (item.type === "Canvas") { canvases.push(item.id); } } @@ -301,11 +301,11 @@ export const serializeConfigPresentation2: SerializeConfig = { } return [ - ...technicalProperties(entity, 'sc:Range'), + ...technicalProperties(entity, "sc:Range"), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), - ['canvases', canvases.length === members.length ? canvases : undefined], - ['members', canvases.length !== members.length ? members : undefined], + ["canvases", canvases.length === members.length ? canvases : undefined], + ["members", canvases.length !== members.length ? members : undefined], ]; }, }; diff --git a/src/presentation-3/serialize-presentation-3.ts b/src/presentation-3/serialize-presentation-3.ts index 660fe41..1339350 100644 --- a/src/presentation-3/serialize-presentation-3.ts +++ b/src/presentation-3/serialize-presentation-3.ts @@ -1,30 +1,24 @@ -import { SerializeConfig } from './serialize'; -import { - ImageService, - ImageService2, - ImageService3, - ResourceProvider, - TechnicalProperties, -} from '@iiif/presentation-3'; -import { compressSpecificResource } from '../shared/compress-specific-resource'; -import { DescriptiveNormalized, LinkingNormalized } from '@iiif/presentation-3-normalized'; -import { HAS_PART, IS_EXTERNAL, PART_OF, UNSET, UNWRAP } from './utilities'; -import { isSpecificResource } from '../shared/is-specific-resource'; +import { SerializeConfig } from "./serialize"; +import type { ImageService, ImageService2, ImageService3, ResourceProvider, TechnicalProperties } from "./types"; +import { compressSpecificResource } from "../shared/compress-specific-resource"; +import type { DescriptiveNormalized, LinkingNormalized } from "../presentation-3-normalized/types"; +import { HAS_PART, IS_EXTERNAL, PART_OF, UNSET, UNWRAP } from "./utilities"; +import { isSpecificResource } from "../shared/is-specific-resource"; function technicalProperties(entity: Partial): Array<[keyof TechnicalProperties, any]> { return [ // Technical - ['id', !entity.id?.startsWith('vault://') ? entity.id : undefined], - ['type', entity.type], - ['format', entity.format], - ['profile', entity.profile], - ['height', entity.height || undefined], - ['width', entity.width || undefined], - ['duration', entity.duration || undefined], - ['viewingDirection', entity.viewingDirection !== 'left-to-right' ? entity.viewingDirection : undefined], - ['behavior', entity.behavior && entity.behavior.length ? entity.behavior : undefined], - ['timeMode', entity.timeMode], - ['motivation', Array.isArray(entity.motivation) ? entity.motivation[0] : entity.motivation], + ["id", !entity.id?.startsWith("vault://") ? entity.id : undefined], + ["type", entity.type], + ["format", entity.format], + ["profile", entity.profile], + ["height", entity.height || undefined], + ["width", entity.width || undefined], + ["duration", entity.duration || undefined], + ["viewingDirection", entity.viewingDirection !== "left-to-right" ? entity.viewingDirection : undefined], + ["behavior", entity.behavior && entity.behavior.length ? entity.behavior : undefined], + ["timeMode", entity.timeMode], + ["motivation", Array.isArray(entity.motivation) ? entity.motivation[0] : entity.motivation], [HAS_PART as any, UNSET], ]; } @@ -34,6 +28,10 @@ function filterEmpty(item?: T[] | typeof UNSET): T[] | undefined | typeof UNS return undefined; } + if (!Array.isArray(item)) { + return item; + } + if (!item || item.length === 0) { return undefined; } @@ -47,24 +45,24 @@ function filterEmpty(item?: T[] | typeof UNSET): T[] | undefined | typeof UNS } function service2compat(service: ImageService3 | ImageService): ImageService2 | ImageService3 { - if (service && service.type && service.type === 'ImageService2') { + if (service && service.type && service.type === "ImageService2") { const { id, type, profile: _profile, ..._service } = service as any; const profile = - typeof _profile === 'string' + typeof _profile === "string" ? _profile : Array.isArray(_profile) - ? _profile.find((p) => typeof p === 'string') - : ''; + ? _profile.find((p) => typeof p === "string") + : ""; return { - '@id': id, - '@type': type, + "@id": id, + "@type": type, profile: profile - ? profile.startsWith('http') + ? profile.startsWith("http") ? profile : `http://iiif.io/api/image/2/${profile}.json` - : 'http://iiif.io/api/image/2/level0.json', + : "http://iiif.io/api/image/2/level0.json", ..._service, } as any; } @@ -88,20 +86,20 @@ function* descriptiveProperties( entity: Partial ): Generator> { return [ - ['label', entity.label], - ['metadata', filterEmpty(entity.metadata)], - ['summary', entity.summary], - ['requiredStatement', entity.requiredStatement], - ['rights', Array.isArray(entity.rights) ? entity.rights[0] || undefined : entity.rights || undefined], - ['navDate', entity.navDate], - ['language', entity.language], + ["label", entity.label], + ["metadata", filterEmpty(entity.metadata)], + ["summary", entity.summary], + ["requiredStatement", entity.requiredStatement], + ["rights", Array.isArray(entity.rights) ? entity.rights[0] || undefined : entity.rights || undefined], + ["navDate", entity.navDate], + ["language", entity.language], // We yield these fully as they are embedded in here. - ['thumbnail', filterEmpty(yield entity.thumbnail)], - ['placeholderCanvas', yield entity.placeholderCanvas], - ['accompanyingCanvas', yield entity.accompanyingCanvas], + ["thumbnail", filterEmpty(yield entity.thumbnail)], + ["placeholderCanvas", filterEmpty(yield entity.placeholderCanvas)], + ["accompanyingCanvas", filterEmpty(yield entity.accompanyingCanvas)], // @todo need to test this one. - ['provider', filterEmpty(yield entity.provider)], + ["provider", filterEmpty(yield entity.provider)], ]; } @@ -111,23 +109,23 @@ function* linkingProperties( ): Generator> { let filteredPartOf = []; for (let partOf of entity.partOf || []) { - if (partOf.type === 'Manifest' && parent.type === 'Manifest') continue; + if (partOf.type === "Manifest" && parent.type === "Manifest") continue; filteredPartOf.push(yield partOf); } return [ - ['seeAlso', filterEmpty(yield entity.seeAlso)], - ['service', filterEmpty(filterService2Compat(entity.service))], - ['services', filterEmpty(filterService2Compat(entity.services))], - ['rendering', filterEmpty(yield entity.rendering)], - ['supplementary', filterEmpty(yield entity.supplementary)], - ['homepage', filterEmpty(yield entity.homepage)], - ['logo', filterEmpty(yield (entity as ResourceProvider).logo)], + ["seeAlso", filterEmpty(yield entity.seeAlso)], + ["service", filterEmpty(filterService2Compat(entity.service))], + ["services", filterEmpty(filterService2Compat(entity.services))], + ["rendering", filterEmpty(yield entity.rendering)], + ["supplementary", filterEmpty(yield entity.supplementary)], + ["homepage", filterEmpty(yield entity.homepage)], + ["logo", filterEmpty(yield (entity as ResourceProvider).logo)], // Don't yield these, they are references. - ['partOf', filterEmpty(filteredPartOf)], + ["partOf", filterEmpty(filteredPartOf)], [ - 'start', + "start", // @todo remove once types updated. entity.start ? compressSpecificResource(entity.start) : entity.start, ], @@ -141,37 +139,34 @@ export const serializeConfigPresentation3: SerializeConfig = { // Only a snippet. ...technicalProperties(entity), ...(yield* descriptiveProperties(entity)), - ['navPlace', (entity as any).navPlace], + ["navPlace", (entity as any).navPlace], ]; } - let context: any = 'http://iiif.io/api/presentation/3/context.json'; + let context: any = "http://iiif.io/api/presentation/3/context.json"; if (entity.navPlace || itemsHaveNavPlace(entity)) { context = [ - 'http://iiif.io/api/presentation/3/context.json', - 'http://iiif.io/api/extension/navplace/context.json', + "http://iiif.io/api/presentation/3/context.json", + "http://iiif.io/api/extension/navplace/context.json", ]; } return [ - [ - '@context', - (entity as any)['@context'] ? (entity as any)['@context'] : context, - ], + ["@context", (entity as any)["@context"] ? (entity as any)["@context"] : context], ...technicalProperties(entity), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), - ['items', yield entity.items], - ['structures', filterEmpty(yield entity.structures)], - ['annotations', filterEmpty(yield entity.annotations)], - ['navPlace', (entity as any).navPlace], // @todo remove when types are updated + ["items", yield entity.items], + ["structures", filterEmpty(yield entity.structures)], + ["annotations", filterEmpty(yield entity.annotations)], + ["navPlace", (entity as any).navPlace], // @todo remove when types are updated ]; }, Canvas: function* (entity, state, { parent }) { - if (parent && parent.type !== 'Manifest' && parent.type !== 'Canvas') { - return [['id', entity.id]]; + if (parent && parent.type !== "Manifest" && parent.type !== "Canvas") { + return [["id", entity.id]]; } return [ @@ -179,18 +174,18 @@ export const serializeConfigPresentation3: SerializeConfig = { ...technicalProperties(entity), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity, parent)), - ['items', yield entity.items], - ['annotations', filterEmpty(yield entity.annotations)], - ['navPlace', (entity as any).navPlace], // @todo remove when types are updated + ["items", yield entity.items], + ["annotations", filterEmpty(yield entity.annotations)], + ["navPlace", (entity as any).navPlace], // @todo remove when types are updated ]; }, Agent: function* (entity) { return [ // - ['id', entity.id], - ['type', 'Agent'], - ['label', entity.label], + ["id", entity.id], + ["type", "Agent"], + ["label", entity.label], ...(yield* linkingProperties(entity as any)), ]; }, @@ -201,17 +196,17 @@ export const serializeConfigPresentation3: SerializeConfig = { return [key, Array.isArray(item) ? filterEmpty(item as any) : item]; }) .filter(([key, value]) => { - return key !== 'items' && key !== 'id' && key !== HAS_PART && key !== PART_OF && key !== IS_EXTERNAL; + return key !== "items" && key !== "id" && key !== HAS_PART && key !== PART_OF && key !== IS_EXTERNAL; }); const items = yield entity.items; return [ // Any more properties? - ['id', !entity.id?.startsWith('vault://') ? entity.id : undefined], + ["id", !entity.id?.startsWith("vault://") ? entity.id : undefined], ...entries, ...(yield* linkingProperties(entity)), - ['items', items.length || (entity as any)[IS_EXTERNAL] === false ? items : UNSET], + ["items", items.length || (entity as any)[IS_EXTERNAL] === false ? items : UNSET], ]; }, @@ -223,22 +218,22 @@ export const serializeConfigPresentation3: SerializeConfig = { Annotation: function* (entity) { const entries = Object.entries(entity) .map(([key, item]) => { - if (key === 'motivation') { + if (key === "motivation") { // Annotation non-array items can be added here. return [key, Array.isArray(item) ? item[0] : item]; } - if (key === 'target') { + if (key === "target") { return [ key, - compressSpecificResource(item, { allowString: true, allowSourceString: true, allowedStringType: 'Canvas' }), + compressSpecificResource(item, { allowString: true, allowSourceString: true, allowedStringType: "Canvas" }), ]; } return [key, Array.isArray(item) ? filterEmpty(item as any) : item]; }) .filter(([key]) => { - return key !== 'body' && key !== HAS_PART && key !== IS_EXTERNAL; + return key !== "body" && key !== HAS_PART && key !== IS_EXTERNAL; }); let resolvedBody: any = undefined; @@ -251,7 +246,7 @@ export const serializeConfigPresentation3: SerializeConfig = { ...(body as any), }; - if (body.source.type !== 'Canvas') { + if (body.source.type !== "Canvas") { single.source = yield body.source; } else { single.source = body.source; @@ -280,7 +275,7 @@ export const serializeConfigPresentation3: SerializeConfig = { ...entries, ...(yield* descriptiveProperties(entity as any)), ...(yield* linkingProperties(entity)), - ['body', resolvedBody.length === 1 ? resolvedBody[0] : resolvedBody], + ["body", resolvedBody.length === 1 ? resolvedBody[0] : resolvedBody], ]; }, @@ -291,8 +286,8 @@ export const serializeConfigPresentation3: SerializeConfig = { ...technicalProperties(entity), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), - ['annotations', filterEmpty(yield entity.annotations)], - ['items', filterEmpty(yield entity.items)], + ["annotations", filterEmpty(yield entity.annotations)], + ["items", filterEmpty(yield entity.items)], ], entity ); @@ -301,36 +296,36 @@ export const serializeConfigPresentation3: SerializeConfig = { AnnotationCollection: function* (entity) { return [ // @todo expand properties if they are actually used. - ['id', entity.id], - ['type', 'AnnotationCollection'], - ['label', entity.label], + ["id", entity.id], + ["type", "AnnotationCollection"], + ["label", entity.label], ]; }, Collection: function* (entity, state, { isTopLevel }) { if (isTopLevel) { - let context: any = 'http://iiif.io/api/presentation/3/context.json'; + let context: any = "http://iiif.io/api/presentation/3/context.json"; if (entity.navPlace || itemsHaveNavPlace(entity)) { context = [ - 'http://iiif.io/api/extension/navplace/context.json', - 'http://iiif.io/api/presentation/3/context.json', + "http://iiif.io/api/extension/navplace/context.json", + "http://iiif.io/api/presentation/3/context.json", ]; } return [ - ['@context', context], + ["@context", context], ...technicalProperties(entity), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), - ['items', filterEmpty(yield entity.items)], - ['navPlace', (entity as any).navPlace], // @todo remove when types are updated + ["items", filterEmpty(yield entity.items)], + ["navPlace", (entity as any).navPlace], // @todo remove when types are updated ]; } return [ ...technicalProperties(entity), ...(yield* descriptiveProperties(entity)), - ['navPlace', (entity as any).navPlace], + ["navPlace", (entity as any).navPlace], ]; }, @@ -338,13 +333,13 @@ export const serializeConfigPresentation3: SerializeConfig = { const rangeItems = []; for (const item of entity.items) { - if (item.type === 'Range') { + if (item.type === "Range") { // Resolve the full range rangeItems.push(yield item); } else { // Just push the reference. // @todo could also push in the label of the item? - if (item && item.type === 'SpecificResource') { + if (item && item.type === "SpecificResource") { rangeItems.push(compressSpecificResource(item)); } else { rangeItems.push(item); @@ -356,9 +351,9 @@ export const serializeConfigPresentation3: SerializeConfig = { ...technicalProperties(entity), ...(yield* descriptiveProperties(entity)), ...(yield* linkingProperties(entity)), - ['items', rangeItems], - ['annotations', filterEmpty(yield entity.annotations)], - ['navPlace', (entity as any).navPlace], // @todo remove when types are updated + ["items", rangeItems], + ["annotations", filterEmpty(yield entity.annotations)], + ["navPlace", (entity as any).navPlace], // @todo remove when types are updated ]; }, }; @@ -371,14 +366,13 @@ function mergeRemainingProperties(entries: [string, any][], object: any): [strin if (key === HAS_PART || key === IS_EXTERNAL) { continue; } - if (alreadyParsed.indexOf(key) === -1 && typeof object[key] !== 'undefined') { + if (alreadyParsed.indexOf(key) === -1 && typeof object[key] !== "undefined") { entries.push([key, object[key]]); } } return entries; } - function itemsHaveNavPlace(item: any) { if (!item.items || !Array.isArray(item.items)) { return false; diff --git a/src/presentation-3/serialize.ts b/src/presentation-3/serialize.ts index e548676..3645549 100644 --- a/src/presentation-3/serialize.ts +++ b/src/presentation-3/serialize.ts @@ -1,5 +1,5 @@ -import { AnnotationCollection, ContentResource, Reference, Selector } from '@iiif/presentation-3'; -import { +import type { AnnotationCollection, ContentResource, Reference, Selector } from "./types"; +import type { AnnotationCollectionNormalized, AnnotationNormalized, AnnotationPageNormalized, @@ -9,8 +9,8 @@ import { RangeNormalized, ResourceProviderNormalized, ServiceNormalized, -} from '@iiif/presentation-3-normalized'; -import { resolveIfExists, UNSET, UNWRAP } from './utilities'; +} from "../presentation-3-normalized/types"; +import { resolveIfExists, UNSET, UNWRAP } from "./utilities"; export type Field = any[]; @@ -43,7 +43,7 @@ export type NormalizedEntity = | _ServiceNormalized | Selector | ResourceProviderNormalized - | { id?: string; '@id'?: string; type?: string; '@type'?: string; [key: string]: any }; + | { id?: string; "@id"?: string; type?: string; "@type"?: string; [key: string]: any }; type SerializerContext = { isTopLevel?: boolean; @@ -78,7 +78,7 @@ export function serializedFieldsToObject(fields: Field[] | [string]): T { if (key === UNWRAP && value !== UNSET) { return value as T; } - if (value !== UNSET && typeof value !== 'undefined' && value !== null) { + if (value !== UNSET && typeof value !== "undefined" && value !== null) { object[key] = value; } } @@ -88,7 +88,7 @@ export function serializedFieldsToObject(fields: Field[] | [string]): T { export function serialize(state: CompatibleStore, subject: Reference, config: SerializeConfig): Return { if (!subject.type || !subject.id) { - throw new Error('Unknown entity'); + throw new Error("Unknown entity"); } if (!config[subject.type as keyof SerializeConfig]) { @@ -101,7 +101,7 @@ export function serialize(state: CompatibleStore, subject: Reference, co return UNSET; } if (depth > 20) { - throw new Error('Circular reference: ' + sub.id + ' ' + sub.type); + throw new Error("Circular reference: " + sub.id + " " + sub.type); } const [resource, fullResource] = resolveIfExists(state, sub.type ? sub : sub.id, parent) || (sub.id && sub.type ? sub : null); diff --git a/src/presentation-3/strict-upgrade.ts b/src/presentation-3/strict-upgrade.ts index 7d0248a..39904d6 100644 --- a/src/presentation-3/strict-upgrade.ts +++ b/src/presentation-3/strict-upgrade.ts @@ -1,6 +1,6 @@ -import * as Presentation3 from '@iiif/presentation-3'; -import { Traverse } from './traverse'; -import { removeUndefinedProperties } from '../shared/remove-undefined-properties'; +import type * as Presentation3 from "./types"; +import { Traverse } from "./traverse"; +import { removeUndefinedProperties } from "../shared/remove-undefined-properties"; const validNavDate = /-?([1-9]\d{3,}|0\d{3})-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01])T(([01]\d|2[0-3]):[0-5]\d:[0-5]\d(\.\d+)?|(24:00:00(\.0+)?))(Z|(\+|-)((0\d|1[0-3]):[0-5]\d|14:00))?/; @@ -16,16 +16,16 @@ function technicalProperties( logging: InternalLogging = globalWarnings ): Partial { if (item.behavior) { - item.behavior = ensureArrayWarning(item.behavior, 'behavior', logging); + item.behavior = ensureArrayWarning(item.behavior, "behavior", logging); } - item.width = ensureValidNumber(item.width, 'width', false, logging); - item.height = ensureValidNumber(item.height, 'height', false, logging); - item.duration = ensureValidNumber(item.duration, 'duration', true, logging); + item.width = ensureValidNumber(item.width, "width", false, logging); + item.height = ensureValidNumber(item.height, "height", false, logging); + item.duration = ensureValidNumber(item.duration, "duration", true, logging); - if (item.format && typeof item.format !== 'string') { + if (item.format && typeof item.format !== "string") { logging.warnings.push(`"format" should be a single string`); - if (Array.isArray(item.format) && typeof item.format[0] === 'string') { + if (Array.isArray(item.format) && typeof item.format[0] === "string") { item.format = item.format[0]; } else { item.format = undefined; @@ -77,20 +77,20 @@ function ensureValidNumber( isFloat = false, logging: InternalLogging = globalWarnings ): number | undefined { - if (typeof value === 'undefined') { + if (typeof value === "undefined") { return undefined; } - if (typeof value === 'string') { + if (typeof value === "string") { const newValue = isFloat ? parseFloat(value) : Math.abs(Number(value)); if (Number.isNaN(newValue) || newValue <= 0) { logging.warnings.push( - `"${propName}" expected value to be a ${isFloat ? 'Number' : 'Integer'}, instead found an invalid value` + `"${propName}" expected value to be a ${isFloat ? "Number" : "Integer"}, instead found an invalid value` ); return undefined; } logging.warnings.push( - `"${propName}" expected value to be a ${isFloat ? 'Number' : 'Integer'}, instead found a string` + `"${propName}" expected value to be a ${isFloat ? "Number" : "Integer"}, instead found a string` ); return newValue; } @@ -110,15 +110,15 @@ function ensureValidLanguageMap( ): Presentation3.InternationalString { // Handle {"label": ["an array of strings"]} if (Array.isArray(str)) { - if (typeof str[0] === 'string') { + if (typeof str[0] === "string") { logging.warnings.push(`"${propName}" should be a language map instead found a string`); return { none: str }; } logging.warnings.push(`"${propName}" should be a language map instead found an unknown value`); - return { none: [''] }; + return { none: [""] }; } - if (typeof str === 'string') { + if (typeof str === "string") { logging.warnings.push(`"${propName}" should be a language map instead found a string`); return { none: [str] }; } @@ -130,13 +130,13 @@ function ensureValidLanguageMap( for (const key of keys) { const values = str[key] as unknown; const fixedItem = []; - if (typeof values === 'string') { + if (typeof values === "string") { didFix = true; logging.warnings.push(`"${propName}" values inside a language map should be an Array of strings, found a string`); fixedItem.push(values); } else if (Array.isArray(values)) { for (const str of values) { - if (!(typeof str === 'string')) { + if (!(typeof str === "string")) { didFix = true; logging.warnings.push( `"${propName}" values inside a language map should be an Array of strings, found an unknown value` @@ -159,7 +159,7 @@ function ensureValidLanguageMap( if (didFix) { if (Object.keys(fixed).length === 0) { - return { none: [''] }; + return { none: [""] }; } return fixed; @@ -171,10 +171,10 @@ function ensureValidLanguageMap( function validMetadataValue( input: Presentation3.MetadataItem, propName: string, - defaultLabel = '', + defaultLabel = "", logging: InternalLogging = globalWarnings ): Presentation3.MetadataItem { - if (typeof input === 'string') { + if (typeof input === "string") { logging.warnings.push(`"${propName}" should be a {label, value} set of Language maps`); return { label: { none: [defaultLabel] }, @@ -192,7 +192,7 @@ function validMetadataValue( if (input.value) { input.value = ensureValidLanguageMap(input.value, `${propName}.value`, logging); } else { - input.value = { none: [''] }; + input.value = { none: [""] }; } } @@ -204,17 +204,17 @@ function descriptiveProperties( logging: InternalLogging = globalWarnings ): Partial { if (item.label) { - item.label = ensureValidLanguageMap(item.label, 'label', logging); + item.label = ensureValidLanguageMap(item.label, "label", logging); } if (item.summary) { - item.summary = ensureValidLanguageMap(item.summary, 'summary', logging); + item.summary = ensureValidLanguageMap(item.summary, "summary", logging); } if (item.requiredStatement) { item.requiredStatement = validMetadataValue( item.requiredStatement, - 'requiredStatement', - 'Required statement', + "requiredStatement", + "Required statement", logging ); } @@ -222,7 +222,7 @@ function descriptiveProperties( if (item.metadata) { if (Array.isArray(item.metadata)) { for (let i = 0; i < item.metadata.length; i++) { - item.metadata[i] = validMetadataValue(item.metadata[i]!, `metadata.${i}`, '', logging); + item.metadata[i] = validMetadataValue(item.metadata[i]!, `metadata.${i}`, "", logging); } } else { logging.warnings.push(`"metadata" should be an array of {label, value} Language maps`); @@ -233,11 +233,11 @@ function descriptiveProperties( if (item.rights) { if (Array.isArray(item.rights)) { logging.warnings.push(`"rights" should only contain a single string`); - item.rights = typeof item.rights[0] === 'string' ? item.rights[0] : ''; + item.rights = typeof item.rights[0] === "string" ? item.rights[0] : ""; } - if (typeof item.rights === 'string' && !item.rights.startsWith('http')) { + if (typeof item.rights === "string" && !item.rights.startsWith("http")) { logging.warnings.push(`"rights" should be a valid URI`); - } else if (typeof item.rights === 'string' && item.rights.startsWith('https')) { + } else if (typeof item.rights === "string" && item.rights.startsWith("https")) { logging.warnings.push( `"rights" is an informative property and should contain the http variation of the rights statement` ); @@ -246,55 +246,55 @@ function descriptiveProperties( } if (item.navDate) { - const trimmedNavDate = typeof item.navDate === 'string' ? item.navDate.trim() : undefined; + const trimmedNavDate = typeof item.navDate === "string" ? item.navDate.trim() : undefined; if (trimmedNavDate !== item.navDate) { logging.warnings.push(`"navDate" should not contain extra whitespace`); item.navDate = trimmedNavDate; } - if (typeof item.navDate !== 'string' || !item.navDate.match(validNavDate)) { + if (typeof item.navDate !== "string" || !item.navDate.match(validNavDate)) { logging.warnings.push(`"navDate" should be a valid XSD dateTime literal`); item.navDate = undefined; } } if (item.language) { - item.language = ensureArrayWarning(item.language, 'language', logging); + item.language = ensureArrayWarning(item.language, "language", logging); item.language = ensureArrayMatches( item.language, - (value) => (typeof value === 'string' ? undefined : `'"language" expected array of strings`), + (value) => (typeof value === "string" ? undefined : `'"language" expected array of strings`), logging ); } if (item.accompanyingCanvas) { - item.accompanyingCanvas = ensureNotArrayWarning(item.accompanyingCanvas, 'accompanyingCanvas', logging); - if (item.accompanyingCanvas?.type !== 'Canvas') { + item.accompanyingCanvas = ensureNotArrayWarning(item.accompanyingCanvas, "accompanyingCanvas", logging); + if (item.accompanyingCanvas?.type !== "Canvas") { logging.warnings.push(`"accompanyingCanvas" should be a Canvas`); } } if (item.placeholderCanvas) { - item.placeholderCanvas = ensureNotArrayWarning(item.placeholderCanvas, 'placeholderCanvas', logging); - if (item.placeholderCanvas?.type !== 'Canvas') { + item.placeholderCanvas = ensureNotArrayWarning(item.placeholderCanvas, "placeholderCanvas", logging); + if (item.placeholderCanvas?.type !== "Canvas") { logging.warnings.push(`"placeholderCanvas" should be a Canvas`); } } if (item.thumbnail) { - item.thumbnail = ensureArrayWarning(item.thumbnail, 'thumbnail', logging); + item.thumbnail = ensureArrayWarning(item.thumbnail, "thumbnail", logging); } return item; } const validItemMapping: any = { - Manifest: 'Canvas', - Canvas: 'AnnotationPage', - AnnotationPage: 'Annotation', + Manifest: "Canvas", + Canvas: "AnnotationPage", + AnnotationPage: "Annotation", }; function structuralProperties(resource: any, logging: InternalLogging = globalWarnings) { const type = resource.type; switch (type) { - case 'Canvas': - case 'AnnotationPage': - case 'Manifest': { + case "Canvas": + case "AnnotationPage": + case "Manifest": { if (resource && resource.items) { resource.items = ensureArrayMatches( resource.items, @@ -316,38 +316,38 @@ function linkingProperties( logging: InternalLogging = globalWarnings ): Partial { if (item.logo) { - item.logo = ensureArrayWarning(item.logo, 'logo', logging); + item.logo = ensureArrayWarning(item.logo, "logo", logging); } if (item.service) { - item.service = ensureArrayWarning(item.service, 'service', logging); + item.service = ensureArrayWarning(item.service, "service", logging); } if (item.seeAlso) { - item.seeAlso = ensureArrayWarning(item.seeAlso, 'seeAlso', logging); + item.seeAlso = ensureArrayWarning(item.seeAlso, "seeAlso", logging); } if (item.rendering) { - item.rendering = ensureArrayWarning(item.rendering, 'rendering', logging); + item.rendering = ensureArrayWarning(item.rendering, "rendering", logging); } if (item.partOf) { - item.partOf = ensureArrayWarning(item.partOf, 'partOf', logging); + item.partOf = ensureArrayWarning(item.partOf, "partOf", logging); } if (item.homepage) { - item.homepage = ensureArrayWarning(item.homepage, 'homepage', logging); + item.homepage = ensureArrayWarning(item.homepage, "homepage", logging); } if (item.services) { - item.services = ensureArrayWarning(item.services, 'services', logging); + item.services = ensureArrayWarning(item.services, "services", logging); } if (item.supplementary) { - item.supplementary = ensureArrayWarning(item.supplementary, 'supplementary', logging); + item.supplementary = ensureArrayWarning(item.supplementary, "supplementary", logging); } if (item.start) { - item.start = ensureNotArrayWarning(item.start, 'start', logging); + item.start = ensureNotArrayWarning(item.start, "start", logging); } return item; @@ -359,7 +359,7 @@ function upgradeResource(state: InternalLogging) { return undefined; } - if (typeof resource === 'string') { + if (typeof resource === "string") { return resource; } diff --git a/src/presentation-3/traverse.ts b/src/presentation-3/traverse.ts index ed2ba19..49bcaf0 100644 --- a/src/presentation-3/traverse.ts +++ b/src/presentation-3/traverse.ts @@ -1,4 +1,4 @@ -import { +import type { Annotation, AnnotationCollection, AnnotationPage, @@ -18,23 +18,24 @@ import { SpecificResource, ResourceProvider, StructuralProperties, -} from '@iiif/presentation-3'; -import { isSpecificResource } from '../shared/is-specific-resource'; -import { ensureArray } from '../shared/ensure-array'; -import { compose } from '../shared/compose'; +} from "./types"; +import type { GeoJSON } from "../shared/geojson"; +import { isSpecificResource } from "../shared/is-specific-resource"; +import { ensureArray } from "../shared/ensure-array"; +import { compose } from "../shared/compose"; export const types = [ - 'Collection', - 'Manifest', - 'Canvas', - 'AnnotationPage', - 'AnnotationCollection', - 'Annotation', - 'ContentResource', - 'Range', - 'Service', - 'Selector', - 'Agent', + "Collection", + "Manifest", + "Canvas", + "AnnotationPage", + "AnnotationCollection", + "Annotation", + "ContentResource", + "Range", + "Service", + "Selector", + "Agent", ]; export type TraversalContext = { parent?: any }; @@ -54,7 +55,7 @@ export type TraversalMap = { service?: Array>; agent?: Array>; specificResource?: Array>; - geoJson?: Array>; + geoJson?: Array>; }; export type TraverseOptions = { @@ -62,20 +63,20 @@ export type TraverseOptions = { }; export function identifyResource(resource: any, typeHint?: string): string { - if (typeof resource === 'undefined' || resource === null) { - throw new Error('Null or undefined is not a valid entity.'); + if (typeof resource === "undefined" || resource === null) { + throw new Error("Null or undefined is not a valid entity."); } if (Array.isArray(resource)) { - throw new Error('Array is not a valid entity'); + throw new Error("Array is not a valid entity"); } - if (typeof resource !== 'object') { + if (typeof resource !== "object") { if (typeHint) { return typeHint; } throw new Error(`${typeof resource} is not a valid entity`); } - if (typeof resource!.type === 'string') { + if (typeof resource!.type === "string") { const hasType = types.indexOf(resource.type); if (hasType !== -1) { return types[hasType]!; @@ -83,10 +84,10 @@ export function identifyResource(resource: any, typeHint?: string): string { } if (resource!.profile) { - return 'Service'; + return "Service"; } - throw new Error('Resource type is not known'); + throw new Error("Resource type is not known"); } export class Traverse { @@ -172,20 +173,20 @@ export class Traverse { if (resource.partOf) { // Array (resource as any).partOf = resource.partOf.map((partOf) => { - if (typeof partOf === 'string' || !partOf.type) { + if (typeof partOf === "string" || !partOf.type) { return this.traverseType(partOf as ContentResource, { parent: resource }, this.traversals.contentResource); } - if (partOf.type === 'Canvas') { + if (partOf.type === "Canvas") { return this.traverseType(partOf as Canvas, { parent: resource }, this.traversals.canvas); } - if (partOf.type === 'AnnotationCollection') { + if (partOf.type === "AnnotationCollection") { return this.traverseType( partOf as AnnotationCollection, { parent: resource }, this.traversals.annotationCollection ); } - if (partOf.type === 'Collection') { + if (partOf.type === "Collection") { return this.traverseType(partOf as Collection, { parent: resource }, this.traversals.collection); } return this.traverseType(partOf as ContentResource, { parent: resource }, this.traversals.contentResource); @@ -193,7 +194,7 @@ export class Traverse { } if (resource.start) { if (isSpecificResource(resource.start)) { - resource.start = this.traverseSpecificResource(resource.start, 'Canvas', resource) as any; + resource.start = this.traverseSpecificResource(resource.start, "Canvas", resource) as any; } else { // The spec says this can be a "partial canvas" causing errors with the types. resource.start = this.traverseType(resource.start as any, { parent: resource }, this.traversals.canvas); @@ -216,7 +217,7 @@ export class Traverse { traverseCollectionItems>(collection: T): T { if (collection.items) { collection.items.map((collectionOrManifest: Manifest | Collection) => { - if (collectionOrManifest.type === 'Collection') { + if (collectionOrManifest.type === "Collection") { return this.traverseCollection(collectionOrManifest as Collection); } return this.traverseManifest(collectionOrManifest as Manifest); @@ -240,8 +241,8 @@ export class Traverse { ); } - traverseGeoJson(geoJson: import('geojson').GeoJSON, parent?: any): import('geojson').GeoJSON { - return this.traverseType(geoJson, { parent }, this.traversals.geoJson); + traverseGeoJson(geoJson: GeoJSON, parent?: any): GeoJSON { + return this.traverseType(geoJson, { parent }, this.traversals.geoJson); } traverseNavPlace(resource: any /*NavPlaceExtension*/) { @@ -272,7 +273,7 @@ export class Traverse { this.traverseDescriptive.bind(this), this.traverseLinkedCanvases.bind(this), this.traverseManifestStructures.bind(this), - this.traverseInlineAnnotationPages.bind(this), + this.traverseInlineAnnotationPages.bind(this) ); traverseManifest(manifest: Manifest, parent?: any): Manifest { @@ -288,7 +289,7 @@ export class Traverse { } traverseInlineAnnotationPages(resource: T): T { - if (typeof resource === 'string' || !resource) { + if (typeof resource === "string" || !resource) { return resource; } if (resource.annotations) { @@ -371,7 +372,7 @@ export class Traverse { } traverseContentResourceLinking(contentResourceJson: ContentResource): ContentResource { - if (typeof contentResourceJson === 'string' || !contentResourceJson) { + if (typeof contentResourceJson === "string" || !contentResourceJson) { return contentResourceJson; } if (contentResourceJson && (contentResourceJson as IIIFExternalWebResource)!.service) { @@ -384,14 +385,14 @@ export class Traverse { } traverseContentResource(contentResourceJson: ContentResource, parent?: any): ContentResource { - if ((contentResourceJson as any).type === 'Choice') { + if ((contentResourceJson as any).type === "Choice") { (contentResourceJson as any).items = (contentResourceJson as any).items.map((choiceItem: ContentResource) => { return this.traverseContentResource(choiceItem, contentResourceJson); }); } if (isSpecificResource(contentResourceJson)) { - return this.traverseSpecificResource(contentResourceJson, 'ContentResource'); + return this.traverseSpecificResource(contentResourceJson, "ContentResource"); } return this.traverseType( @@ -406,17 +407,17 @@ export class Traverse { traverseSpecificResource(specificResource: SpecificResource, typeHint?: string, parent?: any): SpecificResource { let source = specificResource.source; - if (typeof specificResource.source === 'string') { - source = { id: specificResource.source, type: typeHint || 'unknown' }; + if (typeof specificResource.source === "string") { + source = { id: specificResource.source, type: typeHint || "unknown" }; } return this.traverseType( { ...specificResource, source: - typeHint === 'Canvas' || source.type === 'Canvas' + typeHint === "Canvas" || source.type === "Canvas" ? this.traverseType(source, { parent }, this.traversals.canvas) - : typeHint === 'ContentResource' + : typeHint === "ContentResource" ? this.traverseContentResource(source, { parent }) : this.traverseUnknown(source, { parent, typeHint }), }, @@ -428,14 +429,14 @@ export class Traverse { traverseRangeRanges(range: Range): Range { if (range.items) { range.items = range.items.map((rangeOrManifest: RangeItems) => { - if (typeof rangeOrManifest === 'string') { - return this.traverseCanvas({ id: rangeOrManifest, type: 'Canvas' }, range); + if (typeof rangeOrManifest === "string") { + return this.traverseCanvas({ id: rangeOrManifest, type: "Canvas" }, range); } if (isSpecificResource(rangeOrManifest)) { - return this.traverseSpecificResource(rangeOrManifest, 'Canvas', range); + return this.traverseSpecificResource(rangeOrManifest, "Canvas", range); } // This is a non-standard case. - if ((rangeOrManifest as any).type === 'Manifest') { + if ((rangeOrManifest as any).type === "Manifest") { return this.traverseManifest(rangeOrManifest as any, range) as any as RangeItems; } return this.traverseRange(rangeOrManifest as Range, range); @@ -467,7 +468,7 @@ export class Traverse { traverseType(object: T, context: TraversalContext, traversals: Array>): T { return traversals.reduce((acc: T, traversal: Traversal): T => { const returnValue = traversal(acc, context); - if (typeof returnValue === 'undefined' && !this.options.allowUndefinedReturn) { + if (typeof returnValue === "undefined" && !this.options.allowUndefinedReturn) { return acc; } return returnValue; @@ -498,23 +499,23 @@ export class Traverse { const type = identifyResource(resource, typeHint); switch (type) { - case 'Collection': + case "Collection": return this.traverseCollection(resource as Collection, parent); - case 'Manifest': + case "Manifest": return this.traverseManifest(resource as Manifest, parent); - case 'Canvas': + case "Canvas": return this.traverseCanvas(resource as Canvas, parent); - case 'AnnotationPage': + case "AnnotationPage": return this.traverseAnnotationPage(resource as AnnotationPage, parent); - case 'Annotation': + case "Annotation": return this.traverseAnnotation(resource as Annotation, parent); - case 'ContentResource': + case "ContentResource": return this.traverseContentResource(resource as ContentResource, parent); - case 'Range': + case "Range": return this.traverseRange(resource as Range, parent); - case 'Service': + case "Service": return this.traverseService(resource as Service, parent); - case 'Agent': + case "Agent": return this.traverseAgent(resource as ResourceProvider, parent); default: { throw new Error(`Unknown or unsupported resource type of ${type}`); diff --git a/src/presentation-3/types/index.ts b/src/presentation-3/types/index.ts new file mode 100644 index 0000000..43f7575 --- /dev/null +++ b/src/presentation-3/types/index.ts @@ -0,0 +1,111 @@ +export type * from "./legacy/index"; +export type { ResourceProvider } from "./legacy/src/resources/provider"; + +import { createPresentationHelpers, type ResourceSpecs } from "../../presentation-shared/helpers/create-helpers"; +import type { + Agent, + Annotation, + AnnotationCollection, + AnnotationPage, + Canvas, + Collection, + ContentResource, + FragmentSelector, + IIIFExternalWebResource, + ImageApiSelector, + ImageService, + ImageService2, + ImageService3, + Manifest, + PointSelector, + Range, + Reference, + Service, + SpecificResource, + Selector, +} from "./legacy/index"; + +export type ImageResourceLike = Omit & { type: "Image" }; +export type Sound = Omit & { type: "Sound" }; +export type Video = Omit & { type: "Video" }; +export type Text = Omit & { type: "Text" }; +export type Dataset = Omit & { type: "Dataset" }; +export type ImageService1 = ImageService & ({ type: "ImageService1" } | { "@type": "ImageService1" }); + +export type Presentation3HelperTypes = { + Collection: Collection; + Manifest: Manifest; + Canvas: Canvas; + AnnotationPage: AnnotationPage; + AnnotationCollection: AnnotationCollection; + Annotation: Annotation; + Range: Range; + ContentResource: ContentResource; + SpecificResource: SpecificResource; + Service: Service; + Selector: Selector; + Agent: Agent; + Reference: Reference; + Image: ImageResourceLike; + Sound: Sound; + Video: Video; + Text: Text; + Dataset: Dataset; + FragmentSelector: FragmentSelector; + PointSelector: PointSelector; + ImageApiSelector: ImageApiSelector; + ImageService: ImageService; + ImageService1: ImageService1; + ImageService2: ImageService2; + ImageService3: ImageService3; +}; + +const presentation3Specs: ResourceSpecs = { + Collection: { type: "Collection", aliases: ["sc:Collection"] }, + Manifest: { type: "Manifest", aliases: ["sc:Manifest"] }, + Canvas: { type: "Canvas", aliases: ["sc:Canvas"] }, + AnnotationPage: { type: "AnnotationPage", aliases: ["sc:AnnotationList"] }, + AnnotationCollection: { type: "AnnotationCollection", aliases: ["sc:Layer"] }, + Annotation: { type: "Annotation", aliases: ["oa:Annotation"] }, + Range: { type: "Range", aliases: ["sc:Range"] }, + ContentResource: { + type: "ContentResource", + aliases: [ + "Image", + "Video", + "Sound", + "Text", + "Dataset", + "TextualBody", + "dctypes:Image", + "dctypes:Text", + "dctypes:Sound", + ], + }, + SpecificResource: { type: "SpecificResource", aliases: ["oa:SpecificResource"] }, + Service: { type: "Service" }, + Selector: { type: "Selector" }, + Agent: { type: "Agent" }, + Reference: { type: "Reference" }, + Image: { type: "Image", aliases: ["dctypes:Image"] }, + Sound: { type: "Sound", aliases: ["dctypes:Sound", "Audio"] }, + Video: { type: "Video" }, + Text: { type: "Text", aliases: ["dctypes:Text", "TextualBody"] }, + Dataset: { type: "Dataset" }, + FragmentSelector: { type: "FragmentSelector", aliases: ["oa:FragmentSelector"] }, + PointSelector: { type: "PointSelector" }, + ImageApiSelector: { type: "ImageApiSelector", aliases: ["iiif:ImageApiSelector"] }, + ImageService: { type: "ImageService3", aliases: ["ImageService1", "ImageService2", "ImageService3"] }, + ImageService1: { type: "ImageService1" }, + ImageService2: { type: "ImageService2" }, + ImageService3: { type: "ImageService3" }, +}; + +const presentation3Helpers = createPresentationHelpers(presentation3Specs); + +/** Runtime-checked identity helpers for Presentation 3 resources. */ +export const infer = presentation3Helpers.infer; +/** Runtime assertion helpers for Presentation 3 resources. */ +export const cast = presentation3Helpers.cast; +/** Type guards for Presentation 3 discriminated resources. */ +export const narrow = presentation3Helpers.narrow; diff --git a/src/presentation-3/types/legacy/index.d.ts b/src/presentation-3/types/legacy/index.d.ts new file mode 100644 index 0000000..2dcbe66 --- /dev/null +++ b/src/presentation-3/types/legacy/index.d.ts @@ -0,0 +1,24 @@ +export * from "./src/resources/annotation"; +export * from "./src/resources/annotationCollection"; +export * from "./src/resources/annotationPage"; +export * from "./src/resources/canvas"; +export * from "./src/resources/collection"; +export * from "./src/resources/contentResource"; +export * from "./src/resources/manifest"; +export * from "./src/resources/range"; +export * from "./src/resources/service"; +export * from "./src/services/auth-service"; +export * from "./src/services/geo-json"; +export * from "./src/services/image-service"; +export * from "./src/services/search"; +export * from "./src/services/search-2"; +export * from "./src/services/auth-2"; +export * from "./src/iiif/descriptive"; +export * from "./src/iiif/linking"; +export * from "./src/iiif/structural"; +export * from "./src/iiif/technical"; +export * from "./src/utility"; +export * from "./src/reference"; +export * from "./src/extensions/nav-place"; +export * from "./src/extensions/text-granularity"; +export * from "./src/change-discovery"; diff --git a/src/presentation-3/types/legacy/src/change-discovery.d.ts b/src/presentation-3/types/legacy/src/change-discovery.d.ts new file mode 100644 index 0000000..e030f90 --- /dev/null +++ b/src/presentation-3/types/legacy/src/change-discovery.d.ts @@ -0,0 +1,126 @@ +// Based on: https://iiif.io/api/discovery/1.0/ + +import { InternationalString } from "./iiif/descriptive"; +import { Manifest } from "./resources/manifest"; +import { Prettify } from "./utility"; + +export type ChangeDiscoveryActivityRequest = { + startTime?: string; // xsd:dateTime + summary?: string; + actor?: ChangeDiscoveryActor; + target?: ChangeDiscoveryBaseObject; + object: ChangeDiscoveryBaseObject; +}; + +export type ChangeDiscoveryActivity = Prettify< + { + id: string; + endTime: string; // xsd:dateTime + startTime?: string; // xsd:dateTime + summary?: string; + actor?: ChangeDiscoveryActor; + target?: ChangeDiscoveryBaseObject; + } & ( + | { + type: Exclude; + object: ChangeDiscoveryBaseObject; + } + | { + type: "Move"; + object: ChangeDiscoveryBaseObject; + target: ChangeDiscoveryBaseObject; + } + ) +>; + +export type ChangeDiscoveryBaseObject = { + id: string; + canonical?: string; + name?: string; // Non-standard. + type: "Collection" | "Manifest" | "Canvas"; // Technically also: Range, Canvas etc. + seeAlso?: ChangeDiscoverySeeAlso[]; + provider?: Manifest["provider"]; +}; + +type ChangeDiscoveryActor = { + id: string; + type: "Person" | "Application" | "Organization"; +}; + +export type ChangeDiscoveryGenesisRequest = { + ids: string[]; +}; + +export type ChangeDiscoveryGenesisResponse = { + prefix: string; + ids: string[]; +}; + +export type ChangeDiscoveryImplementationState = { + processItems: any[]; + lastCrawl: number; + onlyDelete: boolean; +}; + +export type ActivityCollectionProcessor = ( + collection: ActivityOrderedCollection, + state: ChangeDiscoveryImplementationState +) => ChangeDiscoveryImplementationState; + +export type ActivityPageProcessor = ( + page: ActivityOrderedCollectionPage, + state: ChangeDiscoveryImplementationState +) => ChangeDiscoveryImplementationState; + +export type ChangeDiscoveryActivityType = "Create" | "Update" | "Delete" | "Move" | "Add" | "Remove"; + +export type ChangeDiscoverySeeAlso = { + id: string; + type: "Dataset"; + format: string; + label: InternationalString; + profile: string; +}; + +export type ActivityOrderedCollection = { + "@context": "http://iiif.io/api/discovery/1/context.json" | string[]; + id: string; + type: "OrderedCollection"; + first?: { + id: string; + type: "OrderedCollectionPage"; + }; + last: { + id: string; + type: "OrderedCollectionPage"; + }; + totalItems?: number; + seeAlso?: ChangeDiscoverySeeAlso[]; + partOf?: Array<{ + id: string; + type: "OrderedCollection"; + }>; + rights: string; + // Non-standard + totalPages?: number; +}; + +export type ActivityOrderedCollectionPage = { + "@context": "http://iiif.io/api/discovery/1/context.json" | string[]; + id: string; + type: "OrderedCollectionPage"; + partOf?: { + id: string; + type: "OrderedCollection"; + }; + startIndex?: number; + next?: { + id: string; + type: "OrderedCollectionPage"; + }; + prev?: { + id: string; + type: "OrderedCollectionPage"; + }; + orderedItems: ChangeDiscoveryActivity[]; +}; diff --git a/src/presentation-3/types/legacy/src/extensions/nav-place.d.ts b/src/presentation-3/types/legacy/src/extensions/nav-place.d.ts new file mode 100644 index 0000000..883997c --- /dev/null +++ b/src/presentation-3/types/legacy/src/extensions/nav-place.d.ts @@ -0,0 +1,20 @@ +import { Prettify } from "../utility"; +import type { GeoJSON } from "../../../../../shared/geojson"; + +/** + * Nav place + * + * See: https://iiif.io/api/extension/navplace/ + */ +export interface NavPlaceExtension { + /** + * Nav place + * + * The navPlace property identifies a single or multiple geographic areas pertinent to a resource using a GeoJSON + * Feature Collection containing one or more Features. These areas should be bounded discrete areas of the map akin + * to extents. These areas do not imply any level of accuracy, temporality, or state of existence. + * + * See: https://iiif.io/api/extension/navplace/ + */ + navPlace?: Prettify; +} diff --git a/src/presentation-3/types/legacy/src/extensions/text-granularity.d.ts b/src/presentation-3/types/legacy/src/extensions/text-granularity.d.ts new file mode 100644 index 0000000..7620d07 --- /dev/null +++ b/src/presentation-3/types/legacy/src/extensions/text-granularity.d.ts @@ -0,0 +1,65 @@ +/** + * Text granularity + * + * See: https://iiif.io/api/extension/text-granularity/ + */ + +/** + * A page in a paginated document + */ +export type PageGranularity = "page"; + +/** + * An arbitrary region of text + */ +export type BlockGranularity = "block"; + +/** + * A paragraph + */ +export type ParagraphGranularity = "paragraph"; + +/** + * A topographic line + */ +export type LineGranularity = "line"; + +/** + * A single word + */ +export type WordGranularity = "word"; + +/** + * A single glyph or symbol + */ +export type GlyphGranularity = "glyph"; + +/** + * The textGranularity property identifies the Text Granularity Level of a resource. The value must be a single string. + * This extension defines the Text Granularity Levels found in the table below. The string should be one of those + * defined in the table below or in the [Registry of Extensions](https://iiif.io/api/extension/). + */ +export type TextGranularityOptions = + | PageGranularity + | BlockGranularity + | ParagraphGranularity + | LineGranularity + | WordGranularity + | GlyphGranularity; + +export interface TextGranularityExtension { + /** + * Text granularity + * + * An Annotation may have the textGranularity property. An Annotation that has the property should reference a IIIF + * Presentation API Canvas or segment in the target property and the identified Text Granularity Level should describe + * that of the textual content represented by the content resources painted on the Target. + * + * The Annotation Body’s textual content should be equivalent to the textual content represented by the content + * resources painted on the Target. For example, the Body of the Annotation might be a TextualBody that contains the + * transcription of the Target, which is painted with the image of a page of a medieval manuscript. + * + * See: https://iiif.io/api/extension/text-granularity/ + */ + textGranularity?: TextGranularityOptions; +} diff --git a/src/presentation-3/types/legacy/src/iiif/descriptive.d.ts b/src/presentation-3/types/legacy/src/iiif/descriptive.d.ts new file mode 100644 index 0000000..9f2221f --- /dev/null +++ b/src/presentation-3/types/legacy/src/iiif/descriptive.d.ts @@ -0,0 +1,214 @@ +import { ResourceProvider } from "../resources/provider"; +import { Canvas } from "../resources/canvas"; +import { ContentResource } from "../resources/contentResource"; + +export type InternationalString = { + [language: string]: string[] | undefined; +}; + +export type MetadataItem = { + label: InternationalString; + value: InternationalString; +}; + +export type DescriptiveProperties = { + /** + * Label + * + * - A human-readable label, name or title. The label property is intended to be displayed as a short, textual surrogate for the resource if a human needs to make a distinction between it and similar resources, for example between objects, pages, or options for a choice of images to display. The label property can be fully internationalized, and each language can have multiple values. This pattern is described in more detail in the {@link InternationalString} section. + * The value of the property must be a JSON object, as described in the {@link InternationalString} section. + * + * - A {@link Collection} must have the label property with at least one entry. + * - Clients must render label on a Collection. + * - A {@link Manifest} must have the label property with at least one entry. + * - Clients must render label on a Manifest. + * - A {@link Canvas} should have the label property with at least one entry. + * - Clients must render label on a Canvas, and should generate a label for Canvases that do not have them. + * - A {@link ContentResource} may have the label property with at least one entry. If there is a Choice of content resource for the same Canvas, then they should each have at least the label property with at least one entry. + * - Clients may render label on content resources, and should render them when part of a Choice. + * - A {@link Range} should have the label property with at least one entry. + * - Clients must render label on a Range. + * - An {@link AnnotationCollection} should have the label property with at least one entry. + * - Clients should render label on an {@link AnnotationCollection}. + * - Other types of resource may have the label property with at least one entry. + * - Clients may render label on other types of resource. + * + */ + label: InternationalString | null; + + /** + * Metadata + * + * An ordered list of descriptions to be displayed to the user when they interact with the resource, given as pairs of human readable `label` and `value` entries. The content of these entries is intended for presentation only; descriptive semantics _SHOULD NOT_ be inferred. An entry might be used to convey information about the creation of the object, a physical description, ownership information, or other purposes. + * + * The value of the `metadata` property _MUST_ be an array of JSON objects, where each item in the array has both `label` and `value` properties. The values of both `label` and `value` _MUST_ be JSON objects, as described in the {@link InternationalString} section. + * + * * A {@link Collection} _SHOULD_ have the `metadata` property with at least one item. + * * Clients _MUST_ render `metadata` on a Collection. + * * A {@link Manifest} _SHOULD_ have the `metadata` property with at least one item. + * * Clients _MUST_ render `metadata` on a Manifest. + * * A {@link Canvas} _MAY_ have the `metadata` property with at least one item. + * * Clients _SHOULD_ render `metadata` on a Canvas. + * * Other types of resource _MAY_ have the `metadata` property with at least one item. + * * Clients _MAY_ render `metadata` on other types of resource. + * + * Clients _SHOULD_ display the entries in the order provided. Clients _SHOULD_ expect to encounter long texts in the `value` property, and render them appropriately, such as with an expand button, or in a tabbed interface. + */ + metadata: MetadataItem[]; + + /** + * Summary + * + * A short textual summary intended to be conveyed to the user when the `metadata` entries for the resource are not being displayed. This could be used as a brief description for item level search results, for small-screen environments, or as an alternative user interface when the `metadata` property is not currently being rendered. The `summary` property follows the same pattern as the `label` property described above. + * + * The value of the property _MUST_ be a JSON object, as described in the {@link InternationalString} section. + * + * * A {@link Collection} _SHOULD_ have the `summary` property with at least one entry. + * * Clients _SHOULD_ render `summary` on a Collection. + * * A {@link Manifest} _SHOULD_ have the `summary` property with at least one entry. + * * Clients _SHOULD_ render `summary` on a Manifest. + * * A {@link Canvas} _MAY_ have the `summary` property with at least one entry. + * * Clients _SHOULD_ render `summary` on a Canvas. + * * Other types of resource _MAY_ have the `summary` property with at least one entry. + * * Clients _MAY_ render `summary` on other types of resource. + */ + summary: InternationalString | null; + + /** + * Required statement + * + * Text that _MUST_ be displayed when the resource is displayed or used. For example, the `requiredStatement` property could be used to present copyright or ownership statements, an acknowledgement of the owning and/or publishing institution, or any other text that the publishing organization deems critical to display to the user. Given the wide variation of potential client user interfaces, it will not always be possible to display this statement to the user in the client's initial state. If initially hidden, clients _MUST_ make the method of revealing it as obvious as possible. + * + * The value of the property _MUST_ be a JSON object, that has the `label` and `value` properties, in the same way as a `metadata` property entry. The values of both `label` and `value` _MUST_ be JSON objects, as described in the [languages][prezi30-languages] section. + * + * * Any resource type _MAY_ have the `requiredStatement` property. + * * Clients _MUST_ render `requiredStatement` on every resource type. + */ + requiredStatement: MetadataItem | null; + + /** + * A string that identifies a license or rights statement that applies to the content of the resource, such as the JSON of a Manifest or the pixels of an image. The value _MUST_ be drawn from the set of [Creative Commons][org-cc-licenses] license URIs, the [RightsStatements.org][org-rs-terms] rights statement URIs, or those added via the [extension][prezi30-ldce] mechanism. The inclusion of this property is informative, and for example could be used to display an icon representing the rights assertions. + * + * If displaying rights information directly to the user is the desired interaction, or a publisher-defined label is needed, then it is _RECOMMENDED_ to include the information using the `requiredStatement` property or in the `metadata` property. + * + * The value _MUST_ be a string. If the value is drawn from Creative Commons or RightsStatements.org, then the string _MUST_ be a URI defined by that specification. + * + * * Any resource type _MAY_ have the `rights` property. + * * Clients _MAY_ render `rights` on any resource type. + */ + rights: string | null; + + /** + * Nav date + * + * A date that clients may use for navigation purposes when presenting the resource to the user in a date-based user interface, such as a calendar or timeline. More descriptive date ranges, intended for display directly to the user, _SHOULD_ be included in the `metadata` property for human consumption. If the resource contains Canvases that have the `duration` property, the datetime given corresponds to the navigation datetime of the start of the resource. For example, a Range that includes a Canvas that represents a set of video content recording a historical event, the `navDate` is the datetime of the first moment of the recorded event. + * + * The value _MUST_ be an XSD dateTime literal. The value _MUST_ have a timezone, and _SHOULD_ be given in UTC with the `Z` timezone indicator, but _MAY_ instead be given as an offset of the form `+hh:mm`. + * + * * A {@link Collection} _MAY_ have the `navDate` property. + * * Clients _MAY_ render `navDate` on a Collection. + * * A {@link Manifest} _MAY_ have the `navDate` property. + * * Clients _MAY_ render `navDate` on a Manifest. + * * A {@link Range} _MAY_ have the `navDate` property. + * * Clients _MAY_ render `navDate` on a Range. + * * A {@link Canvas} _MAY_ have the `navDate` property. + * * Clients _MAY_ render `navDate` on a Canvas. + * * Other types of resource _MUST NOT_ have the `navDate` property. + * * Clients _SHOULD_ ignore `navDate` on other types of resource. + */ + navDate: string | null; + + /** + * The language or languages used in the content of this external resource. This property is already available from the Web Annotation model for content resources that are the body or target of an Annotation, however it _MAY_ also be used for resources [referenced][prezi30-terminology] from `homepage`, `rendering`, and `partOf`. + * + * The value _MUST_ be an array of strings. Each item in the array _MUST_ be a valid language code, as described in the [languages section][prezi30-languages]. + * + * * An external resource _SHOULD_ have the `language` property with at least one item.
+ * * Clients _SHOULD_ process the `language` of external resources. + * * Other types of resource _MUST NOT_ have the `language` property.
+ * * Clients _SHOULD_ ignore `language` on other types of resource. + * + */ + language: string[]; + + /** + * A content resource, such as a small image or short audio clip, that represents the resource that has the thumbnail property. A resource may have multiple thumbnail resources that have the same or different type and format. + * + * The value must be an array of JSON objects, each of which must have the id and type properties, and should have the format property. Images and videos should have the width and height properties, and time-based media should have the duration property. It is recommended that a IIIF Image API service be available for images to enable manipulations such as resizing. + * + * * A {@link Collection} should have the thumbnail property with at least one item. + * * Clients should render thumbnail on a Collection. + * * A {@link Manifest} should have the thumbnail property with at least one item. + * * Clients should render thumbnail on a Manifest. + * * A {@link Canvas} may have the thumbnail property with at least one item. A Canvas should have the thumbnail property if there are multiple resources that make up the view. + * * Clients should render thumbnail on a Canvas. + * * A {@link ContentResource} may have the thumbnail property with at least one item. Content resources should have the thumbnail property with at least one item if it is an option in a Choice of resources. + * * Clients should render thumbnail on a content resource. + * * Other types of resource may have the thumbnail property with at least one item. + * * Clients may render thumbnail on other types of resource. + */ + thumbnail: ContentResource[]; + + /** + * An organization or person that contributed to providing the content of the resource. Clients can then display this information to the user to acknowledge the provider’s contributions. This differs from the requiredStatement property, in that the data is structured, allowing the client to do more than just present text but instead have richer information about the people and organizations to use in different interfaces. + * + * The organization or person is represented as an Agent resource. + * + * * Agents must have the id property, and its value must be a string. The string must be a URI that identifies the agent. + * * Agents must have the type property, and its value must be the string “Agent”. + * * Agents must have the label property, and its value must be a JSON object as described in the languages section. + * * Agents should have the homepage property, and its value must be an array of JSON objects as described in the homepage section. + * * Agents should have the logo property, and its value must be an array of JSON objects as described in the logo section. + * * Agents may have the seeAlso property, and its value must be an array of JSON object as described in the seeAlso section. + * * The value must be an array of JSON objects, where each item in the array conforms to the structure of an Agent, as described above. + * + * A Collection should have the provider property with at least one item. + * * Clients must render provider on a Collection. + * * A Manifest should have the provider property with at least one item. + * * Clients must render provider on a Manifest. + * * Other types of resource may have the provider property with at least one item. + * * Clients should render provider on other types of resource. + */ + provider: ResourceProvider[]; + + /** + * A single Canvas that provides additional content for use before the main content of the resource that has the `placeholderCanvas` property is rendered, or as an advertisement or stand-in for that content. Examples include images, text and sound standing in for video content before the user initiates playback; or a film poster to attract user attention. The content provided by `placeholderCanvas` differs from a thumbnail: a client might use `thumbnail` to summarize and navigate multiple resources, then show content from `placeholderCanvas` as part of the initial presentation of a single resource. A placeholder Canvas is likely to have different dimensions to those of the Canvas(es) of the resource that has the `placeholderCanvas` property. + * * + * Clients _MAY_ display the content of a linked placeholder Canvas when presenting the resource. When more than one such Canvas is available, for example if `placeholderCanvas` is provided for the currently selected Range and the current Manifest, the client _SHOULD_ pick the one most specific to the content. Publishers _SHOULD NOT_ assume that the placeholder Canvas will be processed by all clients. Clients _SHOULD_ take care to avoid conflicts between time-based media in the rendered placeholder Canvas and the content of the resource that has the `placeholderCanvas` property. + * + * The value _MUST_ be a JSON object with the `id` and `type` properties, and _MAY_ have other properties of Canvases. The value of `type` _MUST_ be the string `Canvas`. The object _MUST NOT_ have the `placeholderCanvas` property, nor the `accompanyingCanvas` property. + * + * * A {@link Collection} _MAY_ have the `placeholderCanvas` property. + * * Clients _MAY_ render `placeholderCanvas` on a Collection. + * * A {@link Manifest} _MAY_ have the `placeholderCanvas` property. + * * Clients _MAY_ render `placeholderCanvas` on a Manifest. + * * A {@link Canvas} _MAY_ have the `placeholderCanvas` property. + * * Clients _MAY_ render `placeholderCanvas` on a Canvas. + * * A {@link Range} _MAY_ have the `placeholderCanvas` property. + * * Clients _MAY_ render `placeholderCanvas` on a Range. + * * Other types of resource _MUST NOT_ have the `placeholderCanvas` property. + * * Clients _SHOULD_ ignore `placeholderCanvas` on other types of resource. + * + */ + placeholderCanvas: Canvas; + + /** + * A single Canvas that provides additional content for use while rendering the resource that has the `accompanyingCanvas` property. Examples include an image to show while a duration-only Canvas is playing audio; or background audio to play while a user is navigating an image-only Manifest. + * + * Clients _MAY_ display the content of an accompanying Canvas when presenting the resource. As with `placeholderCanvas` above, when more than one accompanying Canvas is available, the client _SHOULD_ pick the one most specific to the content. Publishers _SHOULD NOT_ assume that the accompanying Canvas will be processed by all clients. Clients _SHOULD_ take care to avoid conflicts between time-based media in the accompanying Canvas and the content of the resource that has the `accompanyingCanvas` property. + * + * The value _MUST_ be a JSON object with the `id` and `type` properties, and _MAY_ have other properties of Canvases. The value of `type` _MUST_ be the string `Canvas`. The object _MUST NOT_ have the `placeholderCanvas` property, nor the `accompanyingCanvas` property. + * + * * A {@link Collection} _MAY_ have the `accompanyingCanvas` property. + * * Clients _MAY_ render `accompanyingCanvas` on a Collection. + * * A {@link Manifest} _MAY_ have the `accompanyingCanvas` property. + * * Clients _MAY_ render `accompanyingCanvas` on a Manifest. + * * A {@link Canvas} _MAY_ have the `accompanyingCanvas` property. + * * Clients _MAY_ render `accompanyingCanvas` on a Canvas. + * * A {@link Range} _MAY_ have the `accompanyingCanvas` property. + * * Clients _MAY_ render `accompanyingCanvas` on a Range. + * * Other types of resource _MUST NOT_ have the `accompanyingCanvas` property. + * * Clients _SHOULD_ ignore `accompanyingCanvas` on other types of resource. + */ + accompanyingCanvas: Canvas; +}; diff --git a/src/presentation-3/types/legacy/src/iiif/linking.d.ts b/src/presentation-3/types/legacy/src/iiif/linking.d.ts new file mode 100644 index 0000000..1ad7097 --- /dev/null +++ b/src/presentation-3/types/legacy/src/iiif/linking.d.ts @@ -0,0 +1,174 @@ +import { ContentResource } from "../resources/contentResource"; +import { Service } from "../resources/service"; +import { Canvas } from "../resources/canvas"; +import { AnnotationCollection } from "../resources/annotationCollection"; +import { Reference } from "../reference"; + +export type LinkingProperties = { + /** + * A machine-readable resource such as an XML or RDF description that is related to the current resource that has the + * seeAlso property. Properties of the resource should be given to help the client select between multiple + * descriptions (if provided), and to make appropriate use of the document. If the relationship between the resource + * and the document needs to be more specific, then the document should include that relationship rather than the + * IIIF resource. Other IIIF resources are also valid targets for seeAlso, for example to link to a Manifest that + * describes a related object. The URI of the document must identify a single representation of the data in a + * particular format. For example, if the same data exists in JSON and XML, then separate resources should be added + * for each representation, with distinct id and format properties. + * + * + * The value must be an array of JSON objects. Each item must have the id and type properties, and should have the + * label, format and profile properties. + * + * + * * Any resource type may have the seeAlso property with at least one item. + * * Clients may process seeAlso on any resource type. + */ + seeAlso: ContentResource[]; + + /** + * A service that the client might interact with directly and gain additional information or functionality for using + * the resource that has the service property, such as from an Image to the base URI of an associated IIIF Image API + * service. The service resource should have additional information associated with it in order to allow the client + * to determine how to make appropriate use of it. Please see the Service Registry document for the details of + * currently known service types. + * + * + * The value must be an array of JSON objects. Each object will have properties depending on the service’s definition, + * but must have either the id or @id and type or @type properties. Each object should have a profile property. + * + * + * Any resource type may have the service property with at least one item. + * Clients may process service on any resource type, and should process the IIIF Image API service. + * + * + * Implementations should be prepared to recognize the @id and @type property names used by older specifications, as + * well as id and type. Note that the @context key should not be present within the service, but instead included at + * the beginning of the document. The example below includes both version 2 and version 3 IIIF Image API services. + */ + service: Service[]; + + /** + * A list of one or more service definitions on the top-most resource of the document, that are typically shared by + * more than one subsequent resource. This allows for these shared services to be collected together in a single + * place, rather than either having their information duplicated potentially many times throughout the document, + * or requiring a consuming client to traverse the entire document structure to find the information. The resource + * that the service applies to must still have the service property, as described above, where the service resources + * have at least the id and type or @id and @type properties. This allows the client to know that the service applies + * to that resource. Usage of the services property is at the discretion of the publishing system. + * + * + * A client encountering a service property where the definition consists only of an id and type should then check + * the services property on the top-most resource for an expanded definition. If the service is not present in the + * services list, and the client requires more information in order to use the service, then it should dereference + * the id (or @id) of the service in order to retrieve a service description. + * + * + * The value must be an array of JSON objects. Each object must a service resource, as described above. + * + * + * A Collection may have the services property, if it is the topmost Collection in a response document. + * Clients should process services on a Collection. + * A Manifest may have the services property. + * Clients should process services on a Manifest. + */ + services: Service[]; + + /** + * A resource that is an alternative, non-IIIF representation of the resource that has the rendering property. Such + * representations typically cannot be painted onto a single Canvas, as they either include too many views, have + * incompatible dimensions, or are compound resources requiring additional rendering functionality. The rendering + * resource must be able to be displayed directly to a human user, although the presentation may be outside of the + * IIIF client. The resource must not have a splash page or other interstitial resource that mediates access to it. + * If access control is required, then the IIIF Authentication API is recommended. Examples include a rendering of a + * book as a PDF or EPUB, a slide deck with images of a building, or a 3D model of a statue. + * + * + * The value must be an array of JSON objects. Each item must have the id, type and label properties, and should + * have a format property. + * + * + * * Any resource type may have the rendering property with at least one item. + * * Clients should render rendering on a Collection, Manifest or Canvas, and may render rendering on other types of resource. + */ + rendering: ContentResource[]; + + /** + * A containing resource that includes the resource that has the partOf property. When a client encounters the partOf + * property, it might retrieve the referenced containing resource, if it is not embedded in the current + * representation, in order to contribute to the processing of the contained resource. For example, the partOf + * property on a Canvas can be used to reference an external Manifest in order to enable the discovery of further + * relevant information. Similarly, a Manifest can reference a containing Collection using partOf to aid in + * navigation. + * + * + * The value must be an array of JSON objects. Each item must have the id and type properties, and should have the + * label property. + * + * * Any resource type may have the partOf property with at least one item + * * Clients may render partOf on any resource type. + */ + partOf: Array | Reference<"Collection">>; + + /** + * A Canvas, or part of a Canvas, which the client should show on initialization for the resource that has the start + * property. The reference to part of a Canvas is handled in the same way that Ranges reference parts of Canvases. + * This property allows the client to begin with the first Canvas that contains interesting content rather than + * requiring the user to manually navigate to find it. + * + * + * The value must be a JSON object, which must have the id and type properties. The object must be either a Canvas + * (as in the first example below), or a Specific Resource with a Selector and a source property where the value is + * a Canvas (as in the second example below). + * + * * A Manifest may have the start property. + * * Clients should process start on a Manifest. + * * A Range may have the start property. + * * Clients should process start on a Range. + * * Other types of resource must not have the start property. + * * Clients should ignore start on other types of resource. + */ + start: Canvas | Partial | null; + + /** + * A link from this Range to an Annotation Collection that includes the supplementing Annotations of content + * resources for the Range. Clients might use this to present additional content to the user from a different + * Canvas when interacting with the Range, or to jump to the next part of the Range within the same Canvas. For + * example, the Range might represent a newspaper article that spans non-sequential pages, and then uses the + * supplementary property to reference an Annotation Collection that consists of the Annotations that record the + * text, split into Annotation Pages per newspaper page. Alternatively, the Range might represent the parts of a + * manuscript that have been transcribed or translated, when there are other parts that have yet to be worked on. + * The Annotation Collection would be the Annotations that transcribe or translate, respectively. + * + * + * The value must be a JSON object, which must have the id and type properties, and the type must be + * {@link AnnotationCollection}. + * + * + * * A Range may have the supplementary property. + * * Clients may process supplementary on a Range. + * * Other types of resource must not have the supplementary property. + * * Clients should ignore supplementary on other types of resource. + */ + supplementary: ContentResource[]; + /** + * @deprecated since 3.0-beta - use provider.logo + */ + logo: ContentResource[]; + + /** + * A web page that is about the object represented by the resource that has the homepage property. The web page is + * usually published by the organization responsible for the object, and might be generated by a content management + * system or other cataloging system. The resource must be able to be displayed directly to the user. Resources that + * are related, but not home pages, must instead be added into the metadata property, with an appropriate label or + * value to describe the relationship. + * + * + * The value of this property must be an array of JSON objects, each of which must have the id, type, and label + * properties, should have a format property, and may have the language property. + * + * + * * Any resource type may have the homepage property. + * * Clients should render homepage on a Collection, Manifest or Canvas, and may render homepage on other types of resource. + */ + homepage: ContentResource[]; +}; diff --git a/src/presentation-3/types/legacy/src/iiif/structural.d.ts b/src/presentation-3/types/legacy/src/iiif/structural.d.ts new file mode 100644 index 0000000..f2fcd35 --- /dev/null +++ b/src/presentation-3/types/legacy/src/iiif/structural.d.ts @@ -0,0 +1,71 @@ +import { AnnotationPage } from "../resources/annotationPage"; +import { Range } from "../resources/range"; + +/** + * These properties define the structure of the object being represented in IIIF by allowing the inclusion of child + * resources within parents, such as a Canvas within a Manifest, or a Manifest within a Collection. The majority of + * cases use items, however there are two special cases for different sorts of structures. + */ +export type StructuralProperties = { + /** + * Much of the functionality of the IIIF Presentation API is simply recording the order in which child resources + * occur within a parent resource, such as Collections or Manifests within a parent Collection, or Canvases within + * a Manifest. All of these situations are covered with a single property, items. + * + * The value must be an array of JSON objects. Each item must have the id and type properties. The items will be + * resources of different types, as described below. + * + * * A Collection must have the items property. Each item must be either a Collection or a Manifest. + * * Clients must process items on a Collection. + * * A Manifest must have the items property with at least one item. Each item must be a Canvas. + * * Clients must process items on a Manifest. + * * A Canvas should have the items property with at least one item. Each item must be an Annotation Page. + * * Clients must process items on a Canvas. + * * An Annotation Page should have the items property with at least one item. Each item must be an Annotation. + * * Clients must process items on an Annotation Page. + * * A Range must have the items property with at least one item. Each item must be a Range, a Canvas or a Specific Resource where the source is a Canvas. + * * Clients should process items on a Range. + * * Other types of resource must not have the items property. + * * Clients should ignore items on other types of resource. + */ + items: T[]; + + /** + * An ordered list of Annotation Pages that contain commentary or other Annotations about this resource, separate + * from the Annotations that are used to paint content on to a Canvas. The motivation of the Annotations must not + * be painting, and the target of the Annotations must include this resource or part of it. + * + * The value must be an array of JSON objects. Each item must have at least the id and type properties. + * + * * A Collection may have the annotations property with at least one item. + * * Clients should process annotations on a Collection. + * * A Manifest may have the annotations property with at least one item. + * * Clients should process annotations on a Manifest,. + * * A Canvas may have the annotations property with at least one item. + * * Clients should process annotations on a Canvas. + * * A Range may have the annotations property with at least one item. + * * Clients should process annotations on a Range. + * * A content resource may have the annotations property with at least one item. + * * Clients should process annotations on a content resource. + * * Other types of resource must not have the annotations property. + * * Clients should ignore annotations on other types of resource. + */ + annotations: AnnotationPage[]; + + /** + * The structure of an object represented as a Manifest can be described using a hierarchy of Ranges. Ranges can be + * used to describe the “table of contents” of the object or other structures that the user can interact with beyond + * the order given by the items property of the Manifest. The hierarchy is built by nesting the child Range resources + * in the items array of the higher level Range. The top level Ranges of these hierarchies are given in the + * structures property. + * + * The value must be an array of JSON objects. Each item must have the id and type properties, and the type must be + * Range. + * + * * A Manifest may have the structures property. + * * Clients should process structures on a Manifest. The first hierarchy should be presented to the user by default, and further hierarchies should be able to be selected as alternative structures by the user. + * * Other types of resource must not have the structures property. + * * Clients should ignore structures on other types of resource. + */ + structures: Range[]; +}; diff --git a/src/presentation-3/types/legacy/src/iiif/technical.d.ts b/src/presentation-3/types/legacy/src/iiif/technical.d.ts new file mode 100644 index 0000000..49ab088 --- /dev/null +++ b/src/presentation-3/types/legacy/src/iiif/technical.d.ts @@ -0,0 +1,220 @@ +import { LiteralUnion } from "../utility"; + +export type ResourceType = + | "Collection" + | "Manifest" + | "Canvas" + | "Annotation" + | "AnnotationPage" + | "AnnotationCollection" + | "Range" + | "ContentResource" + | "Choice" + | "CanvasReference" + | "Service"; + +export type ViewingDirection = "left-to-right" | "right-to-left" | "top-to-bottom" | "bottom-to-top"; + +export type SpecificationBehaviors = + | "auto-advance" + | "continuous" + | "facing-pages" + | "individuals" + | "multi-part" + | "no-auto-advance" + | "no-nav" + | "no-repeat" + | "non-paged" + | "hidden" + | "paged" + | "repeat" + | "sequence" + | "thumbnail-nav" + | "together" + | "unordered"; + +export type SpecificationTimeMode = "trim" | "scale" | "loop"; + +export type TechnicalProperties = { + /** + * The URI that identifies the resource. If the resource is only available embedded within another resource (see the [terminology section][prezi30-terminology] for an explanation of "embedded"), such as a Range within a Manifest, then the URI _MAY_ be the URI of the embedding resource with a unique fragment on the end. This is not true for Canvases, which _MUST_ have their own URI without a fragment. + * + * The value _MUST_ be a string, and the value _MUST_ be an HTTP(S) URI for resources defined in this specification. If the resource is retrievable via HTTP(S), then the URI _MUST_ be the URI at which it is published. External resources, such as profiles, _MAY_ have non-HTTP(S) URIs defined by other communities. + * + * The existence of an HTTP(S) URI in the `id` property does not mean that the URI will always be dereferencable. If the resource with the `id` property is [embedded][prezi30-terminology], it _MAY_ also be dereferenceable. If the resource is referenced (again, see the [terminology section][prezi30-terminology] for an explanation of "referenced"), it _MUST_ be dereferenceable. The [definitions of the Resources][prezi30-resource-structure] give further guidance. + * + * * All resource types _MUST_ have the `id` property. + * * Clients _MAY_ render `id` on any resource type, and _SHOULD_ render `id` on Collections, Manifests and Canvases. + */ + id: string; + + /** + * The type or class of the resource. For classes defined for this specification, the value of `type` will be described in the sections below describing each individual class. + * + * For content resources, the value of `type` is drawn from other specifications. Recommendations for common content types such as image, text or audio are given in the table below. + * + * The JSON objects that appear in the value of the `service` property will have many different classes, and can be used to distinguish the sort of service, with specific properties defined in a [registered context document][prezi30-ldce]. + * + * The value _MUST_ be a string. + * + * * All resource types _MUST_ have the `type` property. + * * Clients _MUST_ process, and _MAY_ render, `type` on any resource type. + */ + type: ResourceType; + + /** + * The specific media type (often called a MIME type) for a content resource, for example `image/jpeg`. This is important for distinguishing different formats of the same overall type of resource, such as distinguishing text in XML from plain text. + * + * Note that this is different to the `formats` property in the [Image API][image-api], which gives the extension to use within that API. It would be inappropriate to use in this case, as `format` can be used with any content resource, not just images. + * + * The value _MUST_ be a string, and it _SHOULD_ be the value of the `Content-Type` header returned when the resource is dereferenced. + * + * * A content resource _SHOULD_ have the `format` property. + * * Clients _MAY_ render the `format` of any content resource. + * * Other types of resource _MUST NOT_ have the `format` property. + * * Clients _SHOULD_ ignore `format` on other types of resource. + */ + format: string; + + /** + * A schema or named set of functionality available from the resource. The profile can further clarify the `type` and/or `format` of an external resource or service, allowing clients to customize their handling of the resource that has the `profile` property. + * + * The value _MUST_ be a string, either taken from the [profiles registry][registry-profiles] or a URI. + * + * * Resources [referenced][prezi30-terminology] by the `seeAlso` or `service` properties _SHOULD_ have the `profile` property. + * * Clients _SHOULD_ process the `profile` of a service or external resource. + * * Other types of resource _MAY_ have the `profile` property. + * * Clients _MAY_ process the `profile` of other types of resource. + */ + profile: string; + + /** + * The height of the Canvas or external content resource. For content resources, the value is in pixels. For Canvases, the value does not have a unit. In combination with the width, it conveys an aspect ratio for the space in which content resources are located. + * + * The value _MUST_ be a positive integer. + * + * * A Canvas _MAY_ have the `height` property. If it has a `height`, it _MUST_ also have a `width`. + * * Clients _MUST_ process `height` on a Canvas. + * * Content resources _SHOULD_ have the `height` property, with the value given in pixels, if appropriate to the resource type. + * * Clients _SHOULD_ process `height` on content resources. + * * Other types of resource _MUST NOT_ have the `height` property. + * * Clients _SHOULD_ ignore `height` on other types of resource. + */ + height: number; + + /** + * The width of the Canvas or external content resource. For content resources, the value is in pixels. For Canvases, the value does not have a unit. In combination with the height, it conveys an aspect ratio for the space in which content resources are located. + * + * The value _MUST_ be a positive integer. + * + * * A Canvas _MAY_ have the `width` property. If it has a `width`, it _MUST_ also have a `height`. + * * Clients _MUST_ process `width` on a Canvas. + * * Content resources _SHOULD_ have the `width` property, with the value given in pixels, if appropriate to the resource type. + * * Clients _SHOULD_ process `width` on content resources. + * * Other types of resource _MUST NOT_ have the `width` property. + * * Clients _SHOULD_ ignore `width` on other types of resource. + */ + width: number; + + /** + * The duration of the Canvas or external content resource, given in seconds. + * + * The value _MUST_ be a positive floating point number. + * + * * A Canvas _MAY_ have the `duration` property. + * * Clients _MUST_ process `duration` on a Canvas. + * * Content resources _SHOULD_ have the `duration` property, if appropriate to the resource type. + * * Clients _SHOULD_ process `duration` on content resources. + * * Other types of resource _MUST NOT_ have a `duration`. + * * Clients _SHOULD_ ignore `duration` on other types of resource. + */ + duration: number; + + /** + * The direction in which a set of Canvases _SHOULD_ be displayed to the user. This specification defines four direction values in the table below. Others may be defined externally [as an extension][prezi30-ldce]. + * + * The value _MUST_ be a string. + * + * * A Collection _MAY_ have the `viewingDirection` property.
+ * * Clients _SHOULD_ process `viewingDirection` on a Collection. + * * A Manifest _MAY_ have the `viewingDirection` property.
+ * * Clients _SHOULD_ process `viewingDirection` on a Manifest. + * * A Range _MAY_ have the `viewingDirection` property.
+ * * Clients _MAY_ process `viewingDirection` on a Range. + * * Other types of resource _MUST NOT_ have the `viewingDirection` property.
+ * * Clients _SHOULD_ ignore `viewingDirection` on other types of resource. + */ + viewingDirection: ViewingDirection; + + /** + * A set of user experience features that the publisher of the content would prefer the client to use when presenting the resource. This specification defines the values in the table below. Others may be defined externally as an [extension][prezi30-ldce]. + * + * In order to determine the behaviors that are governing a particular resource, there are four inheritance rules from resources that reference the current resource: + * * Collections inherit behaviors from their referencing Collection. + * * Manifests **DO NOT** inherit behaviors from any referencing Collections. + * * Canvases inherit behaviors from their referencing Manifest, but **DO NOT** inherit behaviors from any referencing Ranges, as there might be several with different behaviors. + * * Ranges inherit behaviors from any referencing Range and referencing Manifest. + * + * Clients should interpret behaviors on a Range only when that Range is selected or is in some other way the context for the user's current interaction with the resources. A Range with the `behavior` value `continuous`, in a Manifest with the `behavior` value `paged`, would mean that the Manifest's Canvases should be rendered in a paged fashion, unless the range is selected to be viewed, and its included Canvases would be rendered in that context only as being virtually stitched together. This might occur, for example, when a physical scroll is cut into pages and bound into a codex with other pages, and the publisher would like to provide the user the experience of the scroll in its original form. + * + * The descriptions of the behavior values have a set of which other values they are disjoint with, meaning that the same resource _MUST NOT_ have both of two or more from that set. In order to determine which is in effect, the client _SHOULD_ follow the inheritance rules above, taking the value from the closest resource. The user interface effects of the possible permutations of non-disjoint behavior values are client dependent, and implementers are advised to look for relevant recipes in the [IIIF cookbook][annex-cookbook]. + * + * __Future Clarification Anticipated__
+ * Further clarifications about the implications of interactions between behavior values should be expected in subsequent minor releases. + * + * The value _MUST_ be an array of strings. + * + * * Any resource type _MAY_ have the `behavior` property with at least one item.
+ * Clients _SHOULD_ process `behavior` on any resource type. + * + * > | Value | Description | + * | ----- | ----------- | + * || **Temporal Behaviors** | + * | `auto-advance` | Valid on Collections, Manifests, Canvases, and Ranges that include or are Canvases with at least the `duration` dimension. When the client reaches the end of a Canvas, or segment thereof as specified in a Range, with a duration dimension that has this behavior, it _SHOULD_ immediately proceed to the next Canvas or segment and render it. If there is no subsequent Canvas in the current context, then this behavior should be ignored. When applied to a Collection, the client should treat the first Canvas of the next Manifest as following the last Canvas of the previous Manifest, respecting any `start` property specified. Disjoint with `no-auto-advance`. | + * | `no-auto-advance` | Valid on Collections, Manifests, Canvases, and Ranges that include or are Canvases with at least the `duration` dimension. When the client reaches the end of a Canvas or segment with a duration dimension that has this behavior, it _MUST NOT_ proceed to the next Canvas, if any. This is a default temporal behavior if not specified. Disjoint with `auto-advance`.| + * | `repeat` | Valid on Collections and Manifests, that include Canvases that have at least the `duration` dimension. When the client reaches the end of the duration of the final Canvas in the resource, and the `behavior` value `auto-advance` is also in effect, then the client _SHOULD_ return to the first Canvas, or segment of Canvas, in the resource that has the `behavior` value `repeat` and start playing again. If the `behavior` value `auto-advance` is not in effect, then the client _SHOULD_ render a navigation control for the user to manually return to the first Canvas or segment. Disjoint with `no-repeat`.| + * | `no-repeat` | Valid on Collections and Manifests, that include Canvases that have at least the `duration` dimension. When the client reaches the end of the duration of the final Canvas in the resource, the client _MUST NOT_ return to the first Canvas, or segment of Canvas. This is a default temporal behavior if not specified. Disjoint with `repeat`.| + * | | **Layout Behaviors** | + * | `unordered` | Valid on Collections, Manifests and Ranges. The Canvases included in resources that have this behavior have no inherent order, and user interfaces _SHOULD_ avoid implying an order to the user. Disjoint with `individuals`, `continuous`, and `paged`.| + * | `individuals` | Valid on Collections, Manifests, and Ranges. For Collections that have this behavior, each of the included Manifests are distinct objects in the given order. For Manifests and Ranges, the included Canvases are distinct views, and _SHOULD NOT_ be presented in a page-turning interface. This is the default layout behavior if not specified. Disjoint with `unordered`, `continuous`, and `paged`. | + * | `continuous` | Valid on Collections, Manifests and Ranges, which include Canvases that have at least `height` and `width` dimensions. Canvases included in resources that have this behavior are partial views and an appropriate rendering might display all of the Canvases virtually stitched together, such as a long scroll split into sections. This behavior has no implication for audio resources. The `viewingDirection` of the Manifest will determine the appropriate arrangement of the Canvases. Disjoint with `unordered`, `individuals` and `paged`. | + * | `paged` | Valid on Collections, Manifests and Ranges, which include Canvases that have at least `height` and `width` dimensions. Canvases included in resources that have this behavior represent views that _SHOULD_ be presented in a page-turning interface if one is available. The first canvas is a single view (the first recto) and thus the second canvas likely represents the back of the object in the first canvas. If this is not the case, see the `behavior` value `non-paged`. Disjoint with `unordered`, `individuals`, `continuous`, `facing-pages` and `non-paged`. | + * | `facing-pages` | Valid only on Canvases, where the Canvas has at least `height` and `width` dimensions. Canvases that have this behavior, in a Manifest that has the `behavior` value `paged`, _MUST_ be displayed by themselves, as they depict both parts of the opening. If all of the Canvases are like this, then page turning is not possible, so simply use `individuals` instead. Disjoint with `paged` and `non-paged`.| + * | `non-paged` | Valid only on Canvases, where the Canvas has at least `height` and `width` dimensions. Canvases that have this behavior _MUST NOT_ be presented in a page turning interface, and _MUST_ be skipped over when determining the page order. This behavior _MUST_ be ignored if the current Manifest does not have the `behavior` value `paged`. Disjoint with `paged` and `facing-pages`. | + * | | **Collection Behaviors** | + * | `multi-part` | Valid only on Collections. Collections that have this behavior consist of multiple Manifests or Collections which together form part of a logical whole or a contiguous set, such as multi-volume books or a set of journal issues. Clients might render these Collections as a table of contents rather than with thumbnails, or provide viewing interfaces that can easily advance from one member to the next. Disjoint with `together`.| + * | `together` | Valid only on Collections. A client _SHOULD_ present all of the child Manifests to the user at once in a separate viewing area with its own controls. Clients _SHOULD_ catch attempts to create too many viewing areas. This behavior _SHOULD NOT_ be interpreted as applying to the members of any child resources. Disjoint with `multi-part`.| + * | | **Range Behaviors** | + * | `sequence` | Valid only on Ranges, where the Range is [referenced][prezi30-terminology] in the `structures` property of a Manifest. Ranges that have this behavior represent different orderings of the Canvases listed in the `items` property of the Manifest, and user interfaces that interact with this order _SHOULD_ use the order within the selected Range, rather than the default order of `items`. Disjoint with `thumbnail-nav` and `no-nav`.| + * | `thumbnail-nav` | Valid only on Ranges. Ranges that have this behavior _MAY_ be used by the client to present an alternative navigation or overview based on thumbnails, such as regular keyframes along a timeline for a video, or sections of a long scroll. Clients _SHOULD NOT_ use them to generate a conventional table of contents. Child Ranges of a Range with this behavior _MUST_ have a suitable `thumbnail` property. Disjoint with `sequence` and `no-nav`.| + * | `no-nav` | Valid only on Ranges. Ranges that have this behavior _MUST NOT_ be displayed to the user in a navigation hierarchy. This allows for Ranges to be present that capture unnamed regions with no interesting content, such as the set of blank pages at the beginning of a book, or dead air between parts of a performance, that are still part of the Manifest but do not need to be navigated to directly. Disjoint with `sequence` and `thumbnail-nav`.| + * | | **Miscellaneous Behaviors** | + * | `hidden` | Valid on Annotation Collections, Annotation Pages, Annotations, Specific Resources and Choices. If this behavior is provided, then the client _SHOULD NOT_ render the resource by default, but allow the user to turn it on and off. This behavior does not inherit, as it is not valid on Collections, Manifests, Ranges or Canvases. | + */ + behavior: Array>; + + /** + * A mode associated with an Annotation that is to be applied to the rendering of any time-based media, or otherwise could be considered to have a duration, used as a body resource of that Annotation. Note that the association of `timeMode` with the Annotation means that different resources in the body cannot have different values. This specification defines the values specified in the table below. Others may be defined externally as an [extension][prezi30-ldce]. + * + * The value _MUST_ be a string. + * + * * An Annotation _MAY_ have the `timeMode` property.
+ * Clients _SHOULD_ process `timeMode` on an Annotation. + * + */ + timeMode: SpecificationTimeMode | string | null; + + /** + * This specification defines two values for the Web Annotation property of `motivation`, or `purpose` when used on a Specific Resource or Textual Body. + * + * While any resource _MAY_ be the `target` of an Annotation, this specification defines only motivations for Annotations that target Canvases. These motivations allow clients to determine how the Annotation should be rendered, by distinguishing between Annotations that provide the content of the Canvas, from ones with externally defined motivations which are typically comments about the Canvas. + * + * Additional motivations may be added to the Annotation to further clarify the intent, drawn from [extensions][prezi30-ldce] or other sources. Clients _MUST_ ignore motivation values that they do not understand. Other motivation values given in the Web Annotation specification _SHOULD_ be used where appropriate, and examples are given in the [Presentation API Cookbook][annex-cookbook]. + * + * > | Value | Description | + * | ----- | ----------- | + * | `painting` | Resources associated with a Canvas by an Annotation that has the `motivation` value `painting` _MUST_ be presented to the user as the representation of the Canvas. The content can be thought of as being _of_ the Canvas. The use of this motivation with target resources other than Canvases is undefined. For example, an Annotation that has the `motivation` value `painting`, a body of an Image and the target of the Canvas is an instruction to present that Image as (part of) the visual representation of the Canvas. Similarly, a textual body is to be presented as (part of) the visual representation of the Canvas and not positioned in some other part of the user interface.| + * | `supplementing` | Resources associated with a Canvas by an Annotation that has the `motivation` value `supplementing` _MAY_ be presented to the user as part of the representation of the Canvas, or _MAY_ be presented in a different part of the user interface. The content can be thought of as being _from_ the Canvas. The use of this motivation with target resources other than Canvases is undefined. For example, an Annotation that has the `motivation` value `supplementing`, a body of an Image and the target of part of the Canvas is an instruction to present that Image to the user either in the Canvas's rendering area or somewhere associated with it, and could be used to present an easier to read representation of a diagram. Similarly, a textual body is to be presented either in the targeted region of the Canvas or otherwise associated with it, and might be OCR, a manual transcription or a translation of handwritten text, or captions for what is being said in a Canvas with audio content. | + */ + motivation: string | null; +}; diff --git a/src/presentation-3/types/legacy/src/reference.d.ts b/src/presentation-3/types/legacy/src/reference.d.ts new file mode 100644 index 0000000..5d2b637 --- /dev/null +++ b/src/presentation-3/types/legacy/src/reference.d.ts @@ -0,0 +1,8 @@ +import { Prettify } from "./utility"; + +export type Reference = Prettify<{ + type: T; + id: string; +}>; + +export type PolyEntity = Reference | string; diff --git a/src/presentation-3/types/legacy/src/resources/annotation.d.ts b/src/presentation-3/types/legacy/src/resources/annotation.d.ts new file mode 100644 index 0000000..be0c9e8 --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/annotation.d.ts @@ -0,0 +1,423 @@ +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { LinkingProperties } from "../iiif/linking"; +import { LiteralUnion, OmitProperties, Prettify, SomeRequired } from "../utility"; +import { ContentResource, ContentResourceString } from "./contentResource"; +import { TextGranularityExtension } from "../extensions/text-granularity"; + +export type AnnotationOmittedTechnical = + | "format" + | "profile" + | "height" + | "width" + | "duration" + | "viewingDirection" + | "motivation"; +export type AnnotationOmittedDescriptive = + | "accompanyingCanvas" + | "placeholderCanvas" + | "navDate" + | "language" + | "rights"; +export type AnnotationOmittedLinking = "services" | "start" | "supplementary"; + +export type AnnotationTechnical = OmitProperties; +export type AnnotationDescriptive = OmitProperties; +export type AnnotationLinking = OmitProperties; + +export type W3CMotivation = + | "assessing" + | "bookmarking" + | "classifying" + | "commenting" + | "describing" + | "editing" + | "highlighting" + | "identifying" + | "linking" + | "moderating" + | "questioning" + | "replying" + | "tagging" + // Search2 + | "contextualizing"; + +export type AnyMotivation = LiteralUnion; + +export type LinkedResource = string | { id: string } | any; + +export type OtherProperties = { + // Lifecycle properties. + created?: string; + generated?: string; + modified?: string; + creator?: Creator; + generator?: Creator; + // Intended audience + audience?: Audience | Audience[]; + accessibility?: string | string[]; + motivation?: AnyMotivation | AnyMotivation[]; + // Rights + rights?: string | string[]; + // Other identities + canonical?: string; + via?: string | string[]; +}; + +export type ResourceBaseProperties = Prettify< + OtherProperties & { + role?: string; + } +>; + +export type ExternalResourceTypes = "Dataset" | "Image" | "Video" | "Sound" | "Text"; + +export type ExternalWebResource = Prettify< + ResourceBaseProperties & { + id?: string; + type: "Dataset" | "Image" | "Video" | "Sound" | "Text"; + format?: string; + language?: string | string[]; + processingLanguage?: string; + textDirection?: "ltr" | "rtl" | "auto"; + } +>; + +export type EmbeddedResource = Prettify< + ResourceBaseProperties & { + id?: string; + type: "TextualBody"; + purpose?: string | string[]; + value?: string; + language?: string | string[]; + format?: string; + } +>; + +export type SpecificResource = Prettify< + ResourceBaseProperties & { + id?: string; + type: "SpecificResource"; + state?: State | State[]; + purpose?: AnyMotivation | AnyMotivation[]; + source?: Type; + selector?: Selector | Selector[]; + styleClass?: string; + renderedVia?: Agent | Agent[]; + scope?: LinkedResource; + } +>; + +export type Body = string | EmbeddedResource | ExternalWebResource | SpecificResource; +export type Target = string | ExternalWebResource | SpecificResource; + +export type RefinedBy = { + refinedBy?: + | string + | FragmentSelector + | CssSelector + | XPathSelector + | TextQuoteSelector + | TextPositionSelector + | DataPositionSelector + | SvgSelector; +}; + +export type FragmentSelector = Prettify< + RefinedBy & { + type: "FragmentSelector"; + value: string; + conformsTo?: string; + } +>; + +export type CssSelector = Prettify< + RefinedBy & { + type: "CssSelector"; + value: string; + } +>; +export type XPathSelector = Prettify< + RefinedBy & { + type: "XPathSelector"; + value: string; + } +>; +export type TextQuoteSelector = Prettify< + RefinedBy & { + type: "TextQuoteSelector"; + exact: string; + prefix?: string; + suffix?: string; + } +>; +export type TextPositionSelector = Prettify< + RefinedBy & { + type: "TextPositionSelector"; + start: number; + end: number; + } +>; +export type DataPositionSelector = Prettify< + RefinedBy & { + type: "DataPositionSelector"; + start: number; + end: number; + } +>; +export type SvgSelector = + | Prettify< + RefinedBy & { + type: "SvgSelector"; + value: string; + } + > + | { + type: "SvgSelector"; + id: string; + }; + +export type RangeSelector = { + type: "RangeSelector"; + startSelector: T; + endSelector: T; +}; + +// IIIF Extensions + +/** + * The Image API Selector is used to describe the operations available via the Image API in order to retrieve a + * particular image representation. In this case the resource is the abstract image as identified by the IIIF Image + * API base URI plus identifier, and the retrieval process involves adding the correct parameters after that base URI. + * For example, the top left hand quadrant of an image has the region parameter of pct:0,0,50,50 which must be put into + * the requested URI to obtain the appropriate representation. + * + * In order to make this as easy as possible for the situations when a IIIF Image API endpoint exists, we introduce a + * new Selector class called ImageApiSelector. It has properties that give the parameter values needed to fill out the + * URL structure in the request. If the property is not given, then a default should be used. + * + * One use of this is within the IIIF Presentation API, when a Canvas is being painted by part of an image, or an image + * that requires rotation before display. + */ +export type ImageApiSelector = { + type: "ImageApiSelector"; + /** + * The string to put in the region parameter of the URI. + * Default: "full" + */ + region?: string; + + /** + * The string to put in the size parameter of the URI. + * Default: "full" + */ + size?: string; + + /** + * The string to put in the rotation parameter of the URI. Note that this must be a string in order to allow + * mirroring, for example “!90”. + * Default: "0" + */ + rotation?: string; + + /** + * The string to put in the quality parameter of the URI. + * Default: "default" + */ + quality?: string; + + /** + * The string to put in the format parameter of the URI. Note that the ‘.’ character is not part of the format, + * just the URI syntax. + * Default: "jpg" + */ + format?: string; +}; + +/** + * There are common use cases in which a point, rather than a range or area, is the target of the Annotation. For + * example, putting a pin in a map should result in an exact point, not a very small rectangle. Points in time are not + * very short durations, and user interfaces should also treat these differently. This is particularly important when + * zooming in (either spatially or temporally) beyond the scale of the frame of reference. Even if the point takes up a + * 10 by 10 pixel square at the user’s current resolution, it is not a rectangle bounding an area. + * + * It is not possible to select a point using URI Fragments with the Media Fragment specification, as zero-sized + * fragments are not allowed. In order to fulfill the use cases, this specification defines a new Selector class + * called PointSelector. + */ +export type PointSelector = { + type: "PointSelector"; + /** + * Optional. An integer giving the x coordinate of the point, relative to the dimensions of the target resource. + */ + x?: number; + /** + * Optional. An integer giving the y coordinate of the point, relative to the dimensions of the target resource. + */ + y?: number; + /** + * Optional. A floating point number giving the time of the point in seconds, relative to the duration of the target + * resource. + */ + t?: number; +}; + +export type AudioContentSelector = { + type: "AudioContentSelector"; +}; + +export type VisualContentSelector = { + type: "VisualContentSelector"; +}; + +export type Selector = + | string + | FragmentSelector + | CssSelector + | XPathSelector + | TextQuoteSelector + | TextPositionSelector + | DataPositionSelector + | SvgSelector + | ImageApiSelector + | PointSelector + | AudioContentSelector + | VisualContentSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector + | RangeSelector; + +export type State = BasicState | TimeState | RequestHeaderState; + +export type BasicState = Prettify< + RefinedByState & { + id: string; + } +>; + +export type RefinedByState = { + refinedBy?: + | FragmentSelector + | CssSelector + | XPathSelector + | TextQuoteSelector + | TextPositionSelector + | DataPositionSelector + | SvgSelector + | State; +}; + +export type TimeState = + | Prettify< + RefinedByState & { + type: "TimeState"; + sourceDate: string | string[]; + cached?: string | string[]; + } + > + | Prettify< + RefinedByState & { + type: "TimeState"; + sourceDateStart: string; + sourceDateEnd: string; + cached?: string | string[]; + } + >; + +export type RequestHeaderState = Prettify< + RefinedByState & { + type: "HttpRequestState"; + value: string; + } +>; + +export type Stylesheet = + | { + id: string; + type: "CssStylesheet"; + } + | { + type: "CssStylesheet"; + format?: string; + value?: string | string[]; + }; + +export type ChoiceBody = { + id?: string; + type: "Choice"; + items: Body[]; +}; + +export type ChoiceTarget = { + type: "Choice"; + items: Target[]; +}; + +export type Creator = string | string[] | Agent | Agent[]; + +export type W3CAnnotationBody = Body | ChoiceBody; +export type W3CAnnotationTarget = Target | ChoiceTarget | TargetComposite | TargetList | TargetIndependents; + +export type AnnotationBody = ChoiceBody | ContentResource | ContentResourceString; +export type AnnotationTarget = W3CAnnotationTarget | ContentResource | ContentResourceString; + +export type TargetComposite = { + type: "Composite"; + items: Array; +}; +export type TargetList = { + type: "List"; + items: Array; +}; +export type TargetIndependents = { + type: "Independents"; + items: Array; +}; + +export type Audience = { + id: string; + type: "Audience" | string; + [T: string]: string; +}; + +export type Agent = { + id?: string; + type?: "Person" | "Organisation" | "Software"; + name?: string | string[]; + nickname?: string; + account?: string; + email?: string; + email_sha1?: string; + homepage?: string | string[]; + // ? + "schema:softwareVersion"?: any; +}; + +export type AnnotationW3C = Prettify< + OtherProperties & { + "@context"?: "http://www.w3.org/ns/anno.jsonld"; + body?: W3CAnnotationBody | W3CAnnotationBody[]; + bodyValue?: string; + target?: W3CAnnotationTarget | W3CAnnotationTarget[]; + canonical?: string; + via?: string; + stylesheet?: string | Stylesheet; + } +>; + +export type Annotation = Prettify< + SomeRequired & + Partial & + Partial & + Partial> & + TextGranularityExtension & { + type: "Annotation"; + body?: AnnotationBody | AnnotationBody[]; + target?: AnnotationTarget | AnnotationTarget[]; + } +>; diff --git a/src/presentation-3/types/legacy/src/resources/annotationCollection.d.ts b/src/presentation-3/types/legacy/src/resources/annotationCollection.d.ts new file mode 100644 index 0000000..753b82f --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/annotationCollection.d.ts @@ -0,0 +1,51 @@ +import { W3CAnnotationPage } from "./annotationPage"; +import { OmitProperties, Prettify, SomeRequired } from "../utility"; +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { LinkingProperties } from "../iiif/linking"; +import { Manifest } from "./manifest"; +import { Collection } from "./collection"; + +export type AnnotationCollectionOmittedTechnical = + | "type" + | "format" + | "profile" + | "height" + | "width" + | "duration" + | "viewingDirection" + | "timeMode" + | "motivation"; +export type AnnotationCollectionOmittedDescriptive = + | "accompanyingCanvas" + | "placeholderCanvas" + | "navDate" + | "language"; +export type AnnotationCollectionOmittedLinking = "services" | "partOf" | "start" | "supplementary"; + +export type AnnotationCollectionTechnical = OmitProperties; +export type AnnotationCollectionDescriptive = OmitProperties< + DescriptiveProperties, + AnnotationCollectionOmittedDescriptive +>; +export type AnnotationCollectionLinking = OmitProperties; + +export type W3CAnnotationCollection = { + "@context"?: string; + id: string; + type: "AnnotationCollection"; + label: string | string[]; + total?: number; + first?: string | OmitProperties; + last?: string | OmitProperties; +}; + +export type AnnotationCollection = Prettify< + SomeRequired & + Partial & + Partial & + OmitProperties & { + type: "AnnotationCollection"; + partOf: Array; + } +>; diff --git a/src/presentation-3/types/legacy/src/resources/annotationPage.d.ts b/src/presentation-3/types/legacy/src/resources/annotationPage.d.ts new file mode 100644 index 0000000..5291ac4 --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/annotationPage.d.ts @@ -0,0 +1,47 @@ +import { AnnotationCollection, W3CAnnotationCollection } from "./annotationCollection"; +import { OmitProperties, Prettify, SomeRequired } from "../utility"; +import { Annotation } from "./annotation"; +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { LinkingProperties } from "../iiif/linking"; +import { StructuralProperties } from "../iiif/structural"; + +export type AnnotationPageOmittedTechnical = + | "type" + | "format" + | "profile" + | "height" + | "width" + | "duration" + | "viewingDirection" + | "timeMode" + | "motivation"; +export type AnnotationPageOmittedDescriptive = "accompanyingCanvas" | "placeholderCanvas" | "navDate" | "language"; +export type AnnotationPageOmittedLinking = "services" | "partOf" | "start" | "supplementary"; +export type AnnotationPageOmittedStructural = "annotations" | "structures"; + +type AnnotationPageTechnical = OmitProperties; +type AnnotationPageDescriptive = OmitProperties; +type AnnotationPageLinking = OmitProperties; +type AnnotationPageStructural = OmitProperties, AnnotationPageOmittedStructural>; + +export type W3CAnnotationPage = { + "@context"?: string; + type: "AnnotationPage"; + partOf?: SomeRequired | string; + items?: Annotation[]; + next?: string; + prev?: string; + startIndex?: number; +}; + +export type AnnotationPage = Prettify< + SomeRequired & + Partial & + Partial & + Partial & + SomeRequired, "type"> & { + type: "AnnotationPage"; + partOf?: Array>>; + } +>; diff --git a/src/presentation-3/types/legacy/src/resources/canvas.d.ts b/src/presentation-3/types/legacy/src/resources/canvas.d.ts new file mode 100644 index 0000000..601dd8f --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/canvas.d.ts @@ -0,0 +1,30 @@ +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { StructuralProperties } from "../iiif/structural"; +import { LinkingProperties } from "../iiif/linking"; +import { JsonLDContext, OmitProperties, Prettify, SomeRequired } from "../utility"; +import { AnnotationPage } from "./annotationPage"; + +export type CanvasItems = AnnotationPage; + +export type CanvasOmittedTechnical = "format" | "profile" | "viewingDirection" | "timeMode" | "motivation"; +export type CanvasOmittedDescriptive = "language"; +export type CanvasOmittedLinking = "services" | "start" | "supplementary"; +export type CanvasOmittedStructural = "structures"; + +export type CanvasTechnical = OmitProperties; +export type CanvasDescriptive = OmitProperties; +export type CanvasStructural = OmitProperties, CanvasOmittedStructural>; +export type CanvasLinking = OmitProperties; + +export type Canvas = Prettify< + SomeRequired & + Partial & + Partial & + Partial & + JsonLDContext & { + type: "Canvas"; + } +>; + +export type CanvasItemSchemas = "AnnotationPage"; diff --git a/src/presentation-3/types/legacy/src/resources/collection.d.ts b/src/presentation-3/types/legacy/src/resources/collection.d.ts new file mode 100644 index 0000000..db78539 --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/collection.d.ts @@ -0,0 +1,41 @@ +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { StructuralProperties } from "../iiif/structural"; +import { LinkingProperties } from "../iiif/linking"; +import { Manifest } from "./manifest"; +import { JsonLDContext, OmitProperties, Prettify, SomeRequired } from "../utility"; +import { NavPlaceExtension } from "../extensions/nav-place"; + +export type CollectionItems = Collection | Manifest; + +export type CollectionOmittedTechnical = + | "format" + | "profile" + | "height" + | "width" + | "duration" + | "timeMode" + | "motivation"; +export type CollectionOmittedDescriptive = "language"; +export type CollectionOmittedStructural = "structures"; +export type CollectionOmittedLinking = "start" | "supplementary"; + +export type CollectionTechnical = OmitProperties; +export type CollectionDescriptive = OmitProperties; +export type CollectionStructural = OmitProperties, CollectionOmittedStructural>; +export type CollectionLinking = OmitProperties; + +interface _Collection + extends + SomeRequired, + SomeRequired, + SomeRequired, + Partial, + NavPlaceExtension, + JsonLDContext { + type: "Collection"; +} + +export type Collection = Prettify<_Collection>; + +export type CollectionItemSchemas = "Collection" | "Manifest"; diff --git a/src/presentation-3/types/legacy/src/resources/contentResource.d.ts b/src/presentation-3/types/legacy/src/resources/contentResource.d.ts new file mode 100644 index 0000000..ddd770d --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/contentResource.d.ts @@ -0,0 +1,17 @@ +import { EmbeddedResource, ExternalResourceTypes, ExternalWebResource, SpecificResource } from "./annotation"; +import { Service } from "./service"; +import { Prettify } from "../utility"; + +export type IIIFExternalWebResource = Prettify< + ExternalWebResource & { + type: ExternalResourceTypes | string; + height?: number; + width?: number; + service?: Service[]; + duration?: number; + } +>; + +export type ContentResourceString = string; + +export type ContentResource = EmbeddedResource | ExternalWebResource | SpecificResource | IIIFExternalWebResource; diff --git a/src/presentation-3/types/legacy/src/resources/manifest.d.ts b/src/presentation-3/types/legacy/src/resources/manifest.d.ts new file mode 100644 index 0000000..331660f --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/manifest.d.ts @@ -0,0 +1,38 @@ +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { StructuralProperties } from "../iiif/structural"; +import { LinkingProperties } from "../iiif/linking"; +import { JsonLDContext, OmitProperties, Prettify, SomeRequired } from "../utility"; +import { Canvas } from "./canvas"; +import { NavPlaceExtension } from "../extensions/nav-place"; + +export type ManifestItems = Canvas; + +export type ManifestOmittedTechnical = + | "format" + | "profile" + | "height" + | "width" + | "duration" + | "timeMode" + | "motivation"; +export type ManifestOmittedDescriptive = "language"; +export type ManifestOmittedLinking = "supplementary"; + +export type ManifestTechnical = OmitProperties; +export type ManifestDescriptive = OmitProperties; +export type ManifestStructural = StructuralProperties; +export type ManifestLinking = OmitProperties; + +export type Manifest = Prettify< + SomeRequired & + SomeRequired & + SomeRequired & + Partial & + NavPlaceExtension & + JsonLDContext & { + type: "Manifest"; + } +>; + +type ManifestItemSchemas = "Canvas"; diff --git a/src/presentation-3/types/legacy/src/resources/provider.d.ts b/src/presentation-3/types/legacy/src/resources/provider.d.ts new file mode 100644 index 0000000..559b5e8 --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/provider.d.ts @@ -0,0 +1,11 @@ +import { InternationalString } from "../iiif/descriptive"; +import { ContentResource } from "./contentResource"; + +export type ResourceProvider = { + id: string; + type: "Agent"; + label: InternationalString; + homepage?: ContentResource[]; + logo?: ContentResource[]; + seeAlso?: ContentResource[]; +}; diff --git a/src/presentation-3/types/legacy/src/resources/range.d.ts b/src/presentation-3/types/legacy/src/resources/range.d.ts new file mode 100644 index 0000000..27d3ed4 --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/range.d.ts @@ -0,0 +1,33 @@ +import { TechnicalProperties } from "../iiif/technical"; +import { DescriptiveProperties } from "../iiif/descriptive"; +import { StructuralProperties } from "../iiif/structural"; +import { LinkingProperties } from "../iiif/linking"; +import { OmitProperties, Prettify, SomeRequired } from "../utility"; +import { Reference } from "../reference"; +import { Canvas } from "./canvas"; +import { SpecificResource } from "./annotation"; +import { NavPlaceExtension } from "../extensions/nav-place"; + +export type RangeItems = Range | Canvas | string | SpecificResource>; + +export type RangeOmittedTechnical = "format" | "profile" | "height" | "width" | "duration" | "timeMode" | "motivation"; +export type RangeOmittedDescriptive = "language"; +export type RangeOmittedStructural = "structures"; +export type RangeOmittedLinking = "services"; + +export type RangeTechnical = OmitProperties; +export type RangeDescriptive = OmitProperties; +export type RangeStructural = OmitProperties, RangeOmittedStructural>; +export type RangeLinking = OmitProperties; + +interface _Range + extends + SomeRequired, + SomeRequired, + Partial, + NavPlaceExtension, + Partial { + type: "Range"; +} + +export type Range = Prettify<_Range>; diff --git a/src/presentation-3/types/legacy/src/resources/service.d.ts b/src/presentation-3/types/legacy/src/resources/service.d.ts new file mode 100644 index 0000000..7d92c7b --- /dev/null +++ b/src/presentation-3/types/legacy/src/resources/service.d.ts @@ -0,0 +1,8 @@ +import { AuthProbeService2 } from "../services/auth-2"; +import { AuthService } from "../services/auth-service"; +import { GeoJsonService } from "../services/geo-json"; +import { ImageService } from "../services/image-service"; +import { SearchService } from "../services/search"; +import { Search2Service } from "../services/search-2"; + +export type Service = AuthService | GeoJsonService | ImageService | SearchService | AuthProbeService2 | Search2Service; diff --git a/src/presentation-3/types/legacy/src/services/auth-2.d.ts b/src/presentation-3/types/legacy/src/services/auth-2.d.ts new file mode 100644 index 0000000..1fbf49b --- /dev/null +++ b/src/presentation-3/types/legacy/src/services/auth-2.d.ts @@ -0,0 +1,168 @@ +// Based on IIIF Auth v2.0 +// https://iiif.io/api/auth/2.0/ + +import { InternationalString } from "../iiif/descriptive"; + +/** + * The user will be required to visit the user interface of an external authentication system + */ +type Active = "active"; + +/** + * The user will not be required to interact with an authentication system, the client is expected to use the access service automatically. + */ +type Kiosk = "kiosk"; + +/** + * The user is expected to have already acquired the authorizing aspect, and no access service will be used. + */ +type External = "external"; + +export type AuthAccessService2 = AuthAccessService2_Active | AuthAccessService2_Kiosk | AuthAccessService2_External; + +interface AuthAccessService2_Common { + id: string; + type: "AuthAccessService2"; + + // This wasn't clear in the spec. It looked like only `active` was allow to have a logout service. + service: + | [AuthAccessTokenService2] + | [AuthAccessTokenService2, AuthLogoutService2] + | [AuthLogoutService2, AuthAccessTokenService2]; +} + +/** + * This pattern requires the user to interact in the opened tab. Typical scenarios are: + * + * - The user interface presents a login process, in which the user provides credentials to the + * content provider and the content provider sets an access cookie. + * - The user interface presents a usage agreement, a content advisory notice, or some other form + * of clickthrough interaction in which credentials are not required, but deliberate confirmation of + * terms is required, to set an access cookie. + * - The access service stores the result of a user interaction in browser local storage, which is + * later available to the token service. + * + */ +export interface AuthAccessService2_Active extends AuthAccessService2_Common { + profile: "active"; + /** The name of the access service */ + label: InternationalString; + /** Heading text to be shown with the user interface element that opens the access service. */ + heading?: InternationalString; + /** Additional text to be shown with the user interface element that opens the access service. */ + note?: InternationalString; + /** The label for the user interface element that opens the access service. */ + confirmLabel?: InternationalString; + + // See note above. + // service: + // | [AuthAccessTokenService2] + // | [AuthAccessTokenService2, AuthLogoutService2] + // | [AuthLogoutService2, AuthAccessTokenService2]; +} + +/** + * This pattern requires no user interaction in the opened tab. This pattern supports exhibitions, + * in-gallery interactives and other IIIF user experiences on managed devices that are configured in + * advance. + * + * For the kiosk pattern the interaction has the following steps: + * + * - There is no user interaction before opening the access service URI. + * - he client must immediately open the URI from id with the added origin query parameter. This + * must be done in a new window or tab. + * - After the opened window or tab is closed, the client must then use the related access token + * service, as described below. + * + * Non-user-driven clients simply access the URI from id to obtain any access cookie, and then use the related access token service, as described below. + */ +export interface AuthAccessService2_Kiosk extends AuthAccessService2_Common { + profile: "kiosk"; + // See note above. + // service: [AuthAccessTokenService2]; + + // This isn't mentioned in the specification, but is in the demos. + label: InternationalString; +} + +export interface AuthAccessService2_External extends AuthAccessService2_Common { + profile: "external"; + /** The name of the access service */ + label: InternationalString; + + // See note above. + // service: [AuthAccessTokenService2]; +} + +export interface AuthAccessTokenService2 { + id: string; + type: "AuthAccessTokenService2"; + /** Default heading text to render if an error occurs. If the access token service returns an error object, the heading property of the error object must be used instead if supplied */ + errorHeading?: InternationalString; + /** Default additional text to render if an error occurs. If the access token service returns an error object, the note property of the error object must be used instead if supplied. If present, errorHeading must also be present */ + errorNote?: InternationalString; +} + +export interface AuthAccessToken2 { + "@context": "http://iiif.io/api/auth/2/context.json"; + type: "AuthAccessToken2"; + /** The message identifier supplied by the client. */ + messageId: string; + /** The access token to be sent to the probe service. */ + accessToken: string; + /** The number of seconds until the token ceases to be valid. */ + expiresIn: number; +} + +export interface AuthAccessTokenError2 { + "@context": "http://iiif.io/api/auth/2/context.json"; + type: "AuthAccessTokenError2"; + profile: "invalidRequest" | "invalidOrigin" | "missingAspect" | "expiredAspect" | "unavailable"; + /** The message identifier supplied by the client. */ + messageId: string; + heading?: InternationalString; + note?: InternationalString; +} + +export interface AuthProbeService2 { + id: string; + type: "AuthProbeService2"; + profile?: string; // For compatibility with other services + service: AuthAccessService2[]; + errorHeading?: InternationalString; + errorNote?: InternationalString; +} + +export interface Auth2LocationResource { + id: string; + type: string; + service: any[]; +} + +export interface Auth2SubstituteResource { + id: string; + label: InternationalString; + type: string; + service: AuthProbeService2[]; +} + +export interface AuthProbeResult2 { + "@context": "http://iiif.io/api/auth/2/context.json"; + + type: "AuthProbeResult2"; + status: number; + substitute: Auth2SubstituteResource; + location: Auth2LocationResource; + heading: InternationalString; + note: InternationalString; +} + +export interface AuthLogoutService2 { + id: string; + type: "AuthLogoutService2"; + label: InternationalString; +} + +export type AccessTokenServiceRequest = + | `${S["id"]}?origin=${Origin}&messageId=${string}` + | `${S["id"]}?&messageId=${string}&origin=${Origin}`; diff --git a/src/presentation-3/types/legacy/src/services/auth-service.d.ts b/src/presentation-3/types/legacy/src/services/auth-service.d.ts new file mode 100644 index 0000000..f4a507f --- /dev/null +++ b/src/presentation-3/types/legacy/src/services/auth-service.d.ts @@ -0,0 +1,64 @@ +import { IdOrAtId, Prettify } from "../utility"; + +export type AuthAccessTokenService = Prettify< + IdOrAtId & { + profile: "http://iiif.io/api/auth/1/token" | "AuthTokenService1"; + } +>; + +export type AuthAccessTokenServiceResponse = { + accessToken: string; + expiresIn?: number; +}; + +export type AuthAccessTokenServiceError = { + error: "invalidRequest" | "missingCredentials" | "invalidCredentials" | "invalidOrigin" | "unavailable"; + description?: string; +}; + +type AuthAbstractService = Prettify< + IdOrAtId & { + label: string; + confirmLabel?: string; + header?: string; + description?: string; + failureHeader?: string; + failureDescription?: string; + } +>; + +export type AuthClickThroughService = Prettify< + IdOrAtId & { + profile: "http://iiif.io/api/auth/1/clickthrough"; + service: AuthAccessTokenService; + } +>; + +export type AuthLogoutService = Prettify< + AuthAbstractService & { + profile: "http://iiif.io/api/auth/1/logout" | "AuthLogoutService1"; + } +>; + +export type AuthLoginService = Prettify< + AuthAbstractService & { + profile: "http://iiif.io/api/auth/1/login" | "AuthCookieService1"; + service: Array; + } +>; + +export type AuthKioskService = Prettify< + AuthAbstractService & { + profile: "http://iiif.io/api/auth/1/kiosk"; + service: AuthAccessTokenService; + } +>; + +export type AuthExternalService = Prettify< + AuthAbstractService & { + profile: "http://iiif.io/api/auth/1/external"; + service: AuthAccessTokenService; + } +>; + +export type AuthService = AuthLoginService | AuthClickThroughService | AuthKioskService | AuthExternalService; diff --git a/src/presentation-3/types/legacy/src/services/geo-json.d.ts b/src/presentation-3/types/legacy/src/services/geo-json.d.ts new file mode 100644 index 0000000..9fe4d4b --- /dev/null +++ b/src/presentation-3/types/legacy/src/services/geo-json.d.ts @@ -0,0 +1,16 @@ +import { Prettify } from "../utility"; +import type { GeoJSON } from "../../../../../shared/geojson"; +export type GeoJsonService = Prettify< + { + "@context": "http://geojson.org/geojson-ld/geojson-context.jsonld"; + profile: never; + } & ( + | { + "@id": string; + } + | { + id: string; + } + ) & + Partial +>; diff --git a/src/presentation-3/types/legacy/src/services/image-service.d.ts b/src/presentation-3/types/legacy/src/services/image-service.d.ts new file mode 100644 index 0000000..35c6776 --- /dev/null +++ b/src/presentation-3/types/legacy/src/services/image-service.d.ts @@ -0,0 +1,372 @@ +/// + +import { ContentResource } from "../resources/contentResource"; +import { Service } from "../resources/service"; + +export type ImageServiceProfile = + | "http://library.stanford.edu/iiif/image-api/compliance.html#level0" + | "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + | "http://library.stanford.edu/iiif/image-api/compliance.html#level2" + | "http://library.stanford.edu/iiif/image-api/conformance.html#level0" + | "http://library.stanford.edu/iiif/image-api/conformance.html#level1" + | "http://library.stanford.edu/iiif/image-api/conformance.html#level2" + | "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level0" + | "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1" + | "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2" + | "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level0" + | "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + | "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level2" + | "http://iiif.io/api/image/1/level0.json" + | "http://iiif.io/api/image/1/profiles/level0.json" + | "http://iiif.io/api/image/1/level1.json" + | "http://iiif.io/api/image/1/profiles/level1.json" + | "http://iiif.io/api/image/1/level2.json" + | "http://iiif.io/api/image/1/profiles/level2.json" + | "http://iiif.io/api/image/2/level0.json" + | "http://iiif.io/api/image/2/profiles/level0.json" + | "http://iiif.io/api/image/2/level1.json" + | "http://iiif.io/api/image/2/profiles/level1.json" + | "http://iiif.io/api/image/2/level2.json" + | "http://iiif.io/api/image/2/profiles/level2.json" + | "http://iiif.io/api/image/3/level0.json" + | "http://iiif.io/api/image/3/level1.json" + | "http://iiif.io/api/image/3/level2.json" + | "level0" + | "level1" + | "level2"; + +/** + * The base URI of the service will redirect to the image information document. + */ +type BaseUriRedirect = "baseUriRedirect"; +/** + * The canonical image URI HTTP link header is provided on image responses. + */ +type CanonicalLinkHeader = "canonicalLinkHeader"; +/** + * The CORS HTTP headers are provided on all responses. + */ +type Cors = "cors"; +/** + * The JSON-LD media type is provided when requested. + */ +type JsonldMediaType = "jsonldMediaType"; +/** + * The image may be rotated around the vertical axis, resulting in a left-to-right mirroring of the content. + */ +type Mirroring = "mirroring"; +/** + * The profile HTTP link header is provided on image responses. + */ +type ProfileLinkHeader = "profileLinkHeader"; +/** + * Regions of the full image may be requested by percentage. + */ +type RegionByPct = "regionByPct"; +/** + * Regions of the full image may be requested by pixel dimensions. + */ +type RegionByPx = "regionByPx"; +/** + * A square region may be requested, where the width and height are equal to the shorter dimension of the full image. + */ +type RegionSquare = "regionSquare"; +/** + * Image rotation may be requested using values other than multiples of 90 degrees. + */ +type RotationArbitrary = "rotationArbitrary"; +/** + * Image rotation may be requested in multiples of 90 degrees. + */ +type RotationBy90s = "rotationBy90s"; +/** + * Image size may be requested in the form !w,h. + */ +type SizeByConfinedWh = "sizeByConfinedWh"; +/** + * Image size may be requested in the form ,h. + */ +type SizeByH = "sizeByH"; +/** + * Images size may be requested in the form pct:n. + */ +type SizeByPct = "sizeByPct"; +/** + * Image size may be requested in the form w,. + */ +type SizeByW = "sizeByW"; +/** + * Image size may be requested in the form w,h. + */ +type SizeByWh = "sizeByWh"; +/** + * Image sizes prefixed with ^ may be requested. + */ +type SizeUpscaling = "sizeUpscaling"; + +export type Image3ExtraFeatures = + | BaseUriRedirect + | CanonicalLinkHeader + | Cors + | JsonldMediaType + | Mirroring + | ProfileLinkHeader + | RegionByPct + | RegionByPx + | RegionSquare + | RotationArbitrary + | RotationBy90s + | SizeByConfinedWh + | SizeByH + | SizeByPct + | SizeByW + | SizeByWh + | SizeUpscaling; + +/** + * The JSON objects in the sizes array have the properties in the following table. Image requests for these sizes + * should have a region parameter of full, size parameter in the canonical w,h form, and rotation of 0. Thus, the full + * URL for an image with default quality in jpg format would be: + * {scheme}://{server}/{prefix}/{identifier}/full/{width},{height}/0/default.jpg + */ +export type ImageSize = { + /** + * The type of the object. If present, the value must be the string Size. + */ + type?: "Size"; + /** + * The width in pixels of the image to be requested, given as an integer. + */ + width: number; + /** + * The height in pixels of the image to be requested, given as an integer. + */ + height: number; +}; + +/** + * An array of JSON objects describing the parameters to use to request regions of the image (tiles) that are efficient + * for the server to deliver. Each description gives a width, optionally a height for non-square tiles, and a set of + * scale factors at which tiles of those dimensions are available. + */ +export type ImageTile = { + /** + * The type of the object. If present, the value must be the string Tile. + */ + type?: "Tile"; + /** + * The set of resolution scaling factors for the image’s predefined tiles, expressed as positive integers by which to + * divide the full size of the image. For example, a scale factor of 4 indicates that the service can efficiently + * deliver images at 1/4 or 25% of the height and width of the full image. A particular scale factor value should + * appear only once in the tiles array. + */ + scaleFactors: number[]; + /** + * The width in pixels of the predefined tiles to be requested, given as an integer. + */ + width: number; + /** + * The height in pixels of the predefined tiles to be requested, given as an integer. If it is not specified in the + * JSON, then it defaults to the same as width, resulting in square tiles. + */ + height?: number; + /** + * Optional and non-standard property. The maximum width of the image. + */ + maxWidth?: number; + + /** + * Optional and non-standard property. The maximum height of the image. + */ + maxHeight?: number; +}; + +export type ImageProfile = + | ImageServiceProfile + | { + "@context"?: string; + "@type"?: "iiif:ImageProfile"; + type?: "ImageProfile"; + formats?: string[]; + qualities?: string[]; + supports?: string[]; + maxArea?: number; + maxHeight?: number; + maxWidth?: number; + }; + +export interface ImageService2 { + "@context"?: string | string[]; + "@id": string; + "@type": "ImageService2"; + profile: ImageProfile | ImageProfile[]; + protocol?: string; + width?: number | null; + height?: number | null; + attribution?: string; + sizes?: ImageSize[]; + tiles?: ImageTile[]; + logo?: ContentResource | ContentResource[]; // Presentation 2 service may have non-array. + service?: Service[]; +} + +export interface ImageService3 { + /** + * The @context property should appear as the very first key-value pair of the JSON representation. Its value must be + * either the URI http://iiif.io/api/image/3/context.json or a JSON array with the URI + * http://iiif.io/api/image/3/context.json as the last item. The @context tells Linked Data processors how to + * interpret the image information. If extensions are used then their context definitions should be included in + * this top-level @context property. + */ + "@context"?: string | string[]; + + /** + * The base URI of the image as defined in URI Syntax, including scheme, server, prefix and identifier without a + * trailing slash. + */ + id: string; + + /** + * The type for the Image API. The value must be the string ImageService3. + */ + type: "ImageService3"; + + /** + * A string indicating the highest compliance level which is fully supported by the service. The value must be one of + * level0, level1, or level2. + */ + profile: "level0" | "level1" | "level2"; + + /** + * The URI http://iiif.io/api/image which can be used to determine that the document describes an image service which + * is a version of the IIIF Image API. + */ + protocol?: string; + + /** + * The width in pixels of the full image, given as an integer. + */ + width?: number | null; + + /** + * The height in pixels of the full image, given as an integer. + */ + height?: number | null; + + /** + * The maximum width in pixels supported for this image. Clients must not expect requests with a width greater than + * this value to be supported. maxWidth must be specified if maxHeight is specified. + */ + maxWidth?: number | null; + + /** + * The maximum height in pixels supported for this image. Clients must not expect requests with a height greater than + * this value to be supported. If maxWidth is specified and maxHeight is not, then clients should infer that + * maxHeight = maxWidth. + */ + maxHeight?: number | null; + + /** + * The maximum area in pixels supported for this image. Clients must not expect requests with a width*height greater + * than this value to be supported. + */ + maxArea?: number | null; + + /** + * Attribution. + */ + attribution?: string; + + /** + * A string that identifies a license or rights statement that applies to the content of this image. The value of this + * property must be a string drawn from the set of Creative Commons license URIs, the RightsStatements.org rights + * statement URIs, or those added via the Registry of Known Extensions mechanism. The inclusion of this property is + * informative, and for example could be used to display an icon representing the rights assertions. + */ + rights?: string; + + /** + * An array of JSON objects with the height and width properties. These sizes specify preferred values to be provided + * in the w,h syntax of the size request parameter for scaled versions of the full image. In the case of servers that + * do not support requests for arbitrary sizes, these may be the only sizes available. A request constructed with the + * w,h syntax using these sizes must be supported by the server, even if arbitrary width and height are not. + */ + sizes?: ImageSize[]; + /** + * An array of JSON objects describing the parameters to use to request regions of the image (tiles) that are efficient + * for the server to deliver. Each description gives a width, optionally a height for non-square tiles, and a set of + * scale factors at which tiles of those dimensions are available. + */ + tiles?: ImageTile[]; + + /** + * Legacy. + * @deprecated + */ + logo?: ContentResource[]; // Presentation 2 service may have non-array. + + /** + * An array of strings that are the preferred format parameter values, arranged in order of preference. The format + * parameter values listed must be among those specified in the referenced profile or listed in the extraFormats + * property + */ + extraFormats?: string[]; + + /** + * An array of strings that can be used as the quality parameter, in addition to default. + */ + extraQualities?: string[]; + + /** + * An array of strings identifying features supported by the service, in addition to the ones specified in the + * referenced profile. These strings are defined either in the table below or by registering an extension. + */ + extraFeatures?: Image3ExtraFeatures[]; + + /** + * Optional services + */ + service?: Service[]; +} + +// General purpose image service definition. +export interface ImageService { + /** + * The @context property should appear as the very first key-value pair of the JSON representation. Its value must be + * either the URI http://iiif.io/api/image/3/context.json or a JSON array with the URI + * http://iiif.io/api/image/3/context.json as the last item. The @context tells Linked Data processors how to + * interpret the image information. If extensions are used then their context definitions should be included in + * this top-level @context property. + */ + "@context"?: string | string[]; + "@id"?: string; + id: string; + type?: "ImageService1" | "ImageService2" | "ImageService3"; + "@type"?: "ImageService1" | "ImageService2" | "ImageService3"; + profile: ImageProfile | ImageProfile[]; + protocol?: string; + width?: number | null; + height?: number | null; + maxWidth?: number | null; + maxHeight?: number | null; + maxArea?: number | null; + attribution?: string; + /** + * An array of JSON objects with the height and width properties. These sizes specify preferred values to be provided + * in the w,h syntax of the size request parameter for scaled versions of the full image. In the case of servers that + * do not support requests for arbitrary sizes, these may be the only sizes available. A request constructed with the + * w,h syntax using these sizes must be supported by the server, even if arbitrary width and height are not. + */ + sizes?: ImageSize[]; + /** + * An array of JSON objects describing the parameters to use to request regions of the image (tiles) that are efficient + * for the server to deliver. Each description gives a width, optionally a height for non-square tiles, and a set of + * scale factors at which tiles of those dimensions are available. + */ + tiles?: ImageTile[]; + logo?: ContentResource[]; // Presentation 2 service may have non-array. + extraFormats?: string[]; + extraQualities?: string[]; + extraFeatures?: string[]; + service?: Service[]; +} diff --git a/src/presentation-3/types/legacy/src/services/search-2.d.ts b/src/presentation-3/types/legacy/src/services/search-2.d.ts new file mode 100644 index 0000000..2081dda --- /dev/null +++ b/src/presentation-3/types/legacy/src/services/search-2.d.ts @@ -0,0 +1,108 @@ +// Based on: https://iiif.io/api/search/2.0/ + +import { InternationalString } from "../iiif/descriptive"; +import { Annotation, TextQuoteSelector } from "../resources/annotation"; +import { AnnotationCollection } from "../resources/annotationCollection"; +import { AnnotationPage } from "../resources/annotationPage"; +import { Prettify } from "../utility"; + +// https://iiif.io/api/registry/motivations/ +export interface Search2QueryParams { + q?: string; + motivation?: "contextualizing" | "highlighting" | "commenting" | "tagging"; + date?: string; + user?: string; +} + +export interface Search2AutocompleteQueryParams extends Search2QueryParams { + min?: number; +} + +export type Search2AnnotationPage = Prettify< + AnnotationPage & { + /** The Annotation Page must have a partOf property. The value is a JSON object, which is the embedded Annotation Collection resource, following the structure defined below. */ + partOf: Prettify< + AnnotationCollection & { + total?: number; + first: { id: string; type: "AnnotationPage" }; + last?: { id: string; type: "AnnotationPage" }; + } + >; + /** + * The Annotation Page may have a startIndex property, which is the position of the first Annotation in this page’s items list, relative to the overall ordering of Annotations across all pages within the Annotation Collection. The value is a zero-based integer. + */ + startIndex?: number; + next?: { id: string; type: "AnnotationPage" }; + prev?: { id: string; type: "AnnotationPage" }; + /** If the server has ignored any of the parameters in the request, then an ignored property must be present, and must contain a list of the ignored parameters. Servers may omit ignored query parameters from the id of the Annotation Page. */ + ignored?: string[]; + /** + * Clients may require additional information about the matches in order to generate a rich user experience for search. This additional + * information about matches in search results is provided by further Annotations in a property called annotations. This structure + * maintains the distinction in the Presentation API, where the main content annotations are listed in items and additional + * annotations such as comments are listed in annotations. The value of annotations is an array containing a single Annotation + * Page, in which all of the Annotations reference Annotations in the items property. + */ + annotations?: AnnotationPage[]; + } +>; + +export type Search2ContextualizingAnnotation = Prettify< + Annotation & { + motivation: "contextualizing"; + target: { + type: "SpecificResource"; + source: string; + selector: TextQuoteSelector[]; + }; + } +>; + +export interface TermPage { + "@context": "http://iiif.io/api/search/2/context.json"; + type: "TermPage"; + ignored?: string[]; + items: Term; +} + +/* +Term resources have the following properties: + +type - The Term may have a type property. If present, the value must be Term. The use of the property is not recommended to keep the response shorter. +value - The Term must have a value property. The value is a the string form of the term. +total - The Term may have a total property. The value is an integer, which is the number of times the term occurs in the index. +label - The Term may have a label property. The value is a JSON object which follows the definition of a language map. This label should be displayed to the user instead of the value, for example when the value is a URI or a string that has been manipulated with stemming or other normalization. +language - The Term may have a language property. The value is a string conforming to the BCP 47 language code specification, and gives the language of the term string in the value property. +service - The Term may have a service property. The value is an array of JSON objects, where each object is a Service. The Term must include an entry for the full link to the related SearchService2, when the value cannot be used directly in the q parameter. In this case, the id of the service is the full link including the q and other parameters. +*/ +export interface Term { + /** The Term may have a type property. If present, the value must be Term. The use of the property is not recommended to keep the response shorter. */ + type: "Term"; + /** The Term must have a value property. The value is a the string form of the term. */ + value: string; + /** The Term may have a total property. The value is an integer, which is the number of times the term occurs in the index. */ + total?: number; + /** The Term may have a label property. The value is a JSON object which follows the definition of a language map. This label should be displayed to the user instead of the value, for example when the value is a URI or a string that has been manipulated with stemming or other normalization. */ + label?: InternationalString; + /** The Term may have a language property. The value is a string conforming to the BCP 47 language code specification, and gives the language of the term string in the value property. */ + language?: string; + /** The Term may have a service property. The value is an array of JSON objects, where each object is a Service. The Term must include an entry for the full link to the related SearchService2, when the value cannot be used directly in the q parameter. In this case, the id of the service is the full link including the q and other parameters. */ + service?: Search2Service[]; +} + +// An alias +export type Search2AutocompleteResponse = TermPage; + +export interface AutoCompleteService2 { + id: string; + type: "AutoCompleteService2"; + label?: InternationalString; +} + +export interface Search2Service { + id: string; + type: "SearchService2"; + profile?: string; // For compatibility with other services + label?: InternationalString; + service?: [AutoCompleteService2]; +} diff --git a/src/presentation-3/types/legacy/src/services/search.d.ts b/src/presentation-3/types/legacy/src/services/search.d.ts new file mode 100644 index 0000000..e3caae7 --- /dev/null +++ b/src/presentation-3/types/legacy/src/services/search.d.ts @@ -0,0 +1,79 @@ +import { IdOrAtId, Prettify } from "../utility"; + +export type SearchService = IdOrAtId & { + "@context": "http://iiif.io/api/search/1/context.json"; + profile: "http://iiif.io/api/search/1/search" | "SearchService1"; +}; + +export type SearchServiceQueryParams = { + q?: string; + motivation?: string; + date?: string; + user?: string; +}; + +export type SearchServiceAutocomplete = Prettify< + IdOrAtId & { + profile: "http://iiif.io/api/search/1/autocomplete" | "AutoCompleteService1"; + } +>; + +export type SearchServiceAutocompleteQueryParams = Prettify< + SearchServiceQueryParams & { + q: string; + min?: number; + } +>; + +export type SearchServiceAutocompleteResponse = Prettify< + IdOrAtId & { + "@context": "http://iiif.io/api/search/1/context.json"; + "@type": "search:TermList"; + ignored: string[]; + terms: Array<{ + match: string; + url: string; + count?: number; + label?: string; + }>; + } +>; + +export type SearchServiceSearchResponse = { + "@context": "http://iiif.io/api/presentation/3/context.json" | string[]; + "@id": string; + "@type": "sc:AnnotationList"; + resources: Array<{ + "@id": string; + "@type": "oa:Annotation"; + motivation: string; + resource: SearchServiceCommonResources | any; // this is broad. + on: SearchServiceSearchCommonSelectors | any | Array | Array; + }>; + hits?: Array<{ + "@type": "search:Hit"; + annotations: string[]; + selectors: Array; + match?: string; + before?: string; + after?: string; + }>; +}; +export type SearchServiceCommonHitSelectors = { + "@type": "oa:TextQuoteSelector"; + exact: string; + prefix?: string; + suffix?: string; +}; + +export type SearchServiceSearchCommonSelectors = + | string + | { + "@id": string; + within: { "@id": string; type: string; label: string }; + }; + +export type SearchServiceCommonResources = { + "@type": "cnt:ContentAsText"; + chars: string; +}; diff --git a/src/presentation-3/types/legacy/src/utility.d.ts b/src/presentation-3/types/legacy/src/utility.d.ts new file mode 100644 index 0000000..f7094ae --- /dev/null +++ b/src/presentation-3/types/legacy/src/utility.d.ts @@ -0,0 +1,20 @@ +export type Required = Prettify } : T>; + +export type SomeRequired = Prettify< + (T extends object ? { [P in K]-?: NonNullable } : T) & Partial, Exclude>> +>; + +export type OmitProperties = Prettify>>; + +export type JsonLDContext = { + "@context"?: string | string[]; +}; + +export type IdOrAtId = { id: T } | { "@id": T }; + +interface Nothing {} +type Union = T | (U & Nothing); + +export type LiteralUnion = T | Union; + +export type Prettify = { [K in keyof T]: T[K] } & unknown; diff --git a/src/presentation-3/utilities.ts b/src/presentation-3/utilities.ts index e911a2a..2cd6241 100644 --- a/src/presentation-3/utilities.ts +++ b/src/presentation-3/utilities.ts @@ -1,12 +1,12 @@ -import { CompatibleStore, NormalizedEntity } from './serialize'; -import { toRef } from '../shared/to-ref'; +import { CompatibleStore, NormalizedEntity } from "./serialize"; +import { toRef } from "../shared/to-ref"; export const WILDCARD = {}; -export const HAS_PART = 'iiif-parser:hasPart'; -export const PART_OF = 'iiif-parser:partOf'; -export const IS_EXTERNAL = 'iiif-parser:isExternal'; -export const UNSET = '__$UNSET$__'; -export const UNWRAP = '__$UNWRAP$__'; +export const HAS_PART = "iiif-parser:hasPart"; +export const PART_OF = "iiif-parser:partOf"; +export const IS_EXTERNAL = "iiif-parser:isExternal"; +export const UNSET = "__$UNSET$__"; +export const UNWRAP = "__$UNWRAP$__"; export const EMPTY = []; // Prevent accidental mutation @@ -24,11 +24,11 @@ export function isWildcard(object: any) { } export function frameResource(resource: any, framing: any) { - if (framing && framing['@explicit']) { + if (framing && framing["@explicit"]) { const newEntity: any = {}; const keys = Object.keys(framing); for (const key of keys) { - if (key === PART_OF || key === '@explicit') { + if (key === PART_OF || key === "@explicit") { continue; } if (isWildcard(framing[key])) { @@ -56,7 +56,12 @@ export function resolveIfExists( const request = state.requests[ref.id]; // Return the resource. const resourceType = ref.type || state.mapping[ref.id]; - if (!resourceType || (request && request.resourceUri && (!state.entities[resourceType] || !state.entities[resourceType]![request.resourceUri]))) { + if ( + !resourceType || + (request && + request.resourceUri && + (!state.entities[resourceType] || !state.entities[resourceType]![request.resourceUri])) + ) { // Continue refetching resource, this is an invalid state. return [undefined, undefined]; } diff --git a/src/presentation-4-normalized/index.ts b/src/presentation-4-normalized/index.ts new file mode 100644 index 0000000..267f746 --- /dev/null +++ b/src/presentation-4-normalized/index.ts @@ -0,0 +1 @@ +export type * from "./types"; diff --git a/src/presentation-4-normalized/types/index.ts b/src/presentation-4-normalized/types/index.ts new file mode 100644 index 0000000..f3fc103 --- /dev/null +++ b/src/presentation-4-normalized/types/index.ts @@ -0,0 +1,88 @@ +export type * from "./legacy/index"; + +import type { + AgentNormalized, + AnnotationCollectionNormalized, + AnnotationNormalized, + AnnotationPageNormalized, + CanvasNormalized, + CollectionNormalized, + ContentResourceNormalized, + ManifestNormalized, + NormalizedEntityBase, + NormalizedFramingPart, + NormalizedLinkedEntity, + NormalizedReference, + RangeNormalized, + SceneNormalized, + ServiceNormalized, + SpecificResourceNormalized, + TimelineNormalized, +} from "./legacy/index"; + +export interface SelectorNormalized extends NormalizedEntityBase { + type: string; + selectors: readonly NormalizedReference[]; +} + +export interface QuantityNormalized extends NormalizedEntityBase { + type: "Quantity"; +} + +export interface TransformNormalized extends NormalizedEntityBase { + type: string; +} + +export type NormalizedEntity = + | CollectionNormalized + | ManifestNormalized + | TimelineNormalized + | CanvasNormalized + | SceneNormalized + | AnnotationPageNormalized + | AnnotationCollectionNormalized + | AnnotationNormalized + | ContentResourceNormalized + | SpecificResourceNormalized + | RangeNormalized + | ServiceNormalized + | SelectorNormalized + | AgentNormalized + | QuantityNormalized + | TransformNormalized; + +export type Presentation4Entities = { + Collection: Record; + Manifest: Record; + Timeline: Record; + Canvas: Record; + Scene: Record; + AnnotationPage: Record; + AnnotationCollection: Record; + Annotation: Record; + ContentResource: Record; + Range: Record; + Service: Record; + Selector: Record; + Agent: Record; + Quantity: Record; + Transform: Record; +}; + +export type Presentation4MappingType = keyof Presentation4Entities; + +export type Presentation4NormalizeResult = { + entities: Presentation4Entities; + resource: { id: string; type: Presentation4MappingType }; + mapping: Record; + diagnostics: Array<{ + code: string; + severity: "error" | "warning" | "info"; + message: string; + path: string; + resourceType?: string; + resourceId?: string; + specRef?: string; + }>; + sourceVersion: 2 | 3 | 4 | "unknown"; +}; diff --git a/src/presentation-4-normalized/types/legacy/iiif/technical-v4.d.ts b/src/presentation-4-normalized/types/legacy/iiif/technical-v4.d.ts new file mode 100644 index 0000000..bce5a10 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/iiif/technical-v4.d.ts @@ -0,0 +1,58 @@ +import type { MetadataItem } from "../../../../presentation-4/types/legacy/src/resources/contentResource"; + +export type NormalizedPrimitive = string | number | boolean | null; +export type NormalizedJsonValue = NormalizedPrimitive | NormalizedJsonValue[] | { [key: string]: NormalizedJsonValue }; + +export interface NormalizedReferenceObject { + id?: string; + type?: string; + [key: string]: NormalizedJsonValue | NormalizedReference | readonly NormalizedReference[] | undefined; +} + +export interface NormalizedSpecificResourceReference extends NormalizedReferenceObject { + type: "SpecificResource"; + source?: NormalizedReference | readonly NormalizedReference[]; + selector?: readonly NormalizedReference[]; + transform?: readonly NormalizedReference[]; + action?: readonly NormalizedReference[]; + purpose?: readonly string[]; + scope?: NormalizedReference | string | readonly (NormalizedReference | string)[]; + styleClass?: string; +} + +export type NormalizedReference = string | NormalizedReferenceObject | NormalizedSpecificResourceReference; + +export interface NormalizedFramingPart extends NormalizedReferenceObject { + "@explicit"?: boolean; + "iiif-parser:partOf"?: string; + [key: string]: + | NormalizedJsonValue + | NormalizedReference + | readonly NormalizedReference[] + | readonly NormalizedFramingPart[] + | undefined; +} + +export interface NormalizedEntityBase extends NormalizedReferenceObject { + "iiif-parser:hasPart"?: readonly NormalizedFramingPart[]; + [key: string]: + | NormalizedJsonValue + | NormalizedReference + | readonly NormalizedReference[] + | readonly NormalizedFramingPart[] + | undefined; +} + +export interface NormalizedLinkedEntity extends NormalizedEntityBase { + metadata: readonly MetadataItem[]; + provider: readonly NormalizedReference[]; + thumbnail: readonly NormalizedReference[]; + behavior: readonly string[]; + seeAlso: readonly NormalizedReference[]; + service: readonly NormalizedReference[]; + services: readonly NormalizedReference[]; + homepage: readonly NormalizedReference[]; + rendering: readonly NormalizedReference[]; + partOf: readonly NormalizedReference[]; + annotations: readonly NormalizedReference[]; +} diff --git a/src/presentation-4-normalized/types/legacy/index.d.ts b/src/presentation-4-normalized/types/legacy/index.d.ts new file mode 100644 index 0000000..b4ec04d --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/index.d.ts @@ -0,0 +1,24 @@ +export * from "../../../presentation-3-normalized/types/legacy/iiif/descriptive"; +export * from "../../../presentation-3-normalized/types/legacy/iiif/linking"; +export * from "../../../presentation-3-normalized/types/legacy/iiif/structural"; + +export type { + NormalizedReference, + NormalizedFramingPart, + NormalizedEntityBase, + NormalizedLinkedEntity, +} from "./iiif/technical-v4"; + +export type { CollectionNormalized } from "./resources/collection"; +export type { ManifestNormalized } from "./resources/manifest"; +export type { TimelineNormalized } from "./resources/timeline"; +export type { CanvasNormalized } from "./resources/canvas"; +export type { SceneNormalized } from "./resources/scene"; +export type { AnnotationPageNormalized } from "./resources/annotationPage"; +export type { AnnotationCollectionNormalized } from "./resources/annotationCollection"; +export type { AnnotationNormalized } from "./resources/annotation"; +export type { RangeNormalized } from "./resources/range"; +export type { ServiceNormalized } from "./resources/service"; +export type { AgentNormalized, ProviderNormalized } from "./resources/provider"; +export type { ContentResourceNormalized, SpecificResourceNormalized } from "./resources/contentResource"; +export type { SceneComponentNormalized } from "./resources/scene-components"; diff --git a/src/presentation-4-normalized/types/legacy/resources/annotation.d.ts b/src/presentation-4-normalized/types/legacy/resources/annotation.d.ts new file mode 100644 index 0000000..bd0ee3b --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/annotation.d.ts @@ -0,0 +1,8 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type AnnotationNormalized = NormalizedLinkedEntity & { + type: "Annotation"; + motivation: readonly string[]; + body: readonly NormalizedReference[]; + target: readonly NormalizedReference[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/annotationCollection.d.ts b/src/presentation-4-normalized/types/legacy/resources/annotationCollection.d.ts new file mode 100644 index 0000000..9fe2388 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/annotationCollection.d.ts @@ -0,0 +1,6 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type AnnotationCollectionNormalized = NormalizedLinkedEntity & { + type: "AnnotationCollection"; + items: readonly NormalizedReference[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/annotationPage.d.ts b/src/presentation-4-normalized/types/legacy/resources/annotationPage.d.ts new file mode 100644 index 0000000..da0e3fd --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/annotationPage.d.ts @@ -0,0 +1,6 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type AnnotationPageNormalized = NormalizedLinkedEntity & { + type: "AnnotationPage"; + items: readonly NormalizedReference[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/canvas.d.ts b/src/presentation-4-normalized/types/legacy/resources/canvas.d.ts new file mode 100644 index 0000000..d63b8f2 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/canvas.d.ts @@ -0,0 +1,6 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type CanvasNormalized = NormalizedLinkedEntity & { + type: "Canvas"; + items: readonly NormalizedReference[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/collection.d.ts b/src/presentation-4-normalized/types/legacy/resources/collection.d.ts new file mode 100644 index 0000000..3c1376a --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/collection.d.ts @@ -0,0 +1,6 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type CollectionNormalized = NormalizedLinkedEntity & { + type: "Collection"; + items: readonly NormalizedReference[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/contentResource.d.ts b/src/presentation-4-normalized/types/legacy/resources/contentResource.d.ts new file mode 100644 index 0000000..ce7d115 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/contentResource.d.ts @@ -0,0 +1,20 @@ +import type { NormalizedEntityBase, NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type SpecificResourceNormalized = NormalizedEntityBase & { + id?: string; + type: "SpecificResource"; + source?: NormalizedReference | NormalizedReference[]; + selector: readonly NormalizedReference[]; + transform: readonly NormalizedReference[]; + action: readonly NormalizedReference[]; +}; + +export type ContentResourceNormalized = NormalizedLinkedEntity & { + type: string; + language: readonly string[]; + items: readonly NormalizedReference[]; + selector: readonly NormalizedReference[]; + transform: readonly NormalizedReference[]; + action: readonly NormalizedReference[]; + provides: readonly string[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/manifest.d.ts b/src/presentation-4-normalized/types/legacy/resources/manifest.d.ts new file mode 100644 index 0000000..8fe5a90 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/manifest.d.ts @@ -0,0 +1,8 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type ManifestNormalized = NormalizedLinkedEntity & { + type: "Manifest"; + items: readonly NormalizedReference[]; + structures: readonly NormalizedReference[]; + start?: NormalizedReference | null; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/provider.d.ts b/src/presentation-4-normalized/types/legacy/resources/provider.d.ts new file mode 100644 index 0000000..69e5cb4 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/provider.d.ts @@ -0,0 +1,8 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type AgentNormalized = NormalizedLinkedEntity & { + type: "Agent"; + logo: readonly NormalizedReference[]; +}; + +export type ProviderNormalized = AgentNormalized; diff --git a/src/presentation-4-normalized/types/legacy/resources/range.d.ts b/src/presentation-4-normalized/types/legacy/resources/range.d.ts new file mode 100644 index 0000000..3e1617e --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/range.d.ts @@ -0,0 +1,6 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type RangeNormalized = NormalizedLinkedEntity & { + type: "Range"; + items: readonly NormalizedReference[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/scene-components.d.ts b/src/presentation-4-normalized/types/legacy/resources/scene-components.d.ts new file mode 100644 index 0000000..10874d0 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/scene-components.d.ts @@ -0,0 +1,14 @@ +import type { ContentResourceNormalized } from "./contentResource"; + +export type SceneComponentNormalized = ContentResourceNormalized & { + type: + | "PerspectiveCamera" + | "OrthographicCamera" + | "AmbientLight" + | "DirectionalLight" + | "PointLight" + | "SpotLight" + | "AmbientAudio" + | "PointAudio" + | "SpotAudio"; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/scene.d.ts b/src/presentation-4-normalized/types/legacy/resources/scene.d.ts new file mode 100644 index 0000000..334c229 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/scene.d.ts @@ -0,0 +1,6 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type SceneNormalized = NormalizedLinkedEntity & { + type: "Scene"; + items: readonly NormalizedReference[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/service.d.ts b/src/presentation-4-normalized/types/legacy/resources/service.d.ts new file mode 100644 index 0000000..7797d92 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/service.d.ts @@ -0,0 +1,6 @@ +import type { NormalizedEntityBase, NormalizedReference } from "../iiif/technical-v4"; + +export type ServiceNormalized = NormalizedEntityBase & { + type: string; + service?: readonly ServiceNormalized[]; +}; diff --git a/src/presentation-4-normalized/types/legacy/resources/timeline.d.ts b/src/presentation-4-normalized/types/legacy/resources/timeline.d.ts new file mode 100644 index 0000000..c522098 --- /dev/null +++ b/src/presentation-4-normalized/types/legacy/resources/timeline.d.ts @@ -0,0 +1,7 @@ +import type { NormalizedLinkedEntity, NormalizedReference } from "../iiif/technical-v4"; + +export type TimelineNormalized = NormalizedLinkedEntity & { + type: "Timeline"; + items: readonly NormalizedReference[]; + duration?: number; +}; diff --git a/src/presentation-4/README.md b/src/presentation-4/README.md new file mode 100644 index 0000000..9e78dcb --- /dev/null +++ b/src/presentation-4/README.md @@ -0,0 +1,400 @@ +# IIIF Presentation API 4.0 Implementation + +This directory contains the implementation of IIIF Presentation API 4.0 for the parser. Version 4.0 introduces significant new capabilities including 3D content support, enhanced temporal handling, and dynamic content states. + +## Overview + +The Presentation API 4.0 brings major architectural changes and new features: + +### Key New Features + +- **3D Content Support**: Scenes, Models, Cameras, Lights, Audio Emitters +- **Enhanced Container Types**: Timeline (temporal), Canvas (2D+temporal), Scene (3D+temporal) +- **Advanced Selectors**: PointSelector, WktSelector, AnimationSelector, etc. +- **Content States**: Dynamic scene modification and storytelling capabilities +- **Physical Dimensions**: Real-world scale mapping via `spatialScale` and `temporalScale` +- **Interactive Annotations**: `activating` motivation for user interactions +- **Enhanced Media Support**: Better audio/video handling with positioning + +### Breaking Changes from v3 + +1. **Container Model**: Canvas is now one of three container types (Timeline, Canvas, Scene) +2. **3D Coordinate System**: Right-handed Cartesian (positive Y up, positive X right, positive Z forward) +3. **New Required Properties**: Timeline requires `duration`, Scene may have `duration` +4. **Motivation Changes**: New `contentState` and `activating` motivations +5. **Behavior Enhancements**: New behavior values for 3D interactions and temporal control + +## Architecture + +### Directory Structure + +``` +presentation-4/ +├── README.md # This file +├── index.ts # Main exports +├── empty-types.ts # Default/empty entity definitions for v4 +├── normalize.ts # Normalization logic for v4 entities +├── traverse.ts # Traversal logic for v4 resources +├── serialize.ts # Base serialization utilities +├── serialize-presentation-4.ts # v4 output serialization +├── serialize-presentation-3.ts # v4→v3 downgrade serialization +├── upgrade-from-v3.ts # v3→v4 upgrade utilities +├── utilities.ts # v4-specific utility functions +├── strict-upgrade.ts # Validation and strict upgrading +└── types/ # TypeScript type definitions + ├── containers.ts # Timeline, Canvas, Scene types + ├── content-resources.ts # Model, Audio, Video, etc. + ├── scene-components.ts # Cameras, Lights, Audio Emitters + ├── selectors.ts # New selector types + ├── transforms.ts # Transform types + └── extended-properties.ts # New v4 properties +``` + +## Implementation Plan + +### Phase 1: Core Infrastructure (Foundation) + +**Goal**: Basic v4 parsing and normalization + +1. **Type Definitions** + - Define v4-specific TypeScript interfaces + - Extend base types for new containers (Timeline, Scene) + - Define 3D-specific types (Camera, Light, Transform, etc.) + +2. **Empty Types & Defaults** + - Create default objects for all new v4 entities + - Timeline, Scene, Camera, Light, AudioEmitter defaults + - New selector defaults (PointSelector, WktSelector, etc.) + +3. **Basic Normalization** + - Parse v4 JSON into normalized entities + - Handle new container types in traversal + - Basic validation of required properties + +4. **Utility Functions** + - 3D coordinate system utilities + - Physical dimension conversion helpers + - Content state resolution utilities + +**Deliverables:** + +- `types/*.ts` - All v4 type definitions +- `empty-types.ts` - Default entities +- `utilities.ts` - Core utilities +- Basic `normalize.ts` structure + +### Phase 2: Traversal & Serialization (Core Logic) + +**Goal**: Complete v4 processing pipeline + +1. **Enhanced Traversal** + - Support Timeline, Canvas, Scene traversal + - Handle 3D content resources (Models, Cameras, Lights) + - Process new selector types + - Content state annotation processing + +2. **Native v4 Serialization** + - Output clean v4 JSON + - Handle all new properties and structures + - Maintain annotation structure integrity + - Support content state serialization + +3. **Validation & Strict Upgrading** + - Validate v4 requirements + - Check coordinate system consistency + - Verify required properties for new containers + +**Deliverables:** + +- Complete `traverse.ts` +- `serialize-presentation-4.ts` +- `strict-upgrade.ts` +- Core `normalize.ts` implementation + +### Phase 3: Bidirectional Conversion (Compatibility) + +**Goal**: Seamless conversion between v3 and v4 + +1. **v3 → v4 Upgrade** + - Convert v3 Canvases to v4 Canvases + - Handle manifest structure changes + - Preserve all v3 functionality + - Add default v4 properties where needed + +2. **v4 → v3 Downgrade** + - Convert v4 back to v3 (excluding 3D features) + - Map Timelines to v3 Canvases with duration + - Strip 3D-only features gracefully + - Preserve semantic meaning where possible + - Handle content state graceful degradation + +3. **Compatibility Layer** + - Automatic detection of v3 vs v4 content + - Seamless API for consuming applications + - Migration utilities for existing data + +**Deliverables:** + +- `upgrade-from-v3.ts` +- `serialize-presentation-3.ts` (downgrade) +- Migration documentation +- Compatibility test suite + +### Phase 4: Advanced Features (Enhancement) + +**Goal**: Full v4 feature support + +1. **Content State Processing** + - Dynamic scene modification + - Scope-based content states + - Reset and cumulative behaviors + - Linear navigation support + +2. **3D Scene Composition** + - Nested scene support + - Transform application + - Camera and lighting management + - Audio positioning + +3. **Interactive Features** + - Activating annotation processing + - Animation selector support + - Hotspot and interaction handling + +4. **Physical Dimensions** + - Scale conversion utilities + - Real-world measurement support + - Cross-container scaling + +**Deliverables:** + +- Advanced content state processing +- 3D composition utilities +- Interaction handlers +- Physical dimension calculators + +## Conversion Strategy + +### v3 → v4 Upgrade + +```typescript +// Example upgrade logic +function upgradeManifestV3ToV4(v3Manifest: ManifestV3): ManifestV4 { + return { + ...v3Manifest, + "@context": "http://iiif.io/api/presentation/4/context.json", + items: v3Manifest.items.map((canvas) => upgradeCanvasV3ToV4(canvas)), + }; +} + +function upgradeCanvasV3ToV4(v3Canvas: CanvasV3): CanvasV4 { + return { + ...v3Canvas, + type: "Canvas", // Explicit container type + // duration preserved if present + // Add v4-specific defaults + }; +} +``` + +### v4 → v3 Downgrade + +```typescript +// Example downgrade logic +function downgradeManifestV4ToV3(v4Manifest: ManifestV4): ManifestV3 { + return { + ...v4Manifest, + "@context": "http://iiif.io/api/presentation/3/context.json", + items: v4Manifest.items + .filter(isV3Compatible) // Remove Scenes, unsupported features + .map((container) => downgradeContainerV4ToV3(container)), + }; +} + +function downgradeContainerV4ToV3(container: ContainerV4): CanvasV3 { + switch (container.type) { + case "Timeline": + // Convert Timeline to Canvas with duration, default dimensions + return { + ...container, + type: "Canvas", + width: 1, // Minimal dimensions for temporal content + height: 1, + duration: container.duration, + }; + case "Canvas": + // Direct mapping, remove v4-only properties + return stripV4Properties(container); + case "Scene": + // Scenes cannot be downgraded - would need special handling + throw new Error("Scene containers cannot be downgraded to v3"); + } +} +``` + +## Usage Examples + +### Parsing v4 Content + +```typescript +import { normalize as normalizeV4 } from "./presentation-4"; + +// Parse v4 manifest +const v4Manifest = await fetch("https://example.org/manifest-v4.json").then((r) => r.json()); +const { entities, resource, mapping } = normalizeV4(v4Manifest); + +// Access 3D scene +const scene = entities.Scene[resource.items[0].id]; +const cameras = scene.items.filter((item) => entities.Annotation[item.id]?.body?.type?.includes("Camera")); +``` + +### Converting Between Versions + +```typescript +import { upgradeFromV3, serialize } from "./presentation-4"; +import { serializeConfigPresentation3 } from "./serialize-presentation-3"; + +// Upgrade v3 to v4 +const v3Manifest = await fetch("https://example.org/manifest-v3.json").then((r) => r.json()); +const v4Normalized = upgradeFromV3(v3Manifest); + +// Downgrade v4 to v3 (excluding 3D features) +const v3Compatible = serialize(v4Normalized.entities, v4Normalized.resource, serializeConfigPresentation3); +``` + +### Working with 3D Content + +```typescript +// Process Scene with 3D models +const scene = entities.Scene[sceneId]; +const modelAnnotations = scene.items + .flatMap((page) => entities.AnnotationPage[page.id]?.items || []) + .map((annoId) => entities.Annotation[annoId]) + .filter((anno) => anno?.body?.type === "Model"); + +// Extract camera positions +const cameras = scene.items + .flatMap((page) => entities.AnnotationPage[page.id]?.items || []) + .map((annoId) => entities.Annotation[annoId]) + .filter((anno) => anno?.body?.type?.includes("Camera")) + .map((anno) => ({ + camera: anno.body, + position: anno.target.selector, // PointSelector with x,y,z + })); +``` + +## Configuration Options + +### Serialization Configs + +```typescript +// Native v4 output +import { serializeConfigPresentation4 } from "./serialize-presentation-4"; + +// v3 compatible output (downgrade) +import { serializeConfigPresentation3 } from "./serialize-presentation-3"; + +// Custom config with specific feature toggles +const customConfig = { + ...serializeConfigPresentation4, + stripUnsupported3DFeatures: true, + preserveContentStates: false, + downgradeScenesToCanvas: true, +}; +``` + +### Upgrade Options + +```typescript +interface UpgradeOptions { + preserveV3Semantics: boolean; // Keep v3-style behavior + addDefaultV4Properties: boolean; // Add v4 defaults + enableContentStates: boolean; // Process content state annotations + enable3DFeatures: boolean; // Support Scene containers +} +``` + +## Development Guidelines + +### Code Organization + +1. **Separation of Concerns**: Keep v3 and v4 completely separate +2. **Type Safety**: Use strict TypeScript for all v4 types +3. **Backwards Compatibility**: Always provide graceful degradation +4. **Testing**: Comprehensive test coverage for conversions + +### Naming Conventions + +- v4-specific files: `*-presentation-4.ts` +- Downgrade files: `*-presentation-3.ts` (in v4 directory) +- Upgrade utilities: `upgrade-from-v3.ts` +- Type files: `types/*.ts` + +### Error Handling + +- Graceful degradation for unsupported features +- Clear error messages for invalid v4 content +- Validation warnings for missing required properties +- Conversion logs for debugging + +## Testing Strategy + +### Unit Tests + +- Individual function testing for normalization +- Serialization round-trip testing +- Type validation testing + +### Integration Tests + +- Full manifest processing pipelines +- v3↔v4 conversion accuracy +- Real-world manifest compatibility + +### Performance Tests + +- Large manifest processing +- Memory usage optimization +- Conversion speed benchmarks + +### Compatibility Tests + +- Cross-version feature matrix +- Edge case handling +- Error condition testing + +## Future Considerations + +### Potential Shared Utilities + +After initial implementation, consider extracting shared utilities: + +- **Language map processing**: Common between v3/v4 +- **URI validation**: Same across versions +- **Basic annotation processing**: Core logic unchanged +- **JSON-LD context handling**: Similar patterns + +### Extension Points + +- Custom selector support +- Additional 3D content types +- Enhanced content state behaviors +- Community-defined motivations + +### Performance Optimizations + +- Lazy loading of 3D content +- Efficient coordinate system transformations +- Streaming processing for large scenes +- Memory-efficient entity storage + +## Migration Path + +For existing applications: + +1. **Phase 1**: Add v4 support alongside existing v3 +2. **Phase 2**: Migrate to v4 parsing with v3 output +3. **Phase 3**: Enable v4 features incrementally +4. **Phase 4**: Full v4 native implementation + +This approach ensures zero-downtime migration and gradual feature adoption. diff --git a/src/presentation-4/empty-types.ts b/src/presentation-4/empty-types.ts new file mode 100644 index 0000000..ecce6a0 --- /dev/null +++ b/src/presentation-4/empty-types.ts @@ -0,0 +1,147 @@ +import type { + AgentNormalized, + AnnotationCollectionNormalized, + AnnotationNormalized, + AnnotationPageNormalized, + CanvasNormalized, + CollectionNormalized, + ContentResourceNormalized, + ManifestNormalized, + QuantityNormalized, + RangeNormalized, + SceneNormalized, + SelectorNormalized, + ServiceNormalized, + SpecificResourceNormalized, + TimelineNormalized, + TransformNormalized, +} from "../presentation-4-normalized/types"; +import { EMPTY_ARRAY } from "./utilities"; + +const baseLinkedArrays = { + metadata: EMPTY_ARRAY, + provider: EMPTY_ARRAY, + thumbnail: EMPTY_ARRAY, + behavior: EMPTY_ARRAY, + seeAlso: EMPTY_ARRAY, + service: EMPTY_ARRAY, + services: EMPTY_ARRAY, + homepage: EMPTY_ARRAY, + rendering: EMPTY_ARRAY, + partOf: EMPTY_ARRAY, + annotations: EMPTY_ARRAY, +}; + +export const emptyCollection: CollectionNormalized = { + id: "https://iiif-parser/empty-collection", + type: "Collection", + items: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyManifest: ManifestNormalized = { + id: "https://iiif-parser/empty-manifest", + type: "Manifest", + items: EMPTY_ARRAY, + structures: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyTimeline: TimelineNormalized = { + id: "https://iiif-parser/empty-timeline", + type: "Timeline", + items: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyCanvas: CanvasNormalized = { + id: "https://iiif-parser/empty-canvas", + type: "Canvas", + items: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyScene: SceneNormalized = { + id: "https://iiif-parser/empty-scene", + type: "Scene", + items: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyAnnotationPage: AnnotationPageNormalized = { + id: "https://iiif-parser/empty-annotation-page", + type: "AnnotationPage", + items: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyAnnotationCollection: AnnotationCollectionNormalized = { + id: "https://iiif-parser/empty-annotation-collection", + type: "AnnotationCollection", + items: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyAnnotation: AnnotationNormalized = { + id: "https://iiif-parser/empty-annotation", + type: "Annotation", + motivation: EMPTY_ARRAY, + body: EMPTY_ARRAY, + target: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyRange: RangeNormalized = { + id: "https://iiif-parser/empty-range", + type: "Range", + items: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyAgent: AgentNormalized = { + id: "https://iiif-parser/empty-agent", + type: "Agent", + logo: EMPTY_ARRAY, + ...baseLinkedArrays, +}; + +export const emptyService: ServiceNormalized = { + id: "https://iiif-parser/empty-service", + type: "Service", + service: EMPTY_ARRAY, +}; + +export const emptySelector: SelectorNormalized = { + id: "https://iiif-parser/empty-selector", + type: "Selector", + selectors: EMPTY_ARRAY, +}; + +export const emptyQuantity: QuantityNormalized = { + id: "https://iiif-parser/empty-quantity", + type: "Quantity", +}; + +export const emptyTransform: TransformNormalized = { + id: "https://iiif-parser/empty-transform", + type: "Transform", +}; + +export const emptySpecificResource: SpecificResourceNormalized = { + type: "SpecificResource", + selector: EMPTY_ARRAY, + transform: EMPTY_ARRAY, + action: EMPTY_ARRAY, +}; + +export const emptyContentResource: ContentResourceNormalized = { + id: "https://iiif-parser/empty-content-resource", + type: "ContentResource", + language: EMPTY_ARRAY, + items: EMPTY_ARRAY, + selector: EMPTY_ARRAY, + transform: EMPTY_ARRAY, + action: EMPTY_ARRAY, + provides: EMPTY_ARRAY, + ...baseLinkedArrays, +}; diff --git a/src/presentation-4/index.ts b/src/presentation-4/index.ts new file mode 100644 index 0000000..e77081c --- /dev/null +++ b/src/presentation-4/index.ts @@ -0,0 +1,13 @@ +export * from "./empty-types"; +export * from "./normalize"; +export * from "./traverse"; +export * from "./serialize"; +export * from "./serialize-presentation-4"; +export * from "./serialize-presentation-3"; +export * from "./upgrade"; +export * from "./validator"; +export * from "./utilities"; +export * from "./types"; + +export * from "../shared/to-ref"; +export * from "../shared/compress-specific-resource"; diff --git a/src/presentation-4/meta/documentation.ts b/src/presentation-4/meta/documentation.ts new file mode 100644 index 0000000..c242396 --- /dev/null +++ b/src/presentation-4/meta/documentation.ts @@ -0,0 +1,742 @@ +/** + * IIIF Presentation API version 4.0 model metadata. + * + * Source: https://preview.iiif.io/api/prezi-4/presentation/4.0/model/ + * Generated by scripts/generate-presentation-4-meta.mjs + */ + +type DocDefinition = { + link: string; + summary: string; + title: string; +}; + +const root = "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/"; + +const definedTypes: Record = { + Agent: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Agent", + summary: + "An Agent represents a person or organization, typically referenced with the provider property. Note that Agent is NOT an abstract class with subclasses, and thus should be instantiated directly.", + title: "Agent", + }, + AmbientAudio: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#AmbientAudio", + summary: + "Ambient Audio emits equally throughout the Scene, and does not have a position or direction. The Emitter must be annotated somewhere within the Scene so that it can be rendered by editing interfaces, and exists within the Scene’s hierarchy.", + title: "Ambient Audio", + }, + AmbientLight: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#AmbientLight", + summary: + "Ambient Light evenly illuminates all objects in the Scene, and does not have a direction or position. It does not have any new properties. The Light itself must be added into the scene at a specific position, however this is only such that editing interfaces can render the object to the user.", + title: "Ambient Light", + }, + AnimationSelector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#AnimationSelector", + summary: + "More interactive content resources, such as 3D models, may have animations or similar features that can be activated by user interaction. For example, a model of a box might have an animation that opens the lid and a second animation that closes the lid. In order to activate those animations, they need to be selectable, and thus the specification defines an Animation Selector. The identity of the activatable aspect is given in the value property.", + title: "Animation Selector", + }, + Annotation: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Annotation", + summary: + "Annotations are used to associate content resources with Containers, as well as for transcriptions, commentary, tags and the association of other content. This provides a single, unified method for aligning information, and provides a standards-based framework for distinguishing parts of resources and parts of Canvases.", + title: "Annotation", + }, + AnnotationCollection: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#AnnotationCollection", + summary: + "Annotation Collections allow Annotations to collected together into ordered groups. For example, all of the English translation Annotations of a medieval French document could be kept separate from the transcription or an edition in modern French, or the director’s commentary on a film can be separated from the script.", + title: "Annotation Collection", + }, + AnnotationPage: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#AnnotationPage", + summary: + "An ordered list of Annotations, typically associated with a Container, but may be referenced from other types of resource as well. Annotation Pages enumerate and order lists of Annotations, in the same way that Collection Pages order lists of Manifests and Collections within the containing Collection.", + title: "Annotation Page", + }, + AudioContentSelector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#AudioContentSelector", + summary: + "Video content resources consist of both visual and audio content within the same bit-level representation. There are situations when it is useful to refer to only one aspect of the content – either the visual or the audio, but not both. For example, an Annotation might associate only the visual content of a video that has spoken English in the audio, and an audio file that has the translation of that content in Spanish. The Audio Content Selector selects all of the audio content from an A/V content resource, and may be further refined with subsequent selectors to select a segment of it, using refinedBy .", + title: "Audio Content Selector", + }, + AudioEmitters: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#AudioEmitters", + summary: + "Audio is supported through the use of Audio Emitter resources annotated into Scenes, in the same way that light is emitted from the various subclasses of Light. AudioEmitter is also an abstract class, and thus must not be directly instantiated.", + title: "Audio Emitters", + }, + Camera: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Camera", + summary: + "A Camera provides a view of a region of a Scene’s space from a particular position within the Scene; the client constructs a viewport into the Scene and uses the Camera to render that region. The size and aspect ratio of the viewport is client and device dependent. The first Camera defined in a Scene without the hidden behavior is the default Camera. Camera is an abstract class and must not be instantiated directly.", + title: "Cameras", + }, + Canvas: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Canvas", + summary: + "A Canvas is a Container that represents a particular rectangular 2 dimensional view and has content resources associated with it or with parts of it. This aspect ratio is defined by the height and width properties. The values of these properties are not pixels, but arbitrary square units into which pixel-based resources can be scaled. A Canvas may also have a duration, given in the duration property, allowing audio and video to be correctly positioned in time as well as in the 2 dimensional space.", + title: "Canvas", + }, + Choice: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Choice", + summary: + "A Choice is a Web Annotation construction that allows one entry from a list to be selected for processing or display. The client may use any method to determine which item to select, including presenting the Choice to the user for a decision or using the properties of the items to make the decision. In the absence of any information, the client should select the first item in the array and publishers should list the items in order of preference. This specification allows behavior and other properties to be added to a Choice to influence how it is processed.", + title: "Choice", + }, + Collection: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Collection", + summary: "A Collection is an ordered list of Manifests, and/or Collections, called the members of the Collection.", + title: "Collection", + }, + CollectionPage: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#CollectionPage", + summary: + "A Collection Page is an arbitrary division of members within the Collection to make it easier to consume by clients. It is strictly a technical affordance, and individual Collection Pages do not represent any real world set of items. The Collection Page model follows the ActivityStreams OrderedCollection model, as also used in Annotation Collections, the IIIF Change Discovery API, and the IIIF Search API.", + title: "Collection Page", + }, + DirectionalLight: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#DirectionalLight", + summary: + "Directional Lights emit their light in a specific direction as if infinitely far away, and as such the light does not come from a specific position. The rays produced are all parallel. The Light itself must be added into the scene at a specific position, however this is only such that editing interfaces can render the object to the user.", + title: "Directional Light", + }, + FragmentSelector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#FragmentSelector", + summary: + "Fragment Selectors use the fragment part of the URI specification to define a selection mechanism for parts of resources. The definition of the representation’s media type specifies the structure of the value of the fragment. This is commonly used in IIIF to include the media fragment syntax of xywh=,,, to define a 2 dimension region.", + title: "FragmentSelector", + }, + ImageApiSelector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#ImageApiSelector", + summary: + "The Image API Selector is used to describe the operations expected to occur via the definitions of the IIIF Image API. This can be used with IIIF Image API services in order to retrieve a particular image representation, but also can be applied client side on static images, such as to process rotation via CSS. In this case the resource is the abstract image as identified by the [IIIF Image API][image-api] base URI plus identifier, and the retrieval process involves adding the correct parameters after that base URI.", + title: "IIIF Image API Selector", + }, + Light: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Light", + summary: + "It is necessary for there to be a Light within a Scene that illuminates the objects. If no Light is provided by the Scene’s description, then the client must provide default lighting. Light is an abstract class and must not be instantiated directly.", + title: "Lights", + }, + Manifest: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Manifest", + summary: + "A Manifest is the primary unit of distribution of IIIF and provides a description of the structure and properties of a single item to be presented to the user.", + title: "Manifest", + }, + OrthographicCamera: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#OrthographicCamera", + summary: + "An Orthographic Camera removes visual perspective, resulting in object size remaining constant regardless of its distance from the camera.", + title: "Orthographic Camera", + }, + PerspectiveCamera: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#PerspectiveCamera", + summary: + "A Perspective Camera mimics the way the human eye sees, in that objects further from the camera are presented as being smaller.", + title: "Perspective Camera", + }, + PointAudio: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#PointAudio", + summary: "Point Audio emits in all directions from a single point in the Scene.", + title: "Point Audio", + }, + PointLight: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#PointLight", + summary: "Point Lights emit in all directions from a single point within the Scene.", + title: "Point Light", + }, + PointSelector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#PointSelector", + summary: + "There are common use cases in which a point, rather than a range or area, is the target of the Annotation. For example, putting a pin in a map should result in an exact point, not a very small rectangle. Points in time are not very short durations, and user interfaces should, equally, treat these differently. This is particularly important when zooming in (either spatially or temporally) beyond the scale of the frame of reference.", + title: "Point Selector", + }, + Quantity: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Quantity", + summary: + "A Quantity expresses a quantity through a numerical value and associated unit of measurement. The value of unit must be drawn from the list of possible units, or a registered extension. The definition of unit defines the list of possible unit values .", + title: "Quantity", + }, + Range: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Range", + summary: + "Ranges are used to represent structure within a Manifest beyond the default order of the Containers in the items property.", + title: "Range", + }, + RotateTransform: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#RotateTransform", + summary: + "A Rotate Transform rotates the resource around one or more axes. If present, the values of properties x , y , and z must be angular values in degrees that specify the extent of rotation around each axis. Positive angular values indicate counter-clockwise rotation around the axis due to coordinate right-handedness. Axis rotation is performed with a pivot point at the origin of the local coordinate space. As an example, for a point at (1, 1, 0) in local coordinate space, rotating 90 degrees around the x axis would transform the point to be at (1, 0, 1). If any property x , y , or z is not specified or is specified to be 0.0, rotation around that axis does not occur. When more than one axis rotation is specified through multiple non-zero values for x , y , and z , rotations comprise a Euler angle with ordering x-y-z, and rotation must be carried out first around the x axis, second around the y axis, and third around the z axis.", + title: "Rotate Transform", + }, + ScaleTransform: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#ScaleTransform", + summary: + "A Scale Transform scales the resource along one or more axes. If present, the values of properties x , y , and z must be multiplicative scale factors that specify the extent of scaling along each axis. As an example, for a point at 3.5 along the x axis in local coordinate space, scaling along the x axis by 2.0 would result in the point being at 7.0. If any property x , y , or z is not specified or is specified to be 1.0, scaling does not occur along that axis. Negative scale factor values indicate reflection as well as scaling along that axis.", + title: "Scale Transform", + }, + Scene: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Scene", + summary: + "A Scene is a Container that represents an infinitely large three-dimensional space, with an optional duration property. Scenes have infinite height (y axis), width (x axis) and depth (z axis), where 0 on each axis (the origin of the coordinate system) is treated as the center of the scene’s space. From a perspective looking along the z axis towards negative infinity, the positive y axis points upwards and the positive x axis points to the right (a right-handed Cartesian coordinate system ).", + title: "Scene", + }, + Service: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Service", + summary: + "A Service is an external software application that a client might interact with to gain additional information or functionality for the resource that is associated with the Service. The IIIF Image API is an example of a Service, as are the Auth API services. Known types of Service are registered in the Service Registry.", + title: "Service", + }, + SpecificResource: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#SpecificResource", + summary: + "A Specific Resource is a resource in the context of an Annotation. They are used to record further properties or relationships needed to understand the particular contextual use, such as which part of the resource is used or how it should be rendered. In IIIF, the Specific Resource model from the Web Annotation Data Model has some additional properties beyond those defined by the W3C, such as transform and position .", + title: "Specific Resource", + }, + SpotAudio: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#SpotAudio", + summary: + "Spot Audio emits a cone of sound in a given direction from a single point. The Spot Audio’s angle property defines the radius of the cone. The default angle is client dependent if not specified.", + title: "Spot Audio", + }, + SpotLight: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#SpotLight", + summary: + "Spot Light emits a cone of light in a given direction from a single point. The Spot Light’s angle property defines the radius of the cone. The default angle is client dependent if not specified.", + title: "Spot Light", + }, + SvgSelector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#SvgSelector", + summary: + "SVG Selectors use the SVG specification to define a non-rectangular part of a resource. This allows for polygons, circles and multiple shapes to be used to highlight or otherwise select regions of images or other 2 dimensional resources.", + title: "SvgSelector", + }, + TextualBody: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#TextualBody", + summary: + "A Textual Body is an embedded resource within an Annotation that carries, as the name suggests, a text as the body of the Annotation. It is defined by the Web Annotation Data Model, and this specification defines a new property for position that allows it to be positioned within a Container for rendering.", + title: "Textual Body", + }, + Timeline: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Timeline", + summary: + "A Timeline is a Container that represents only a temporal duration, measured in seconds. Timelines allow audio content to be presented, but do not allow anything with a height, width and/or depth, like an image, video or 3d model. The duration of the Timeline is given in the duration property.", + title: "Timeline", + }, + Transforms: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#Transforms", + summary: + "An operation to apply a transformation to a resource to generate a Specific Resource. Transforms are specified by the transform property on a Specific Resource. In the context of Scenes, transforms are carried out on a resource in the implicit or explicit local coordinate space of the resource, and are performed prior to painting that resource into any subsequent coordinate space.", + title: "Transforms", + }, + TranslateTransform: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#TranslateTransform", + summary: + "A Translate Transform translates or moves the resource along one or more axes. If present, the values of properties x , y , and z must be coordinate unit distances that specify the distance across each axis to translate the resource. As an example, for a point at 1.0 on the x axis, translating across the x axis by 3.0 would result in the point being at 4.0. If any property x , y , or z is not present or is specified to be 0.0, translation does not occur along that axis.", + title: "Translate Transform", + }, + VisualContentSelector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#VisualContentSelector", + summary: + "Similar to Audio Content Selectors, Visual Content Selectors select the visual aspects of the content of an A/V content resource. They may also be further refined by subsequent selectors that select an area or temporal segment of it.", + title: "Visual Content Selector", + }, + WktSelector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#WktSelector", + summary: + "Well-known text, or WKT, is an ISO standard method for describing 2 and 3 dimensional geometries. This selector thus goes beyond what the Web Annotation’s SvgSelector enables by incorporating the z axis, as well as additional types of selection such as MULTIPOLYGON.", + title: "WKT Selector", + }, +}; + +const propertyDocumentation: Record = { + accompanyingContainer: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#accompanyingContainer", + summary: + "A Container that provides additional content for use while the resource that has the accompanyingContainer property is shown or played. Examples include an image to show while a duration-only Canvas is playing audio; or background audio to play while a user is navigating an image-only Manifest.", + title: "accompanyingContainer", + }, + action: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#action", + summary: + "The action property is used on Specific Resources that are in the body array of activating annotations (Annotations with the “activating” motivation). The values of the property are named actions which the client is being instructed to carry out upon the source of the Specific Resource. The list of possible values and their corresponding effects is given in the table below. Clients must process the Specific Resources in the order given in the Annotation, and must process the actions in the order given in the array. The client must perform all of the actions on the respective resources, and if it cannot, then it must not perform any of them. The set of actions within an Annotation is, thus, treated as an atomic transaction. If the activating annotation that is currently being processed is disabled as part of the processing, the client must not stop processing the ordered list when this occurs but keep processing until the end of the current Annotation’s set of actions. Each activating Annotation is processed completely before moving to another activating Annotation’s actions, even if an action causes another activating Annotation’s actions to be triggered. Instead, the activating Annotations are queued up in order that they are triggered, and when the client finishes one such annotation it can begin to process the next, and so on.", + title: "action", + }, + angle: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#angle", + summary: + "The angle property is used with SpotLights and Spot Audio Emitters to define the radius of the cone of emitted light or sound. Note that the fieldOfView property is defined as the entire field of view, not half (as might be inferred from angle using radius).", + title: "angle", + }, + annotations: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#annotations", + summary: + "An ordered list of Annotation Pages that contain commentary or other Annotations about this resource, separate from the Annotations that are used to paint content on to a Container. The motivation of the Annotations must not be painting , and the target of the Annotations must include this resource, or part of it, or some resource within its items hierarchy.", + title: "annotations", + }, + backgroundColor: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#backgroundColor", + summary: + "This property sets the background color behind any painted resources on a spatial Container, such as a Canvas or Scene.", + title: "backgroundColor", + }, + behavior: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#behavior", + summary: + "A set of user experience features that the publisher of the content would prefer the client to use when presenting the resource. This specification defines the values in the table below. Others may be defined externally as an [extension][prezi30-ldce].", + title: "behavior", + }, + body: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#body", + summary: + "The list of bodies of an Annotation. As there may be more than one body, the value must be an array, even though the W3C specification does not require this. The resources listed in body can be instances of TextualBody , SpecificResource , core Structural Resources, or Content Resources.", + title: "body", + }, + canonical: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#canonical", + summary: + "The URI that should be used to track the resource’s identity, regardless of where it is made accessible or the value of its id property. The canonical URI can then be used as the target for annotations, regardless of the URI from which it was retrieved. If this property is set, then clients must not change or delete it. Clients must not assign a canonical URI if one is not present, as the resource might already have one assigned by a different system but was not included in the representation received. Any reference to the canonical URI must be treated as a reference to this resource.", + title: "canonical", + }, + color: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#color", + summary: "This property sets the color of a Light.", + title: "color", + }, + duration: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#duration", + summary: "The duration of a container or external content resource, given in seconds.", + title: "duration", + }, + exclude: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#exclude", + summary: + "Just as a Scene may contain multiple Annotations with models, light, and cameras, a single 3D model file can also contain a collection of 3D resources, including model geometry, assemblages of lights, and/or multiple cameras, with some of these potentially manipulated by animations. When painting Scenes, or models that themselves may contain multiple resources, into a Scene, it may be desirable to opt not to import some of these resources. This is accomplished through the Annotation property exclude , which prevents the import of audio, lights, cameras, or animations from a particular Scene or model prior to the Annotation’s body resource being painted into a Scene. When exclude is used, the excluded resource type or functionality should not be loaded into the Scene, and it is not possible to reactivate or turn on these excluded resources after loading.", + title: "exclude", + }, + far: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#far", + summary: + "This property gives the distance along the axis of the camera’s orientation after which objects are no longer visible. Objects further from the camera than the far distance cannot be seen.", + title: "far", + }, + fieldOfView: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#fieldOfView", + summary: + "The vertical projection angle from the top plane to the bottom plane of the camera’s field of view, specified in degrees. The horizontal projection angle is dependent on the aspect ratio of the client’s viewport.", + title: "fieldOfView", + }, + fileSize: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#filesize", + summary: + "The size of a content resource in bytes. This will allow clients to determine whether the resource should be retrieved in the user’s current context. For example, the same 3d Model or AV file might be available in multiple formats, and the client can choose the most appropriate one based on the fileSize property.", + title: "fileSize", + }, + first: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#first", + summary: + "This property references the first Annotation Page within an Annotation Collection, or the first Collection Page within a Collection. Note that Collections will only have the first property if there is a large number of items, more than could conveniently be included in a single page.", + title: "first", + }, + format: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#format", + summary: + "For Content Resources, the format property records the specific media type (often called a MIME type), for example image/jpeg . This is important for distinguishing different formats of the same overall type of resource, such as distinguishing text in XML from plain text. The value of the property should thus be the same as the value of the Content-Type header returned when the URI of the Content Resource is dereferenced.", + title: "format", + }, + height: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#height", + summary: + "The height of the Canvas or external Content Resource. For Content Resources, the value is in pixels. For Canvases, the value does not have a unit. Instead, in combination with the width property, it conveys an aspect ratio for the space in which Content Resources are located.", + title: "height", + }, + homepage: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#homepage", + summary: + "A web page that is about the entity represented by the resource that has the homepage property. The web page is usually published by the organization responsible for the entity, and might be generated by a content management system or other cataloging system. The resource must be able to be displayed directly to the user. Resources that are related, but not home pages, must instead be added into the metadata property, with an appropriate label or value to describe the relationship.", + title: "homepage", + }, + id: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#id", + summary: + "The URI that identifies the resource. If the resource is only available embedded within another resource, such as a Range within a Manifest, then the URI may be the URI of the embedding resource with a unique fragment on the end. This is not true for Containers, which must have their own URI without a fragment.", + title: "id", + }, + instant: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#instant", + summary: + "A floating point number giving the time of the point in seconds from the beginning of the temporal resource. For example, an instant value of 4.5 means the exact point 4.5 seconds from the beginning of the resource.", + title: "instant", + }, + intensity: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#intensity", + summary: + "This property sets the strength or brightness of a Light. The value of the referenced Quantity indicates the desired intensity on a linear scale between 0.0 (no brightness) and 1.0 (as bright as the client will render). If this property is not specified, then the default intensity value is client-dependent.", + title: "intensity", + }, + interactionMode: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#interactionMode", + summary: + "A set of features that guide or limit user interaction with content within a Container that the publisher of the content would prefer the client to use when presenting the resource. This specification defines values in the table below that guide interactions with Cameras within a Scene. Other values for other Container types or specifying other interaction modes for 3D content may be defined externally as an [extension][prezi30-ldce]. For interaction modes pertaining to Cameras within a Scene, the client should use interactionMode to determine the user experience features and approaches whereby users are permitted to change or adjust Cameras when viewing content within a Scene (e.g., orbiting around the scene or locking the user to a first-person perspective). If interactionMode is not set for a Camera, then the mode to be used is client-dependent.", + title: "interactionMode", + }, + items: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#items", + summary: + "Much of the functionality of the IIIF Presentation API is simply recording the order in which child resources occur within a parent resource, such as Collections or Manifests within a parent Collection, or Containers within a Manifest. All of these situations are covered with a single property, items .", + title: "items", + }, + label: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#label", + summary: + "A human readable label, name or title. The label property is intended to be displayed as a short, textual surrogate for the resource if a human needs to make a distinction between it and similar resources, for example between objects, pages, or options for a choice of images to display. The label property can be fully internationalized, and each language can have multiple values. This pattern is described in more detail in the [languages][prezi40-languages] section.", + title: "label", + }, + language: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#language", + summary: + "The language or languages used in the content of this external resource. It may be used for resources [referenced][prezi30-terminology] from body , target , source , homepage , rendering , and partOf , amongst others.", + title: "language", + }, + last: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#last", + summary: + "This property references the last Annotation Page within an Annotation Collection, or last Collection Page within a Collection.", + title: "last", + }, + logo: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#logo", + summary: + "A small image resource that represents the Agent resource it is associated with. The logo must be clearly rendered when the resource is displayed or used, without cropping, rotating or otherwise distorting the image. It is recommended that a [IIIF Image API][image-api] service be available for this image for other manipulations such as resizing.", + title: "logo", + }, + lookAt: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#lookAt", + summary: + "It is useful to be able to rotate a light or camera or audio resource such that it is facing another object or point in the Scene, rather than calculating the angles within the Scene’s coordinate space. This is accomplished with a property called lookAt , valid on DirectionalLight, SpotLight, and all Cameras. The value of the property is either a PointSelector, a WktSelector, the URI of an Annotation which paints something into the current Scene, or a Specific Resource with a selector identifying a point or region in an arbitrary container.", + title: "lookAt", + }, + metadata: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#metadata", + summary: + "An ordered list of descriptions to be displayed to the user when they interact with the resource, given as pairs of human readable label and value entries. The content of these entries is intended for presentation only; descriptive semantics should not be inferred. An entry might be used to convey information about the creation of the object, a physical description, ownership information, or other purposes.", + title: "metadata", + }, + motivation: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#motivation", + summary: + "This specification defines three values for the [Web Annotation Data Model][org-w3c-webanno] property of motivation , or purpose when used on a Specific Resource or Textual Body.", + title: "motivation", + }, + navDate: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#navDate", + summary: + "A date that clients may use for navigation purposes when presenting the resource to the user in a date-based user interface, such as a calendar or timeline. More descriptive date ranges, intended for display directly to the user, should be included in the metadata property for human consumption. If the resource contains Containers that have the duration property, the datetime given corresponds to the navigation datetime of the start of the resource. For example, a Range that includes a Canvas that represents a set of video content recording a historical event, the navDate is the datetime of the first moment of the recorded event.", + title: "navDate", + }, + navPlace: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#navPlace", + summary: + "A geographic location that clients may use for navigation purposes when presenting the resource to the user in a map-based user interface. The location is identified using structured data, described below, with latitude and longitude based points or polygons. If the location is only textual, then the information should instead be included in the metadata property.", + title: "navPlace", + }, + near: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#near", + summary: + "This property gives the distance along the Cameria’s axis of orientation from which objects are visible. Objects closer to the camera than the near distance cannot be seen.", + title: "near", + }, + next: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#next", + summary: + "A reference from an Annotation Page to the following Annotation Page within an Annotation Collection, or from a Collection Page to the following Collection Page.", + title: "next", + }, + partOf: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#partOf", + summary: + "A containing resource that includes the resource that has the partOf property. When a client encounters the partOf property, it might retrieve the [referenced][prezi30-terminology] containing resource, if it is not [embedded][prezi30-terminology] in the current representation, in order to contribute to the processing of the contained resource. For example, the partOf property on a Canvas can be used to reference an external Manifest in order to enable the discovery of further relevant information. Similarly, a Manifest can reference a containing Collection using partOf to aid in navigation.", + title: "partOf", + }, + placeholderContainer: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#placeholderContainer", + summary: + "A single Container that provides additional content for use before the main content of the resource that has the placeholderContainer property is rendered, or as an advertisement or stand-in for that content. Examples include images, text and sound standing in for video content before the user initiates playback; or a film poster to attract user attention. The content provided by placeholderContainer differs from a thumbnail: a client might use thumbnail to summarize and navigate multiple resources, then show content from placeholderContainer as part of the initial presentation of a single resource. A placeholder Container is likely to have different dimensions to those of the Container(s) of the resource that has the placeholderContainer property. A placeholder Container may be of a different type from the resource that has the placeholderContainer property. For example, a Scene may have a placeholder Container of type Canvas .", + title: "placeholderContainer", + }, + position: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#position", + summary: + "It is important to be able to position the body of an annotation within the Container’s space that the annotation also targets. For example, a description of part of an image in a Canvas should be positioned such that it does not obscure the image region itself and labels to be displayed as part of a Scene should not be rendered such that the text is hidden by the three dimensional geometry of the model. If this property is not supplied, then the client should do its best to ensure the content is visible to the user. The body resource must be either a TextualBody or a SpecificResource .", + title: "position", + }, + prev: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#prev", + summary: + "A reference from an Annotation Page to the preceding Annotation Page within an Annotation Collection, or from a Collection Page to the preceding Collection Page.", + title: "prev", + }, + profile: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#profile", + summary: + "A schema or named set of functionality available from the resource. The profile can further clarify the type and/or format of an external resource or service, allowing clients to customize their handling of the resource that has the profile property.", + title: "profile", + }, + provider: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#provider", + summary: + "An organization or person that contributed to providing the content of the resource. Clients can then display this information to the user to acknowledge the provider’s contributions. This differs from the requiredStatement property, in that the data is structured, allowing the client to do more than just present text but instead have richer information about the people and organizations to use in different interfaces.", + title: "provider", + }, + provides: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#provides", + summary: + "A set of features or additional functionality that a linked resource enables relative to the linking or including resource, often for accessibility purposes and which are not defined by the type , format or profile of the linked resource. It provides information as to why and how a client might want to interact with the resource, rather than what the resource is. For example, a text file (linked resource) that provides a closedCaptions for a Video (context resource), or an audio file (linked resource) that provides an audioDescription of a Canvas (context resource).", + title: "provides", + }, + quality: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#quality", + summary: "The quality parameter in the IIIF Image API URL structure, as recorded in an Image API Selector.", + title: "quality", + }, + quantityValue: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#quantityValue", + summary: + "The quantityValue property of a Quantity conveys its numerical component, used with unit to determine how to interpret the number relative to quantities.", + title: "quantityValue", + }, + refinedBy: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#refinedBy", + summary: + "The refinedBy property allows Selectors to be chained together to incrementally select more specific aspects of the resource given in source on the Specific Resource. The first selector on a Specific Resource describes how to select part of the main resource, and a subsequent selector in refinedBy then describes how to further select part of that part. This can be used, for example, to extract a rectangular region with a FragmentSelector and then further refine that region with an SvgSelector or WktSelector .", + title: "refinedBy", + }, + region: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#region", + summary: + "The value of the region parameter in the IIIF Image API URL structure, as recorded in an Image API Selector.", + title: "region", + }, + rendering: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#rendering", + summary: + "A resource that is an alternative, non-IIIF representation of the resource that has the rendering property. Such representations typically cannot be painted onto a single Container, as they either include too many views, have incompatible dimensions, or are compound resources requiring additional rendering functionality. The rendering resource must be able to be displayed directly to a human user, although the presentation may be outside of the IIIF client. The resource must not have a splash page or other interstitial resource that mediates access to it. If access control is required, then the [IIIF Authentication API][iiif-auth] is recommended . Examples include a rendering of a book as a PDF or EPUB, a slide deck with images of a building, or a 3D model of a statue otherwise represented as an Image on a Canvas.", + title: "rendering", + }, + requiredStatement: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#requiredStatement", + summary: + "Text that must be displayed when the resource is displayed or used. For example, the requiredStatement property could be used to present copyright or ownership statements, an acknowledgement of the owning and/or publishing institution, or any other text that the publishing organization deems critical to display to the user. Given the wide variation of potential client user interfaces, it will not always be possible to display this statement to the user in the client’s initial state. If initially hidden, clients must make the method of revealing it as obvious as possible.", + title: "requiredStatement", + }, + rights: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#rights", + summary: + "A string that identifies a license or rights statement that applies to the content of the resource, such as the JSON of a Manifest or the pixels of an image. The value must be drawn from the set of [Creative Commons][org-cc-licenses] license URIs, the [RightsStatements.org][org-rs-terms] rights statement URIs, or those added in the [rights registry][break-until-there-is-a-registry]. The inclusion of this property is informative, and for example could be used to display an icon representing the rights assertions.", + title: "rights", + }, + rotation: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#rotation", + summary: + "The value of the rotation parameter in the IIIF Image API URL structure, as recorded in an Image API Selector.", + title: "rotation", + }, + seeAlso: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#seeAlso", + summary: + "A machine-readable resource such as an XML or RDF description that is related to the current resource that has the seeAlso property. Properties of the resource should be given to help the client select between multiple descriptions (if provided), and to make appropriate use of the document. If the relationship between the resource and the document needs to be more specific, then the document should include that relationship rather than the IIIF resource. Other IIIF resources are also valid targets for seeAlso , for example to link to a Manifest that describes a related object. The URI of the document must identify a single representation of the data in a particular format. For example, if the same data exists in JSON and XML, then separate resources should be added for each representation, with distinct id and format properties.", + title: "seeAlso", + }, + selector: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#selector", + summary: "TODO", + title: "selector", + }, + service: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#service", + summary: + "A service that the client might interact with directly and gain additional information or functionality for using the resource that has the service property, such as from an Image to the base URI of an associated [IIIF Image API][image-api] service. The service resource should have additional information associated with it in order to allow the client to determine how to make appropriate use of it. Please see the [Service Registry][registry-services] document for the details of currently known service types.", + title: "service", + }, + services: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#services", + summary: + "A list of one or more service definitions on the top-most resource of the document, that are typically shared by more than one subsequent resource. This allows for these shared services to be collected together in a single place, rather than either having their information duplicated potentially many times throughout the document, or requiring a consuming client to traverse the entire document structure to find the information. The resource that the service applies to must still have the service property, as described above, where the service resources have at least the id and type or @id and @type properties. This allows the client to know that the service applies to that resource. Usage of the services property is at the discretion of the publishing system.", + title: "services", + }, + size: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#size", + summary: + "The value of the size parameter in the IIIF Image API URL structure, as recorded in an Image API Selector.", + title: "size", + }, + source: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#source", + summary: + "The source property refers to the URI of the resource that the Specific Resource is a more constrained version or representation of.", + title: "source", + }, + spatialScale: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#spatialScale", + summary: + "A single Quantity that defines a real-world scale factor for the coordinate units of a Canvas or Scene. For a Canvas, this defines the physical distance corresponding to the length of a single Canvas coordinate unit. A Canvas with a width of 5000 and a spatialScale with quantityValue of 0.00008 and a unit of m represents a physical space 0.4 meters wide. For a Scene, this defines the physical distance corresponding to the XYZ coordinate units, or in other words, the physical distance length of a unit vector in the 3D coordinate space. The value of unit must be a length unit. In this specification, the only length unit defined is m , i.e., meters. Unless other values are defined externally as an [extension][prezi30-ldce], the value of unit should always be m .", + title: "spatialScale", + }, + start: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#start", + summary: + "A Container, or part of a Container, which the client should show on initialization for the resource that has the start property. The reference to part of a Container is handled in the same way that Ranges reference parts of Containers by using either its URI, a URI with a fragment specifier, or a SpecificResource with a Selector. This property allows the client to begin with the first Container that contains interesting content rather than requiring the user to manually navigate to find it.", + title: "start", + }, + startIndex: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#startIndex", + summary: + "A non-negative, 0-based integer value identifying the relative position of the first entry in the items list of a Collection Page or Annotation Collection Page within the overall logical order of its parent Collection or Annotation Collection. If this is the second page, and there are 100 entries on the first page, then the value is 100 (the first page contains entries 0 through 99 inclusive).", + title: "startIndex", + }, + structures: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#structures", + summary: + "The structure of an object represented as a Manifest can be described using a hierarchy of Ranges. Ranges can be used to describe the “table of contents” of the object or other structures that the user can interact with beyond the order given by the items property of the Manifest. The hierarchy is built by nesting the child Range resources in the items array of the higher level Range. The top level Ranges of these hierarchies are given in the structures property.", + title: "structures", + }, + styleClass: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#styleClass", + summary: + "The name of a CSS class to apply when rendering the Specific Resource the style class is associated with. This might change the color of the text, the background color, add borders to the element, change the font size or family, or any other CSS-based styling. The class definition is given using the stylesheet property, defined below, which can be used on an Annotation. While Specific Resources may appear outside of Annotations, styleClass is not valid in these circumstances as there will not be a corresponding stylesheet to define the style. If the stylesheet does not define the class given in styleClass , then the class must be ignored.", + title: "styleClass", + }, + stylesheet: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#stylesheet", + summary: + "The stylesheet property conveys either a reference to an external CSS stylesheet document, or carries an embedded stylesheet. This stylesheet is used to resolve CSS classes for processing the styleClass directive on Specific Resources, described above.", + title: "stylesheet", + }, + summary: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#summary", + summary: + "A short textual summary intended to be conveyed to the user when the metadata entries for the resource are not being displayed. This could be used as a brief description for item level search results, for small-screen environments, or as an alternative user interface when the metadata property is not currently being rendered. The summary property follows the same pattern as the label property described above.", + title: "summary", + }, + supplementary: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#supplementary", + summary: + "A link from this Range to an Annotation Collection that includes the supplementing Annotations of content resources for the Range. Clients might use this to present additional content to the user from a different Canvas when interacting with the Range, or to jump to the next part of the Range within the same Canvas. For example, the Range might represent a newspaper article that spans non-sequential pages, and then uses the supplementary property to reference an Annotation Collection that consists of the Annotations that record the text, split into Annotation Pages per newspaper page. Alternatively, the Range might represent the parts of a manuscript that have been transcribed or translated, when there are other parts that have yet to be worked on. The Annotation Collection would be the Annotations that transcribe or translate, respectively.", + title: "supplementary", + }, + target: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#target", + summary: + "The list of targets of an Annotation. As there may be more than one target, the value must be an array, even though the W3C specification does not require this. The resources listed in target can be instances of SpecificResource , core Structural Resources, or Content Resources.", + title: "target", + }, + temporalScale: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#temporalScale", + summary: + "A single Quantity that defines a multiplier or scale factor for the duration property of a Container, indicating that one second in “Container time” represents some other real world duration. A Canvas with a duration of 450 seconds and a temporalScale with quantityValue of 1000 and a unit of s represents a real-world duration of 450,000 seconds (5.2 days), for example a time-lapse video of a growing plant. The value of unit must be a time unit. In this specification, the only time unit defined is s , i.e., seconds. Unless other values are defined externally as an [extension][prezi30-ldce], the value of unit should always be s .", + title: "temporalScale", + }, + thumbnail: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#thumbnail", + summary: + "A content resource, such as a small image or short audio clip, that represents the resource that has the thumbnail property. A resource may have multiple thumbnail resources that have the same or different type and format .", + title: "thumbnail", + }, + timeMode: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#timeMode", + summary: + "A mode associated with an Annotation that is to be applied to the rendering of any time-based media, or otherwise could be considered to have a duration, used as a body resource of that Annotation. Note that the association of timeMode with the Annotation means that different resources in the body cannot have different values. This specification defines the values specified in the table below. Others may be defined externally as an [extension][prezi30-ldce].", + title: "timeMode", + }, + total: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#total", + summary: + "The total property indicates the total number of annotations contained in an Annotation Collection, or the total number of Collections and Manifests within a Collection. A Collection should have total if it uses pages, and may have it if it does not, however the information is readily available by finding the length of the items array in the latter case.", + title: "total (totalItems)", + }, + transform: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#transform", + summary: + "An ordered list of 3D transform operations (translation, rotation, and scale) to be performed on a resource prior to painting that resource into a Scene. Transforms must be applied to the resource in the order given. The resulting state of the resource after applying a transform must be the input state for the subsequent transform in the ordered list. Therefore, transforms are not independent, and different orders of the same set of transforms can produce different results. The list of transforms may include multiple transforms of the same type, e.g., multiple rotation operations.", + title: "transform", + }, + type: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#type", + summary: + "The type or class of the resource. For classes defined for this specification, the value of type will be described in the sections below describing each individual class.", + title: "type", + }, + unit: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#unit", + summary: "The unit of measurement of a quantity expressed by a Quantity.", + title: "unit", + }, + value: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#value", + summary: + "The value property is used in several situations to convey a value of a resource. The value is always string-based, however the strings might be wrapped in the language map construction.", + title: "value", + }, + version: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#version", + summary: "TODO: write me", + title: "version", + }, + via: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#via", + summary: + "The via property of a resource may be used to indicate one or more URIs which are the chain of sources from which the current resource was obtained. Each URI in the via list must be different from the URI in id , but may be the same as the URI in canonical if it is present. Recording via allows servers to provide the provenance chain of the resource, regardless of how many copy operations have occurred in the past.", + title: "via", + }, + viewingDirection: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#viewingDirection", + summary: + "!!! TODO: Rewrite to be where is the navigation control to step to the next/ previous in the items of the manifest", + title: "viewingDirection", + }, + volume: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#volume", + summary: + "The volume property represents the relative volume of an audio source. The quantityValue of the specified Quantity represents the desired volume on a linear scale from 0.0 (silence) to 1.0 (maximum volume). If this property is not specified, then the default volume value is client-dependent.", + title: "volume", + }, + width: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#width", + summary: + "The width of the Canvas or external content resource. For content resources, the value is in pixels. For Canvases, the value does not have a unit. In combination with the height, it conveys an aspect ratio for the space in which content resources are located.", + title: "width", + }, + x: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#x", + summary: + "A number (floating point or integer) giving the x coordinate of the point, relative to the dimensions of the source resource", + title: "x", + }, + y: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#y", + summary: + "A number (floating point or integer) giving the y coordinate of the point, relative to the dimensions of the source resource", + title: "y", + }, + z: { + link: "https://preview.iiif.io/api/prezi-4/presentation/4.0/model/#z", + summary: + "A number (floating point) giving the z coordinate of the point, relative to the dimensions of the source resource", + title: "z", + }, +}; + +export const documentation = { + attribution: + "Copyright (c) IIIF Consortium and contributors. Generated summaries derived from the Presentation 4 model specification.", + disclaimer: "https://iiif.io/api/annex/notes/disclaimer/", + license: "https://creativecommons.org/licenses/by/4.0/", + version: "4.0", + root, + definedTypes, + properties: propertyDocumentation, +} as const; diff --git a/src/presentation-4/meta/index.ts b/src/presentation-4/meta/index.ts new file mode 100644 index 0000000..2120880 --- /dev/null +++ b/src/presentation-4/meta/index.ts @@ -0,0 +1,3 @@ +export * from "./documentation"; +export * from "./resources"; +export * from "./properties"; diff --git a/src/presentation-4/meta/properties.ts b/src/presentation-4/meta/properties.ts new file mode 100644 index 0000000..1dff33c --- /dev/null +++ b/src/presentation-4/meta/properties.ts @@ -0,0 +1,177 @@ +/** + * Presentation 4 property inventory grouped for documentation and type work. + */ + +const all = [ + "accompanyingContainer", + "action", + "angle", + "annotations", + "backgroundColor", + "behavior", + "body", + "canonical", + "color", + "duration", + "exclude", + "far", + "fieldOfView", + "fileSize", + "first", + "format", + "height", + "homepage", + "id", + "instant", + "intensity", + "interactionMode", + "items", + "label", + "language", + "last", + "logo", + "lookAt", + "metadata", + "motivation", + "navDate", + "navPlace", + "near", + "next", + "partOf", + "placeholderContainer", + "position", + "prev", + "profile", + "provider", + "provides", + "quality", + "quantityValue", + "refinedBy", + "region", + "rendering", + "requiredStatement", + "rights", + "rotation", + "seeAlso", + "selector", + "service", + "services", + "size", + "source", + "spatialScale", + "start", + "startIndex", + "structures", + "styleClass", + "stylesheet", + "summary", + "supplementary", + "target", + "temporalScale", + "thumbnail", + "timeMode", + "total", + "transform", + "type", + "unit", + "value", + "version", + "via", + "viewingDirection", + "volume", + "width", + "x", + "y", + "z", +] as const; + +export type Presentation4PropertyName = (typeof all)[number]; + +export const properties = { + all, + categories: { + technical: [ + "behavior", + "duration", + "fileSize", + "format", + "height", + "id", + "language", + "profile", + "timeMode", + "type", + "version", + "viewingDirection", + "width", + ], + descriptive: ["label", "metadata", "navDate", "provider", "requiredStatement", "rights", "summary", "thumbnail"], + linking: [ + "canonical", + "homepage", + "logo", + "partOf", + "rendering", + "seeAlso", + "service", + "services", + "start", + "supplementary", + "via", + ], + structural: [ + "annotations", + "body", + "first", + "items", + "last", + "next", + "prev", + "selector", + "source", + "startIndex", + "structures", + "target", + "total", + ], + spatialTemporal: [ + "angle", + "backgroundColor", + "color", + "far", + "fieldOfView", + "instant", + "intensity", + "lookAt", + "near", + "position", + "quality", + "quantityValue", + "region", + "rotation", + "size", + "spatialScale", + "temporalScale", + "unit", + "value", + "volume", + "x", + "y", + "z", + ], + interaction: [ + "accompanyingContainer", + "action", + "exclude", + "interactionMode", + "motivation", + "navPlace", + "placeholderContainer", + "provides", + "styleClass", + "stylesheet", + "transform", + ], + other: ["refinedBy"], + } as const, +} as const; diff --git a/src/presentation-4/meta/resources.ts b/src/presentation-4/meta/resources.ts new file mode 100644 index 0000000..23b736c --- /dev/null +++ b/src/presentation-4/meta/resources.ts @@ -0,0 +1,88 @@ +/** + * Presentation 4 resource type inventory derived from the model specification. + */ + +const all = [ + "Agent", + "AmbientAudio", + "AmbientLight", + "AnimationSelector", + "Annotation", + "AnnotationCollection", + "AnnotationPage", + "AudioContentSelector", + "AudioEmitters", + "Camera", + "Canvas", + "Choice", + "Collection", + "CollectionPage", + "DirectionalLight", + "FragmentSelector", + "ImageApiSelector", + "Light", + "Manifest", + "OrthographicCamera", + "PerspectiveCamera", + "PointAudio", + "PointLight", + "PointSelector", + "Quantity", + "Range", + "RotateTransform", + "ScaleTransform", + "Scene", + "Service", + "SpecificResource", + "SpotAudio", + "SpotLight", + "SvgSelector", + "TextualBody", + "Timeline", + "Transforms", + "TranslateTransform", + "VisualContentSelector", + "WktSelector", +] as const; + +export type Presentation4ResourceType = (typeof all)[number]; + +export const resources = { + all, + groups: { + topLevel: ["Collection", "Manifest", "Range"], + paging: ["CollectionPage"], + containers: ["Canvas", "Scene", "Timeline"], + annotations: ["Annotation", "AnnotationCollection", "AnnotationPage", "Choice", "SpecificResource", "TextualBody"], + selectors: [ + "AnimationSelector", + "AudioContentSelector", + "FragmentSelector", + "ImageApiSelector", + "PointSelector", + "SvgSelector", + "VisualContentSelector", + "WktSelector", + ], + sceneComponents: [ + "AmbientAudio", + "AmbientLight", + "AudioEmitters", + "Camera", + "DirectionalLight", + "Light", + "OrthographicCamera", + "PerspectiveCamera", + "PointAudio", + "PointLight", + "RotateTransform", + "ScaleTransform", + "SpotAudio", + "SpotLight", + "Transforms", + "TranslateTransform", + ], + utility: ["Agent", "Quantity", "Service"], + other: [], + } as const, +} as const; diff --git a/src/presentation-4/normalize.ts b/src/presentation-4/normalize.ts new file mode 100644 index 0000000..7d27c55 --- /dev/null +++ b/src/presentation-4/normalize.ts @@ -0,0 +1,649 @@ +import type { + NormalizedEntity as NormalizedEntityV4, + Presentation4Entities, + Presentation4NormalizeResult, +} from "../presentation-4-normalized/types"; +import { + emptyAgent, + emptyAnnotation, + emptyAnnotationCollection, + emptyAnnotationPage, + emptyCanvas, + emptyCollection, + emptyContentResource, + emptyManifest, + emptyQuantity, + emptyRange, + emptyScene, + emptySelector, + emptyService, + emptySpecificResource, + emptyTimeline, + emptyTransform, +} from "./empty-types"; +import { + emptyAgent as legacyEmptyAgent, + emptyAnnotation as legacyEmptyAnnotation, + emptyAnnotationPage as legacyEmptyAnnotationPage, + emptyCanvas as legacyEmptyCanvas, + emptyCollection as legacyEmptyCollection, + emptyManifest as legacyEmptyManifest, + emptyRange as legacyEmptyRange, + emptyService as legacyEmptyService, +} from "../presentation-3/empty-types"; +import { type TraversalContext, Traverse } from "./traverse"; +import { upgradeToPresentation4 } from "./upgrade"; +import { + createValidationReport, + EMPTY, + getId, + getType, + HAS_PART, + identifyResourceType, + mintDeterministicId, + PART_OF, + PRESENTATION_3_CONTEXT, + PRESENTATION_4_CONTEXT, + type ValidationIssue, + WILDCARD, +} from "./utilities"; + +export type NormalizeResult = Presentation4NormalizeResult; + +export const defaultEntities: Presentation4Entities = { + Collection: {}, + Manifest: {}, + Timeline: {}, + Canvas: {}, + Scene: {}, + AnnotationPage: {}, + AnnotationCollection: {}, + Annotation: {}, + ContentResource: {}, + Range: {}, + Service: {}, + Selector: {}, + Agent: {}, + Quantity: {}, + Transform: {}, +}; + +export function getDefaultEntities(): Presentation4Entities { + return { + Collection: {}, + Manifest: {}, + Timeline: {}, + Canvas: {}, + Scene: {}, + AnnotationPage: {}, + AnnotationCollection: {}, + Annotation: {}, + ContentResource: {}, + Range: {}, + Service: {}, + Selector: {}, + Agent: {}, + Quantity: {}, + Transform: {}, + }; +} + +function mergeEntity( + existing: any, + incoming: any, + context?: { parent?: any; isTopLevel?: boolean; legacyMode?: boolean } +): NormalizedEntityV4 { + if (!incoming) { + return existing; + } + + if (Array.isArray(existing)) { + if (!Array.isArray(incoming)) { + throw new Error("Cannot merge array with non-array"); + } + + const merged = [...existing]; + for (const item of incoming) { + if (item === null || typeof item === "undefined") { + continue; + } + if (Array.isArray(item)) { + merged.push(item); + } else if (typeof item === "object" && item.id && item.type) { + const existingIdx = merged.findIndex((e) => e && e.id === item.id && e.type === item.type); + if (existingIdx >= 0) { + merged[existingIdx] = mergeEntity(merged[existingIdx], item); + } else { + merged.push(item); + } + } else if (existing.indexOf(item) === -1) { + merged.push(item); + } + } + return merged as any; + } + + if (existing && typeof existing === "object") { + if (Array.isArray(incoming) || typeof incoming !== "object") { + throw new Error("Cannot merge object with non-object"); + } + + const merged = { ...existing }; + const added: string[] = []; + const unchanged: string[] = []; + const existingKeys = Object.keys(existing).filter((key) => key !== HAS_PART && key !== "id" && key !== "type"); + const previouslyChangedValues: any = {}; + const incomingChangedValues: any = {}; + + for (const [key, val] of Object.entries(incoming)) { + if (key === HAS_PART || key === "id" || key === "type") { + continue; + } + const currentVal = merged[key]; + if (currentVal === val) { + unchanged.push(key); + } else if (currentVal === EMPTY || !currentVal) { + added.push(key); + merged[key] = val; + } else { + if (currentVal && val) { + previouslyChangedValues[key] = currentVal; + incomingChangedValues[key] = val; + } + merged[key] = mergeEntity(currentVal, val); + if (merged[key] === previouslyChangedValues[key]) { + unchanged.push(key); + delete previouslyChangedValues[key]; + } + } + } + + if (context && ((context.parent && context.parent.id) || context.isTopLevel)) { + const newHasPart: any[] = []; + const part: any = {}; + if (context.parent) { + part[PART_OF] = context.parent.id; + } else if (context.isTopLevel) { + part[PART_OF] = existing.id; + } + + if (merged[HAS_PART] && merged[HAS_PART].length) { + const noExplicit = !(merged[HAS_PART] || []).find((r: any) => r["@explicit"]); + const changedKeys = Object.keys(incomingChangedValues); + const hasDiverged = context.legacyMode + ? added.length > 0 || unchanged.length !== existingKeys.length + : added.length > 0 || changedKeys.length > 0; + if (noExplicit && hasDiverged) { + for (const item of merged[HAS_PART]) { + const first = { ...item }; + const previouslyChangedKeys = Object.keys(previouslyChangedValues); + first["@explicit"] = true; + for (const addedProperty of existingKeys) { + if (addedProperty !== HAS_PART) { + first[addedProperty] = WILDCARD; + } + } + for (const changedKey of previouslyChangedKeys) { + first[changedKey] = previouslyChangedValues[changedKey]; + } + newHasPart.push(first); + } + } else { + newHasPart.push(...merged[HAS_PART]); + } + + if (hasDiverged) { + part["@explicit"] = true; + for (const addedProperty of added) { + part[addedProperty] = WILDCARD; + } + for (const unchangedValue of unchanged) { + part[unchangedValue] = WILDCARD; + } + for (const changedKey of changedKeys) { + part[changedKey] = incomingChangedValues[changedKey]; + } + } + } + + part.id = merged.id; + part.type = merged.type; + newHasPart.push(part); + const seenFramingKeys = new Set(); + merged[HAS_PART] = newHasPart.filter((item: any) => { + const key = `${item?.[PART_OF] || ""}|${item?.id || ""}|${item?.type || ""}|${item?.["@explicit"] ? 1 : 0}`; + if (seenFramingKeys.has(key)) { + return false; + } + seenFramingKeys.add(key); + return true; + }); + } + + return merged; + } + + if (existing) { + return existing; + } + return incoming; +} + +function mergeEntities( + existing: NormalizedEntityV4, + incoming: Record, + context?: { parent?: any; isTopLevel?: boolean; legacyMode?: boolean } +): NormalizedEntityV4 { + if (typeof existing === "string") { + return existing as any; + } + + if (incoming.id !== (existing as any).id) { + throw new Error( + `Can only merge entities with identical identifiers! ${incoming.type || "unknown"}(${incoming.id}) => ${ + (existing as any).type || "unknown" + }(${(existing as any).id})` + ); + } + + return mergeEntity({ ...existing }, incoming, context); +} + +function detectSourceVersion(input: any): 2 | 3 | 4 | "unknown" { + if (!input || typeof input !== "object") { + return "unknown"; + } + + const context = input["@context"]; + const contexts = Array.isArray(context) ? context : [context]; + for (const item of contexts) { + if (typeof item !== "string") { + continue; + } + if (item.includes("/presentation/4/")) { + return 4; + } + if (item === PRESENTATION_3_CONTEXT || item.includes("/presentation/3/")) { + return 3; + } + if (item.includes("/presentation/2/") || item.includes("shared-canvas.org/ns/context.json")) { + return 2; + } + } + + const type = input["@type"]; + if (type === "sc:Manifest" || type === "sc:Collection") { + return 2; + } + return "unknown"; +} + +function normalizeEntityReference(resource: any, type: string): any { + if (typeof resource === "string") { + return { id: resource, type }; + } + return resource; +} + +function mapTypeToStore(type: string): keyof Presentation4Entities { + switch (type) { + case "Collection": + return "Collection"; + case "Manifest": + return "Manifest"; + case "Timeline": + return "Timeline"; + case "Canvas": + return "Canvas"; + case "Scene": + return "Scene"; + case "AnnotationPage": + return "AnnotationPage"; + case "AnnotationCollection": + return "AnnotationCollection"; + case "Annotation": + return "Annotation"; + case "Range": + return "Range"; + case "Service": + return "Service"; + case "Agent": + return "Agent"; + case "Selector": + return "Selector"; + case "Quantity": + return "Quantity"; + case "Transform": + return "Transform"; + default: + return "ContentResource"; + } +} + +function withId( + type: string, + diagnostics: ValidationIssue[], + pathPrefix = "$" +): (resource: any, context: TraversalContext) => any { + return (resource, context) => { + if (!resource || typeof resource !== "object") { + return normalizeEntityReference(resource, type); + } + const id = getId(resource); + if (!id) { + const mintedId = mintDeterministicId(resource, type, context.path || pathPrefix); + resource.id = mintedId; + diagnostics.push({ + code: "minted-id", + severity: "warning", + message: `Missing id minted for ${type}`, + path: context.path || pathPrefix, + resourceType: type, + resourceId: mintedId, + }); + } + if (!getType(resource)) { + resource.type = type; + } + return resource; + }; +} + +function ensureDefaultFields(defaultResource: R) { + return (resource: T): R => { + return { + ...defaultResource, + ...resource, + }; + }; +} + +function addFlagForExternalResource(resource: T): T { + if (resource && typeof resource === "object" && typeof resource.items === "undefined") { + (resource as any)["iiif-parser:isExternal"] = true; + } + return resource; +} + +function recordType(mapping: NormalizeResult["mapping"]) { + return (forcedType?: string) => (resource: any, _context: TraversalContext) => { + if (!resource || typeof resource !== "object") { + return resource; + } + const id = getId(resource); + if (!id) { + return resource; + } + const inferredType = forcedType || identifyResourceType(resource); + mapping[id] = mapTypeToStore(inferredType); + return resource; + }; +} + +function recordEntity(entities: Presentation4Entities, options: { legacyMode?: boolean } = {}) { + const { legacyMode = false } = options; + + return (forcedType?: string) => (resource: any, context: TraversalContext) => { + if (!resource || typeof resource !== "object") { + return resource; + } + const id = getId(resource); + if (!id) { + return resource; + } + + const inferredType = forcedType || identifyResourceType(resource); + const storeType = mapTypeToStore(inferredType); + if (Object.prototype.hasOwnProperty.call(resource, "language")) { + if (typeof resource.language === "string") { + resource.language = [resource.language]; + } else if (Array.isArray(resource.language)) { + resource.language = resource.language.filter((item: unknown): item is string => typeof item === "string"); + } else if (resource.language == null) { + resource.language = []; + } + } else if (storeType === "ContentResource") { + resource.language = []; + } + + const current = entities[storeType][id]; + const mergeContext = { + parent: context.parent, + isTopLevel: context.path === "$", + legacyMode, + }; + entities[storeType][id] = current + ? mergeEntities(current as any, resource, mergeContext) + : mergeEntities({ id, type: getType(resource) || inferredType } as any, resource, mergeContext); + + return { + id, + type: storeType === "ContentResource" ? "ContentResource" : getType(resource) || inferredType, + }; + }; +} + +function recordSelectorForLoading( + entities: Presentation4Entities, + mapping: NormalizeResult["mapping"], + options: { preserveResourceShape?: boolean; legacyMode?: boolean } = {} +) { + const { preserveResourceShape = false } = options; + const { legacyMode = false } = options; + + return (resource: any, context: TraversalContext) => { + if (!resource || typeof resource !== "object") { + return resource; + } + const existingId = getId(resource); + const id = existingId || mintDeterministicId(resource, "Selector", context.path); + const resourceToStore = existingId + ? resource + : { + ...resource, + id, + type: getType(resource) || "Selector", + }; + + mapping[id] = "Selector"; + const current = entities.Selector[id]; + const mergeContext = { + parent: context.parent, + isTopLevel: context.path === "$", + legacyMode, + }; + entities.Selector[id] = ( + current + ? mergeEntities(current as any, resourceToStore, mergeContext) + : mergeEntities({ id, type: getType(resourceToStore) || "Selector" } as any, resourceToStore, mergeContext) + ) as any; + + if (!existingId && !preserveResourceShape) { + resource.id = id; + if (!getType(resource)) { + resource.type = getType(resourceToStore) || "Selector"; + } + } + + return resource; + }; +} + +function recordServiceForLoading(entities: Presentation4Entities, options: { legacyMode?: boolean } = {}) { + const { legacyMode = false } = options; + + return (resource: any, context: TraversalContext) => { + if (!resource || typeof resource !== "object") { + return resource; + } + const id = getId(resource); + if (!id) { + return resource; + } + + const current = entities.Service[id]; + const mergeContext = { + parent: context.parent, + isTopLevel: context.path === "$", + legacyMode, + }; + entities.Service[id] = ( + current + ? mergeEntities(current as any, resource, mergeContext) + : mergeEntities({ id, type: getType(resource) || "Service" } as any, resource, mergeContext) + ) as any; + + // Keep the full service object on the parent resource, matching P3 behavior. + return resource; + }; +} + +export function normalize(input: unknown): NormalizeResult { + const sourceVersion = detectSourceVersion(input as any); + const isLegacySource = sourceVersion === 2 || sourceVersion === 3; + const diagnostics: ValidationIssue[] = []; + const originalContext = input && typeof input === "object" ? (input as any)["@context"] : undefined; + const upgraded = upgradeToPresentation4(input); + + if (upgraded && typeof upgraded === "object") { + if (isLegacySource) { + upgraded["@context"] = sourceVersion === 2 ? PRESENTATION_3_CONTEXT : originalContext || PRESENTATION_3_CONTEXT; + } else if (!upgraded["@context"]) { + upgraded["@context"] = PRESENTATION_4_CONTEXT; + } + } + + const entities = getDefaultEntities(); + const mapping: NormalizeResult["mapping"] = {}; + + const record = recordEntity(entities, { legacyMode: isLegacySource }); + const map = recordType(mapping); + const shouldCoerceContainerTargets = isLegacySource; + + const contentResourceTraversals: Array<(resource: any, context: TraversalContext) => any> = [ + withId("ContentResource", diagnostics), + ]; + if (!isLegacySource) { + contentResourceTraversals.push(ensureDefaultFields(emptyContentResource)); + } + contentResourceTraversals.push(map("ContentResource"), record("ContentResource")); + + const selectorTraversals: Array<(resource: any, context: TraversalContext) => any> = []; + if (!isLegacySource) { + selectorTraversals.push(withId("Selector", diagnostics), ensureDefaultFields(emptySelector)); + } + selectorTraversals.push( + recordSelectorForLoading(entities, mapping, { preserveResourceShape: isLegacySource, legacyMode: isLegacySource }) + ); + + const specificResourceTraversals: Array<(resource: any, context: TraversalContext) => any> = []; + if (!isLegacySource) { + specificResourceTraversals.push(ensureDefaultFields(emptySpecificResource)); + } + + const traversal = new Traverse( + { + collection: [ + ...(isLegacySource ? [addFlagForExternalResource] : []), + withId("Collection", diagnostics), + ensureDefaultFields((isLegacySource ? legacyEmptyCollection : emptyCollection) as any), + map("Collection"), + record("Collection"), + ], + manifest: [ + ...(isLegacySource ? [addFlagForExternalResource] : []), + withId("Manifest", diagnostics), + ensureDefaultFields((isLegacySource ? legacyEmptyManifest : emptyManifest) as any), + map("Manifest"), + record("Manifest"), + ], + timeline: [ + withId("Timeline", diagnostics), + ensureDefaultFields(emptyTimeline), + map("Timeline"), + record("Timeline"), + ], + canvas: [ + withId("Canvas", diagnostics), + ensureDefaultFields((isLegacySource ? legacyEmptyCanvas : emptyCanvas) as any), + map("Canvas"), + record("Canvas"), + ], + scene: [withId("Scene", diagnostics), ensureDefaultFields(emptyScene), map("Scene"), record("Scene")], + annotationCollection: [ + withId("AnnotationCollection", diagnostics), + ensureDefaultFields(emptyAnnotationCollection), + map("AnnotationCollection"), + record("AnnotationCollection"), + ], + annotationPage: [ + ...(isLegacySource ? [addFlagForExternalResource] : []), + withId("AnnotationPage", diagnostics), + ensureDefaultFields((isLegacySource ? legacyEmptyAnnotationPage : emptyAnnotationPage) as any), + map("AnnotationPage"), + record("AnnotationPage"), + ], + annotation: [ + withId("Annotation", diagnostics), + ...(isLegacySource ? [] : [ensureDefaultFields(emptyAnnotation)]), + map("Annotation"), + record("Annotation"), + ], + contentResource: contentResourceTraversals, + range: [ + withId("Range", diagnostics), + ensureDefaultFields((isLegacySource ? legacyEmptyRange : emptyRange) as any), + map("Range"), + record("Range"), + ], + service: [ + withId("Service", diagnostics), + ensureDefaultFields((isLegacySource ? legacyEmptyService : emptyService) as any), + map("Service"), + recordServiceForLoading(entities, { legacyMode: isLegacySource }), + ], + selector: selectorTraversals, + quantity: [ + withId("Quantity", diagnostics), + ...(isLegacySource ? [] : [ensureDefaultFields(emptyQuantity)]), + map("Quantity"), + record("Quantity"), + ], + transform: [ + withId("Transform", diagnostics), + ...(isLegacySource ? [] : [ensureDefaultFields(emptyTransform)]), + map("Transform"), + record("Transform"), + ], + agent: [ + withId("Agent", diagnostics), + ensureDefaultFields((isLegacySource ? legacyEmptyAgent : emptyAgent) as any), + map("Agent"), + record("Agent"), + ], + specificResource: specificResourceTraversals, + }, + { + coerceContainerTargetsToSpecificResources: shouldCoerceContainerTargets, + legacyPresentation3Behavior: isLegacySource, + } + ); + + const resource = traversal.traverseUnknown(upgraded, { path: "$" }); + const resourceId = getId(resource); + const resourceType = getType(resource); + + if (!resourceId || !resourceType) { + throw new Error("Top level resource did not resolve to an id/type pair"); + } + + const report = createValidationReport(diagnostics); + + return { + entities, + mapping, + resource: { id: resourceId, type: mapTypeToStore(resourceType) }, + diagnostics: report.issues, + sourceVersion, + }; +} diff --git a/src/presentation-4/serialize-presentation-3.ts b/src/presentation-4/serialize-presentation-3.ts new file mode 100644 index 0000000..baa0089 --- /dev/null +++ b/src/presentation-4/serialize-presentation-3.ts @@ -0,0 +1,289 @@ +import { type SerializeConfig, UNSET } from "./serialize"; +import { PRESENTATION_3_CONTEXT, sceneComponentTypes } from "./utilities"; + +const unsupportedSelectorTypes = new Set(["PointSelector", "WktSelector", "AnimationSelector"]); +const unsupportedContainerTypes = new Set(["Scene"]); +const unsupportedContentTypes = new Set([ + "Model", + "PerspectiveCamera", + "OrthographicCamera", + "AmbientLight", + "DirectionalLight", + "PointLight", + "SpotLight", + "AmbientAudio", + "PointAudio", + "SpotAudio", +]); + +function unsupported(message: string): never { + throw new Error(`Presentation 4 -> 3 downgrade unsupported: ${message}`); +} + +function filterList(value: T[] | T | typeof UNSET | undefined): T[] | undefined { + if (!value || value === UNSET) { + return undefined; + } + const list = Array.isArray(value) ? value : [value]; + const filtered = list.filter((item) => item !== UNSET && Boolean(item)); + return filtered.length ? filtered : undefined; +} + +function inlineList(value: T[] | T | undefined): T[] | undefined { + if (!value) { + return undefined; + } + const list = Array.isArray(value) ? value : [value]; + const filtered = list.filter((item) => item !== null && typeof item !== "undefined"); + return filtered.length ? filtered : undefined; +} + +function normalizeAnnotationTarget(target: any): any { + if (!target || typeof target !== "object" || Array.isArray(target)) { + return target; + } + const type = target.type || target["@type"]; + if (type !== "Annotation") { + return target; + } + const id = stripVaultId(target.id || target["@id"]); + return id ? { id, type: "Annotation" } : { type: "Annotation" }; +} + +function asSingleOrArray(items: T[] | undefined): T[] | T | undefined { + if (!items || items.length === 0) { + return undefined; + } + if (items.length === 1) { + return items[0]; + } + return items; +} + +function stripVaultId(id?: string) { + if (!id) { + return undefined; + } + return id.startsWith("vault://") ? undefined : id; +} + +function ensureNoV4OnlyBehavior(entity: any) { + if (unsupportedContainerTypes.has(entity.type)) { + unsupported(`container type ${entity.type}`); + } + if (entity.transform && entity.transform.length) { + unsupported("SpecificResource.transform"); + } + if (entity.action && entity.action.length) { + unsupported("SpecificResource.action"); + } + if (entity.exclude && entity.exclude.length) { + unsupported("Annotation.exclude"); + } + if (entity.position) { + unsupported("position"); + } + if (Array.isArray(entity.motivation) && entity.motivation.includes("activating")) { + unsupported("Annotation motivation activating"); + } +} + +function ensureNo3dContent(entity: any) { + const type = entity.type; + if (unsupportedContentTypes.has(type) || sceneComponentTypes.has(type)) { + unsupported(`content type ${type}`); + } +} + +function* linkedProperties(entity: any): Generator { + if ( + entity.placeholderContainer && + entity.placeholderContainer.type && + entity.placeholderContainer.type !== "Canvas" + ) { + unsupported(`placeholderContainer type ${entity.placeholderContainer.type}`); + } + if ( + entity.accompanyingContainer && + entity.accompanyingContainer.type && + entity.accompanyingContainer.type !== "Canvas" + ) { + unsupported(`accompanyingContainer type ${entity.accompanyingContainer.type}`); + } + + return [ + ["thumbnail", filterList(yield entity.thumbnail)], + ["provider", filterList(yield entity.provider)], + ["seeAlso", filterList(yield entity.seeAlso)], + ["service", filterList(yield entity.service)], + ["services", filterList(yield entity.services)], + ["homepage", filterList(yield entity.homepage)], + ["rendering", filterList(yield entity.rendering)], + ["partOf", filterList(yield entity.partOf)], + ["placeholderCanvas", entity.placeholderContainer ? yield entity.placeholderContainer : undefined], + ["accompanyingCanvas", entity.accompanyingContainer ? yield entity.accompanyingContainer : undefined], + ["annotations", filterList(yield entity.annotations)], + ]; +} + +function commonProperties(entity: any) { + ensureNoV4OnlyBehavior(entity); + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type], + ["label", entity.label], + ["metadata", entity.metadata?.length ? entity.metadata : undefined], + ["summary", entity.summary], + ["requiredStatement", entity.requiredStatement], + ["rights", entity.rights], + ["navDate", entity.navDate], + ["navPlace", entity.navPlace], + ["behavior", entity.behavior?.length ? entity.behavior : undefined], + ["viewingDirection", entity.viewingDirection], + ["format", entity.format], + ["height", entity.height], + ["width", entity.width], + ["duration", entity.duration], + ] as Array<[string, any]>; +} + +export const serializeConfigPresentation3: SerializeConfig = { + Collection: function* (entity, _state, { isTopLevel }) { + return [ + ...(isTopLevel ? [["@context", PRESENTATION_3_CONTEXT]] : []), + ...commonProperties(entity), + ...(yield* linkedProperties(entity)), + ["items", filterList(yield entity.items)], + ["first", entity.first], + ["last", entity.last], + ["total", entity.total], + ]; + }, + + Manifest: function* (entity, _state, { isTopLevel }) { + return [ + ...(isTopLevel ? [["@context", PRESENTATION_3_CONTEXT]] : []), + ...commonProperties(entity), + ...(yield* linkedProperties(entity)), + ["items", filterList(yield entity.items)], + ["structures", filterList(yield entity.structures)], + ["start", entity.start ? yield entity.start : undefined], + ]; + }, + + Timeline: function* (entity) { + return [ + ["id", stripVaultId(entity.id)], + ["type", "Canvas"], + ["label", entity.label], + ["width", 1], + ["height", 1], + ["duration", entity.duration], + ...(yield* linkedProperties(entity)), + ["items", filterList(yield entity.items)], + ]; + }, + + Canvas: function* (entity) { + return [ + ...commonProperties(entity), + ...(yield* linkedProperties(entity)), + ["items", filterList(yield entity.items)], + ]; + }, + + Scene: function* (_entity) { + unsupported("Scene container"); + }, + + AnnotationPage: function* (entity) { + return [ + ...commonProperties(entity), + ...(yield* linkedProperties(entity)), + ["items", filterList(yield entity.items)], + ]; + }, + + AnnotationCollection: function* (entity) { + return [ + ...commonProperties(entity), + ...(yield* linkedProperties(entity)), + ["items", filterList(yield entity.items)], + ["first", entity.first], + ["last", entity.last], + ["total", entity.total], + ]; + }, + + Annotation: function* (entity) { + ensureNoV4OnlyBehavior(entity); + return [ + ...commonProperties(entity), + ...(yield* linkedProperties(entity)), + ["motivation", asSingleOrArray(entity.motivation)], + ["body", asSingleOrArray(filterList(yield entity.body))], + ["target", asSingleOrArray(inlineList(entity.target)?.map((target) => normalizeAnnotationTarget(target)))], + ["timeMode", entity.timeMode], + ]; + }, + + Range: function* (entity) { + return [ + ...commonProperties(entity), + ...(yield* linkedProperties(entity)), + ["items", filterList(yield entity.items)], + ["start", entity.start ? yield entity.start : undefined], + ["supplementary", entity.supplementary ? yield entity.supplementary : undefined], + ]; + }, + + Agent: function* (entity) { + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type || "Agent"], + ["label", entity.label], + ...(yield* linkedProperties(entity)), + ]; + }, + + Service: function* (entity) { + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type], + ["profile", entity.profile], + ["service", filterList(yield entity.service)], + ]; + }, + + Selector: function* (entity) { + if (typeof entity.type === "string" && unsupportedSelectorTypes.has(entity.type)) { + unsupported(`selector type ${entity.type}`); + } + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type], + ["value", entity.value], + ["refinedBy", entity.refinedBy ? yield entity.refinedBy : undefined], + ]; + }, + + Quantity: function* (_entity) { + unsupported("Quantity"); + }, + + Transform: function* (_entity) { + unsupported("Transform"); + }, + + ContentResource: function* (entity) { + ensureNoV4OnlyBehavior(entity); + ensureNo3dContent(entity); + return [ + ...commonProperties(entity), + ...(yield* linkedProperties(entity)), + ["items", entity.items ? filterList(yield entity.items) : undefined], + ["source", entity.source ? yield entity.source : undefined], + ["selector", entity.selector ? asSingleOrArray(filterList(yield entity.selector)) : undefined], + ]; + }, +}; diff --git a/src/presentation-4/serialize-presentation-4.ts b/src/presentation-4/serialize-presentation-4.ts new file mode 100644 index 0000000..140ad93 --- /dev/null +++ b/src/presentation-4/serialize-presentation-4.ts @@ -0,0 +1,242 @@ +import { type SerializeConfig, UNSET } from "./serialize"; +import { PRESENTATION_4_CONTEXT } from "./utilities"; + +function filterList(value: T[] | typeof UNSET): T[] | undefined { + if (value === UNSET) { + return undefined; + } + if (!Array.isArray(value)) { + return undefined; + } + const filtered = value.filter((item) => item !== UNSET) as T[]; + return filtered.length ? filtered : undefined; +} + +function inlineList(value: T[] | T | undefined): T[] | undefined { + if (!value) { + return undefined; + } + const list = Array.isArray(value) ? value : [value]; + const filtered = list.filter((item) => item !== UNSET && item !== null && typeof item !== "undefined") as T[]; + return filtered.length ? filtered : undefined; +} + +function normalizeAnnotationTarget(target: any): any { + if (!target || typeof target !== "object" || Array.isArray(target)) { + return target; + } + const type = target.type || target["@type"]; + if (type !== "Annotation") { + return target; + } + const id = stripVaultId(target.id || target["@id"]); + return id ? { id, type: "Annotation" } : { type: "Annotation" }; +} + +function stripVaultId(id?: string) { + if (!id) { + return undefined; + } + return id.startsWith("vault://") ? undefined : id; +} + +function baseProperties(entity: any) { + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type], + ["label", entity.label], + ["metadata", entity.metadata?.length ? entity.metadata : undefined], + ["summary", entity.summary], + ["requiredStatement", entity.requiredStatement], + ["rights", entity.rights], + ["navDate", entity.navDate], + ["navPlace", entity.navPlace], + ["behavior", entity.behavior?.length ? entity.behavior : undefined], + ["profile", entity.profile], + ["format", entity.format], + ["height", entity.height], + ["width", entity.width], + ["duration", entity.duration], + ["spatialScale", entity.spatialScale], + ["temporalScale", entity.temporalScale], + ["backgroundColor", entity.backgroundColor], + ["viewingDirection", entity.viewingDirection], + ["timeMode", entity.timeMode], + ["services", undefined], + ] as Array<[string, any]>; +} + +function* withLinkedProperties(entity: any): Generator, any> { + return [ + ["thumbnail", filterList(yield entity.thumbnail)], + ["provider", filterList(yield entity.provider)], + ["seeAlso", filterList(yield entity.seeAlso)], + ["service", filterList(yield entity.service)], + ["services", filterList(yield entity.services)], + ["homepage", filterList(yield entity.homepage)], + ["rendering", filterList(yield entity.rendering)], + ["partOf", filterList(yield entity.partOf)], + ["placeholderContainer", entity.placeholderContainer ? yield entity.placeholderContainer : undefined], + ["accompanyingContainer", entity.accompanyingContainer ? yield entity.accompanyingContainer : undefined], + ["annotations", filterList(yield entity.annotations)], + ]; +} + +function* serializeContainer(entity: any, includeStructures = false): Generator { + return [ + ...baseProperties(entity), + ...(yield* withLinkedProperties(entity)), + ["items", filterList(yield entity.items)], + ...(includeStructures ? [["structures", filterList(yield entity.structures)]] : []), + ]; +} + +export const serializeConfigPresentation4: SerializeConfig = { + Collection: function* (entity, _state, { isTopLevel }) { + return [ + ...(isTopLevel ? [["@context", PRESENTATION_4_CONTEXT]] : []), + ...baseProperties(entity), + ...(yield* withLinkedProperties(entity)), + ["items", filterList(yield entity.items)], + ["first", entity.first], + ["last", entity.last], + ["total", entity.total], + ]; + }, + + Manifest: function* (entity, _state, { isTopLevel }) { + return [ + ...(isTopLevel ? [["@context", PRESENTATION_4_CONTEXT]] : []), + ...(yield* serializeContainer(entity, true)), + ["start", entity.start ? yield entity.start : undefined], + ]; + }, + + Timeline: function* (entity) { + return yield* serializeContainer(entity); + }, + + Canvas: function* (entity) { + return yield* serializeContainer(entity); + }, + + Scene: function* (entity) { + return yield* serializeContainer(entity); + }, + + AnnotationPage: function* (entity) { + return [ + ...baseProperties(entity), + ...(yield* withLinkedProperties(entity)), + ["items", filterList(yield entity.items)], + ]; + }, + + AnnotationCollection: function* (entity) { + return [ + ...baseProperties(entity), + ...(yield* withLinkedProperties(entity)), + ["items", filterList(yield entity.items)], + ["first", entity.first], + ["last", entity.last], + ["total", entity.total], + ]; + }, + + Annotation: function* (entity) { + return [ + ...baseProperties(entity), + ...(yield* withLinkedProperties(entity)), + ["motivation", entity.motivation?.length ? entity.motivation : undefined], + ["body", filterList(yield entity.body)], + ["target", inlineList(entity.target)?.map((target) => normalizeAnnotationTarget(target))], + ["timeMode", entity.timeMode], + ["exclude", entity.exclude?.length ? entity.exclude : undefined], + ["position", entity.position ? yield entity.position : undefined], + ]; + }, + + Range: function* (entity) { + return [ + ...baseProperties(entity), + ...(yield* withLinkedProperties(entity)), + ["items", filterList(yield entity.items)], + ["start", entity.start ? yield entity.start : undefined], + ["supplementary", entity.supplementary ? yield entity.supplementary : undefined], + ]; + }, + + Agent: function* (entity) { + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type || "Agent"], + ["label", entity.label], + ...(yield* withLinkedProperties(entity)), + ]; + }, + + Service: function* (entity) { + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type], + ["profile", entity.profile], + ["service", filterList(yield entity.service)], + ]; + }, + + Selector: function* (entity) { + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type], + ["value", entity.value], + ["x", entity.x], + ["y", entity.y], + ["z", entity.z], + ["instant", entity.instant], + ["region", entity.region], + ["size", entity.size], + ["rotation", entity.rotation], + ["quality", entity.quality], + ["format", entity.format], + ["version", entity.version], + ["refinedBy", entity.refinedBy ? yield entity.refinedBy : undefined], + ]; + }, + + Quantity: function* (entity) { + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type || "Quantity"], + ["quantityValue", entity.quantityValue], + ["unit", entity.unit], + ["label", entity.label], + ]; + }, + + Transform: function* (entity) { + return [ + ["id", stripVaultId(entity.id)], + ["type", entity.type], + ["x", entity.x], + ["y", entity.y], + ["z", entity.z], + ]; + }, + + ContentResource: function* (entity) { + return [ + ...baseProperties(entity), + ...(yield* withLinkedProperties(entity)), + ["items", entity.items ? filterList(yield entity.items) : undefined], + ["source", entity.source ? yield entity.source : undefined], + ["selector", entity.selector ? filterList(yield entity.selector) : undefined], + ["transform", entity.transform ? filterList(yield entity.transform) : undefined], + ["action", entity.action?.length ? entity.action : undefined], + ["lookAt", entity.lookAt ? yield entity.lookAt : undefined], + ["position", entity.position ? yield entity.position : undefined], + ["provides", entity.provides?.length ? entity.provides : undefined], + ["quantityValue", entity.quantityValue], + ["unit", entity.unit], + ]; + }, +}; diff --git a/src/presentation-4/serialize.ts b/src/presentation-4/serialize.ts new file mode 100644 index 0000000..1742c90 --- /dev/null +++ b/src/presentation-4/serialize.ts @@ -0,0 +1,157 @@ +export const UNSET = "__$UNSET$__"; +export const UNWRAP = "__$UNWRAP$__"; + +export type Field = [string, any]; + +export type CompatibleStore = { + requests: { + [url: string]: { resourceUri?: string } & any; + }; + entities: { + [type in T]: { + [id: string]: NormalizedEntity; + }; + }; + mapping: { + [id: string]: T; + }; +}; + +export type NormalizedEntity = { + id?: string; + type?: string; + "@id"?: string; + "@type"?: string; + [key: string]: any; +}; + +type SerializerContext = { + isTopLevel?: boolean; + parent?: any; + fullResource?: any; +}; + +export type Serializer = ( + entity: Type, + state: CompatibleStore, + context: SerializerContext +) => Generator; + +export type SerializeConfig = { + [type: string]: Serializer | undefined; +}; + +function resolveResource( + state: CompatibleStore, + value: any +): [NormalizedEntity | undefined, NormalizedEntity | undefined] { + if (!value) { + return [undefined, undefined]; + } + if (typeof value === "string") { + const type = state.mapping[value]; + const store = type ? state.entities[type] : undefined; + if (!type || !store) { + return [undefined, undefined]; + } + const entity = store[value]; + return [entity, entity]; + } + + const id = value.id || value["@id"]; + const explicitType = value.type || value["@type"]; + const mappedType = id ? state.mapping[id] : undefined; + const type = explicitType && state.entities[explicitType] ? explicitType : mappedType || explicitType; + const store = type ? state.entities[type] : undefined; + if (!id || !type || !store) { + return [undefined, undefined]; + } + + const request = state.requests[id]; + const full = store[request?.resourceUri || id]; + return [full, full]; +} + +export function serializedFieldsToObject(fields: Field[] | [typeof UNWRAP, any]): T { + if (Array.isArray(fields) && fields[0] === UNWRAP) { + return fields[1] as T; + } + + const object: any = {}; + for (const [key, value] of fields as Field[]) { + if (value !== UNSET && typeof value !== "undefined" && value !== null) { + object[key] = value; + } + } + return object as T; +} + +export function serialize( + state: CompatibleStore, + subject: { id: string; type: string }, + config: SerializeConfig +): Return { + if (!subject.type || !subject.id) { + throw new Error("Unknown entity"); + } + + if (!config[subject.type]) { + throw new Error(`Serializer not found for ${subject.type}`); + } + + function flatten(sub: { id: string; type: string }, parent?: any, depth = 0): any { + if (depth > 40) { + throw new Error(`Circular reference at ${sub.type}(${sub.id})`); + } + + const mappedType = sub.id ? state.mapping[sub.id] : undefined; + const serializerType = config[sub.type] ? sub.type : mappedType && config[mappedType] ? mappedType : sub.type; + const generator = config[serializerType]; + if (!generator) { + return UNSET; + } + + const [resource, full] = resolveResource( + state, + serializerType === sub.type ? sub : { ...sub, type: serializerType } + ); + if (!resource) { + return UNSET; + } + + const iterator = generator(resource, state, { + parent, + fullResource: full, + isTopLevel: subject.id === sub.id && subject.type === sub.type, + }); + + let current = iterator.next(); + while (!current.done) { + const request = current.value; + let next: any = UNSET; + + if (Array.isArray(request)) { + next = request.map((item) => { + if (!item || typeof item !== "object") { + return item; + } + return flatten(item, sub, depth + 1); + }); + } else if (request && typeof request === "object") { + next = flatten(request, sub, depth + 1); + } else if (request && request !== UNSET) { + next = request; + } + + current = iterator.next(next); + } + + if (current.value === UNSET) { + return UNSET; + } + + return serializedFieldsToObject(current.value as any); + } + + return flatten(subject) as Return; +} diff --git a/src/presentation-4/traverse.ts b/src/presentation-4/traverse.ts new file mode 100644 index 0000000..9a06f9a --- /dev/null +++ b/src/presentation-4/traverse.ts @@ -0,0 +1,817 @@ +import { splitCanvasFragment } from "../shared/canvas-fragments"; +import { compose } from "../shared/compose"; +import { ensureArray } from "../shared/ensure-array"; +import { + annotationTypes, + containerTypes, + getId, + getType, + identifyResourceType, + isQuantity, + isSelector, + isSpecificResource, + sceneComponentTypes, + structuralTypes, +} from "./utilities"; + +export type TraversalContext = { + parent?: any; + path: string; + typeHint?: string; +}; + +export type Traversal = (resource: T, context: TraversalContext) => T | void; + +export type TraversalMap = { + collection?: Array; + manifest?: Array; + timeline?: Array; + canvas?: Array; + scene?: Array; + annotationCollection?: Array; + annotationPage?: Array; + annotation?: Array; + contentResource?: Array; + range?: Array; + service?: Array; + agent?: Array; + specificResource?: Array; + selector?: Array; + quantity?: Array; + transform?: Array; +}; + +export type TraverseOptions = { + allowUndefinedReturn: boolean; + coerceContainerTargetsToSpecificResources: boolean; + legacyPresentation3Behavior: boolean; +}; + +type UnknownTraversalArgs = { + parent?: any; + path: string; + typeHint?: string; +}; + +const linkedResourceKeys = ["thumbnail", "homepage", "rendering", "seeAlso", "supplementary", "logo"] as const; + +const linkedObjectKeys = ["placeholderContainer", "accompanyingContainer", "start"] as const; + +function isResourceReference(resource: any): boolean { + if (!resource || typeof resource !== "object" || Array.isArray(resource)) { + return false; + } + if (typeof resource.id !== "string" || typeof resource.type !== "string") { + return false; + } + if (resource.type === "SpecificResource") { + return false; + } + return Object.keys(resource).every((key) => key === "id" || key === "type"); +} + +export class Traverse { + private traversals: Required; + private options: TraverseOptions; + + constructor(traversals: TraversalMap = {}, options: Partial = {}) { + this.traversals = { + collection: [], + manifest: [], + timeline: [], + canvas: [], + scene: [], + annotationCollection: [], + annotationPage: [], + annotation: [], + contentResource: [], + range: [], + service: [], + agent: [], + specificResource: [], + selector: [], + quantity: [], + transform: [], + ...traversals, + }; + this.options = { + allowUndefinedReturn: false, + coerceContainerTargetsToSpecificResources: false, + legacyPresentation3Behavior: false, + ...options, + }; + } + + static all(traversal: Traversal) { + return new Traverse({ + collection: [traversal], + manifest: [traversal], + timeline: [traversal], + canvas: [traversal], + scene: [traversal], + annotationCollection: [traversal], + annotationPage: [traversal], + annotation: [traversal], + contentResource: [traversal], + range: [traversal], + service: [traversal], + agent: [traversal], + specificResource: [traversal], + selector: [traversal], + quantity: [traversal], + transform: [traversal], + }); + } + + private traverseLinkedResources(resource: any, path: string) { + if (!resource || typeof resource !== "object") { + return resource; + } + + for (const key of linkedResourceKeys) { + if (resource[key]) { + resource[key] = ensureArray(resource[key]).map((item: any, index: number) => + this.traverseContentResource(item, resource, `${path}.${key}[${index}]`) + ); + } + } + + if (resource.provider) { + resource.provider = ensureArray(resource.provider).map((item: any, index: number) => + this.traverseAgent(item, resource, `${path}.provider[${index}]`) + ); + } + + if (resource.service) { + resource.service = ensureArray(resource.service).map((item: any, index: number) => + this.traverseService(item, resource, `${path}.service[${index}]`) + ); + } + + if (resource.services) { + resource.services = ensureArray(resource.services).map((item: any, index: number) => + this.traverseService(item, resource, `${path}.services[${index}]`) + ); + } + + if (resource.partOf) { + resource.partOf = ensureArray(resource.partOf).map((item: any, index: number) => + typeof item === "string" + ? item + : this.traverseUnknown(item, { + parent: resource, + path: `${path}.partOf[${index}]`, + }) + ); + } + + for (const key of linkedObjectKeys) { + if (resource[key]) { + if (key === "start" && this.options.coerceContainerTargetsToSpecificResources) { + const specificResource = this.toSpecificResource(resource[key], "Canvas"); + const sourceValue = resource[key]; + const isAlreadySpecificResource = isSpecificResource(sourceValue); + const hasSpecificResourceFields = + !!sourceValue && + typeof sourceValue === "object" && + !Array.isArray(sourceValue) && + ("source" in sourceValue || + "selector" in sourceValue || + "transform" in sourceValue || + "action" in sourceValue); + + if ( + specificResource && + (specificResource.selector || isAlreadySpecificResource || hasSpecificResourceFields) + ) { + resource[key] = this.traverseSpecificResource(specificResource, "Canvas", resource, `${path}.${key}`); + continue; + } + } + resource[key] = this.traverseUnknown(resource[key], { + parent: resource, + path: `${path}.${key}`, + }); + } + } + + if (resource.navPlace && typeof resource.navPlace === "object") { + resource.navPlace = this.traverseType(resource.navPlace, { parent: resource, path: `${path}.navPlace` }, []); + } + + return resource; + } + + private traverseContainerItems(container: any, path: string) { + if (!container || typeof container !== "object") { + return container; + } + + if (container.items) { + container.items = ensureArray(container.items).map((item: any, index: number) => { + const itemType = identifyResourceType(item); + if (itemType === "AnnotationPage") { + return this.traverseAnnotationPage(item, container, `${path}.items[${index}]`); + } + return this.traverseUnknown(item, { + parent: container, + path: `${path}.items[${index}]`, + }); + }); + } + + if (container.annotations) { + container.annotations = ensureArray(container.annotations).map((item: any, index: number) => + this.traverseAnnotationPage(item, container, `${path}.annotations[${index}]`) + ); + } + + return container; + } + + private traverseManifestItems(manifest: any, path: string) { + if (manifest.items) { + if (this.options.legacyPresentation3Behavior) { + ensureArray(manifest.items).forEach((item: any, index: number) => { + this.traverseUnknown(item, { + path: `${path}.items[${index}]`, + }); + }); + } else { + manifest.items = ensureArray(manifest.items).map((item: any, index: number) => + this.traverseUnknown(item, { + parent: manifest, + path: `${path}.items[${index}]`, + }) + ); + } + } + if (manifest.structures) { + if (this.options.legacyPresentation3Behavior) { + manifest.structures = ensureArray(manifest.structures).map((item: any, index: number) => + this.traverseRange(item, undefined, `${path}.structures[${index}]`) + ); + } else { + manifest.structures = ensureArray(manifest.structures).map((item: any, index: number) => + this.traverseRange(item, manifest, `${path}.structures[${index}]`) + ); + } + } + return manifest; + } + + private traverseCollectionItems(collection: any, path: string) { + if (collection.items) { + if (this.options.legacyPresentation3Behavior) { + ensureArray(collection.items).forEach((item: any, index: number) => { + this.traverseUnknown(item, { + path: `${path}.items[${index}]`, + }); + }); + } else { + collection.items = ensureArray(collection.items).map((item: any, index: number) => + this.traverseUnknown(item, { + parent: collection, + path: `${path}.items[${index}]`, + }) + ); + } + } + return collection; + } + + traverseCollection(collection: any, parent?: any, path = "$"): any { + const withCollectionItems = this.traverseCollectionItems(collection, path); + const withContainerItems = this.options.legacyPresentation3Behavior + ? withCollectionItems + : this.traverseContainerItems(withCollectionItems, path); + + return this.traverseType( + this.traverseLinkedResources(withContainerItems, path), + { parent, path }, + this.traversals.collection + ); + } + + traverseManifest(manifest: any, parent?: any, path = "$"): any { + const pipeline = compose( + (value: any) => this.traverseManifestItems(value, path), + (value: any) => this.traverseContainerItems(value, path), + (value: any) => this.traverseLinkedResources(value, path) + ); + return this.traverseType(pipeline(manifest), { parent, path }, this.traversals.manifest); + } + + traverseTimeline(timeline: any, parent?: any, path = "$"): any { + return this.traverseType( + this.traverseLinkedResources(this.traverseContainerItems(timeline, path), path), + { parent, path }, + this.traversals.timeline + ); + } + + traverseCanvas(canvas: any, parent?: any, path = "$"): any { + return this.traverseType( + this.traverseLinkedResources(this.traverseContainerItems(canvas, path), path), + { parent, path }, + this.traversals.canvas + ); + } + + traverseScene(scene: any, parent?: any, path = "$"): any { + return this.traverseType( + this.traverseLinkedResources(this.traverseContainerItems(scene, path), path), + { parent, path }, + this.traversals.scene + ); + } + + private traverseAnnotationItems(page: any, path: string) { + if (page.items) { + page.items = ensureArray(page.items).map((item: any, index: number) => + this.traverseUnknown(item, { + parent: page, + path: `${path}.items[${index}]`, + typeHint: "Annotation", + }) + ); + } + return page; + } + + traverseAnnotationPage(annotationPage: any, parent?: any, path = "$"): any { + return this.traverseType( + this.traverseLinkedResources(this.traverseAnnotationItems(annotationPage, path), path), + { parent, path }, + this.traversals.annotationPage + ); + } + + traverseAnnotationCollection(annotationCollection: any, parent?: any, path = "$"): any { + return this.traverseType( + this.traverseLinkedResources(this.traverseAnnotationItems(annotationCollection, path), path), + { parent, path }, + this.traversals.annotationCollection + ); + } + + private traverseAnnotationBody(annotation: any, path: string) { + if (annotation.body) { + annotation.body = ensureArray(annotation.body).map((body: any, index: number) => + this.traverseUnknown(body, { + parent: annotation, + path: `${path}.body[${index}]`, + typeHint: "ContentResource", + }) + ); + } + return annotation; + } + + private traverseAnnotationTarget(annotation: any, path: string) { + if (annotation.target) { + const originalTarget = annotation.target; + const targets = ensureArray(annotation.target).map((target: any, index: number) => { + const targetPath = `${path}.target[${index}]`; + if (isSpecificResource(target)) { + return this.traverseSpecificResource(target, undefined, annotation, targetPath); + } + + const typeHint = this.getContainerTypeHint(target, "Canvas"); + const implicitSpecificResource = this.toImplicitSpecificResource(target, typeHint); + if (implicitSpecificResource) { + return this.traverseSpecificResource(implicitSpecificResource, typeHint, annotation, targetPath); + } + + if (this.options.coerceContainerTargetsToSpecificResources) { + const specificResource = this.toSpecificResource(target, typeHint); + if (specificResource) { + return this.traverseSpecificResource(specificResource, typeHint, annotation, targetPath); + } + } + + if (typeof target === "string") { + const specificResource = this.toSpecificResource(target, typeHint); + if (specificResource && specificResource.selector) { + return this.traverseSpecificResource(specificResource, typeHint, annotation, targetPath); + } + return target; + } + + const targetType = getType(target); + if (targetType && containerTypes.has(targetType)) { + const specificResource = this.toSpecificResource(target, typeHint); + if (specificResource && specificResource.selector) { + return this.traverseSpecificResource(specificResource, typeHint, annotation, targetPath); + } + } + + if (isResourceReference(target)) { + return target; + } + return this.traverseUnknown(target, { + parent: annotation, + path: targetPath, + }); + }); + + if (this.options.legacyPresentation3Behavior) { + annotation.target = Array.isArray(originalTarget) ? targets : (targets[0] ?? null); + } else { + annotation.target = targets; + } + } + return annotation; + } + + traverseAnnotation(annotation: any, parent?: any, path = "$"): any { + return this.traverseType( + this.traverseLinkedResources( + this.traverseAnnotationTarget(this.traverseAnnotationBody(annotation, path), path), + path + ), + { parent, path }, + this.traversals.annotation + ); + } + + traverseSelector(selector: any, parent?: any, path = "$"): any { + if (selector.refinedBy) { + selector.refinedBy = this.traverseSelector(selector.refinedBy, selector, `${path}.refinedBy`); + } + return this.traverseType(selector, { parent, path }, this.traversals.selector); + } + + traverseQuantity(quantity: any, parent?: any, path = "$"): any { + return this.traverseType(quantity, { parent, path }, this.traversals.quantity); + } + + traverseTransform(transform: any, parent?: any, path = "$"): any { + return this.traverseType(transform, { parent, path }, this.traversals.transform); + } + + traverseSpecificResource(specificResource: any, typeHint?: string, parent?: any, path = "$"): any { + const normalizedSpecificResource = this.toSpecificResource(specificResource, typeHint || "Canvas"); + if (normalizedSpecificResource) { + specificResource = normalizedSpecificResource; + } + + const source = specificResource.source; + let nextSource = source; + const sourceWasDetailedObject = + !!source && + typeof source === "object" && + !Array.isArray(source) && + Object.keys(source).some((key) => key !== "id" && key !== "@id" && key !== "type" && key !== "@type"); + + if (Array.isArray(source)) { + nextSource = source.map((sourceItem: any, index: number) => + typeof sourceItem === "string" + ? sourceItem + : this.traverseUnknown(sourceItem, { + parent, + path: `${path}.source[${index}]`, + typeHint: typeHint || "ContentResource", + }) + ); + } else if (source && typeof source === "object") { + const traversedSource = this.traverseUnknown(source, { + parent, + path: `${path}.source`, + typeHint: typeHint || "ContentResource", + }); + nextSource = + this.options.legacyPresentation3Behavior && sourceWasDetailedObject && isResourceReference(traversedSource) + ? { + ...source, + id: getId(traversedSource) || getId(source), + type: getType(traversedSource) || getType(source) || typeHint || "ContentResource", + } + : traversedSource; + } + + if (specificResource.selector) { + const wasSelectorArray = Array.isArray(specificResource.selector); + const selectors = ensureArray(specificResource.selector).map((selector: any, index: number) => + this.traverseSelector(selector, specificResource, `${path}.selector[${index}]`) + ); + specificResource.selector = + this.options.legacyPresentation3Behavior && !wasSelectorArray ? (selectors[0] ?? undefined) : selectors; + } + + if (specificResource.transform) { + const wasTransformArray = Array.isArray(specificResource.transform); + const transforms = ensureArray(specificResource.transform).map((transform: any, index: number) => + this.traverseTransform(transform, specificResource, `${path}.transform[${index}]`) + ); + specificResource.transform = + this.options.legacyPresentation3Behavior && !wasTransformArray ? (transforms[0] ?? undefined) : transforms; + } + + if (specificResource.position && typeof specificResource.position === "object") { + specificResource.position = this.traverseSpecificResource( + specificResource.position, + "SpecificResource", + specificResource, + `${path}.position` + ); + } + + if (nextSource) { + specificResource.source = nextSource; + } + + if ( + this.options.legacyPresentation3Behavior && + !Object.prototype.hasOwnProperty.call(specificResource, "selector") + ) { + specificResource.selector = undefined; + } + + return this.traverseType(specificResource, { parent, path }, this.traversals.specificResource); + } + + traverseContentResource(contentResource: any, parent?: any, path = "$"): any { + if (!contentResource || typeof contentResource !== "object") { + if (this.options.legacyPresentation3Behavior && typeof contentResource === "string") { + return { id: contentResource, type: "ContentResource" }; + } + return contentResource; + } + + if (isSpecificResource(contentResource)) { + return this.traverseSpecificResource(contentResource, "ContentResource", parent, path); + } + + if (isQuantity(contentResource)) { + return this.traverseQuantity(contentResource, parent, path); + } + + if (isSelector(contentResource)) { + return this.traverseSelector(contentResource, parent, path); + } + + if (contentResource.type === "Choice" && contentResource.items) { + contentResource.items = ensureArray(contentResource.items).map((item: any, index: number) => + this.traverseContentResource(item, contentResource, `${path}.items[${index}]`) + ); + } + + if (contentResource.annotations) { + contentResource.annotations = ensureArray(contentResource.annotations).map((item: any, index: number) => + this.traverseAnnotationPage(item, contentResource, `${path}.annotations[${index}]`) + ); + } + + if (contentResource.service) { + contentResource.service = ensureArray(contentResource.service).map((service: any, index: number) => + this.traverseService(service, contentResource, `${path}.service[${index}]`) + ); + } + + if (contentResource.services) { + contentResource.services = ensureArray(contentResource.services).map((service: any, index: number) => + this.traverseService(service, contentResource, `${path}.services[${index}]`) + ); + } + + return this.traverseType( + this.traverseLinkedResources(contentResource, path), + { parent, path }, + this.traversals.contentResource + ); + } + + traverseRange(range: any, parent?: any, path = "$"): any { + if (range.items) { + range.items = ensureArray(range.items).map((item: any, index: number) => { + if (isSpecificResource(item)) { + return this.traverseSpecificResource(item, "Canvas", range, `${path}.items[${index}]`); + } + if (this.options.coerceContainerTargetsToSpecificResources) { + const typeHint = this.getContainerTypeHint(item, "Canvas"); + const specificResource = this.toSpecificResource(item, typeHint); + if (specificResource) { + return this.traverseSpecificResource(specificResource, typeHint, range, `${path}.items[${index}]`); + } + } + return this.traverseUnknown(item, { + parent: range, + path: `${path}.items[${index}]`, + }); + }); + } + return this.traverseType(this.traverseLinkedResources(range, path), { parent, path }, this.traversals.range); + } + + traverseAgent(agent: any, parent?: any, path = "$"): any { + return this.traverseType(this.traverseLinkedResources(agent, path), { parent, path }, this.traversals.agent); + } + + traverseService(service: any, parent?: any, path = "$"): any { + if (service && typeof service === "object" && service.service) { + service.service = ensureArray(service.service).map((innerService: any, index: number) => + this.traverseService(innerService, service, `${path}.service[${index}]`) + ); + } + return this.traverseType(service, { parent, path }, this.traversals.service); + } + + private traverseType(object: T, context: TraversalContext, traversals: Array>): T { + return traversals.reduce((acc: T, traversal: Traversal): T => { + const returnValue = traversal(acc, context) as T | undefined; + if (typeof returnValue === "undefined") { + return acc; + } + return returnValue; + }, object); + } + + private getContainerTypeHint(resource: any, fallbackType = "Canvas"): string { + const type = getType(resource); + if (type && containerTypes.has(type)) { + return type; + } + return fallbackType; + } + + private toSpecificResource(target: any, typeHint = "Canvas"): any | undefined { + if (Array.isArray(target) || target === null || typeof target === "undefined") { + return undefined; + } + + if (typeof target === "string") { + const [id, fragment] = splitCanvasFragment(target); + const specificResource: any = { + type: "SpecificResource", + source: { + id, + type: typeHint, + }, + }; + if (fragment) { + specificResource.selector = { + type: "FragmentSelector", + value: fragment, + }; + } + return specificResource; + } + + if (typeof target !== "object") { + return undefined; + } + + if (isSpecificResource(target)) { + const normalized = { ...target }; + if (typeof normalized.source === "string") { + normalized.source = { + id: normalized.source, + type: typeHint, + }; + } else if (normalized.source && typeof normalized.source === "object" && !Array.isArray(normalized.source)) { + if (!getType(normalized.source)) { + normalized.source = { + ...normalized.source, + type: typeHint, + }; + } + } else if (getId(normalized)) { + normalized.source = { + id: getId(normalized), + type: typeHint, + }; + } + + if ( + normalized.source && + typeof normalized.source === "object" && + !Array.isArray(normalized.source) && + typeof normalized.source.id === "string" + ) { + const [id, fragment] = splitCanvasFragment(normalized.source.id); + normalized.source = { + ...normalized.source, + id, + }; + if (!normalized.selector && fragment) { + normalized.selector = { + type: "FragmentSelector", + value: fragment, + }; + } + } + + return normalized; + } + + const targetType = getType(target); + if (targetType && !containerTypes.has(targetType)) { + return undefined; + } + + const targetId = getId(target); + if (!targetId) { + return undefined; + } + + const source: any = { + ...target, + id: targetId, + type: targetType || typeHint, + }; + const [id, fragment] = splitCanvasFragment(source.id); + source.id = id; + + const specificResource: any = { + type: "SpecificResource", + source, + }; + if (fragment) { + specificResource.selector = { + type: "FragmentSelector", + value: fragment, + }; + } + return specificResource; + } + + private toImplicitSpecificResource(target: any, typeHint = "Canvas"): any | undefined { + if (!target || typeof target !== "object" || Array.isArray(target) || getType(target)) { + return undefined; + } + + const targetId = getId(target); + const hasSpecificResourceFields = + "source" in target || "selector" in target || "transform" in target || "action" in target; + const [, fragment] = splitCanvasFragment(targetId); + + if (!hasSpecificResourceFields && !fragment) { + return undefined; + } + + if (hasSpecificResourceFields) { + return this.toSpecificResource( + { + ...target, + type: "SpecificResource", + }, + typeHint + ); + } + + return this.toSpecificResource(target, typeHint); + } + + traverseUnknown(resource: any, { parent, path, typeHint }: UnknownTraversalArgs): any { + const type = identifyResourceType(resource, typeHint); + + switch (type) { + case "Collection": + return this.traverseCollection(resource, parent, path); + case "Manifest": + return this.traverseManifest(resource, parent, path); + case "Timeline": + return this.traverseTimeline(resource, parent, path); + case "Canvas": + return this.traverseCanvas(resource, parent, path); + case "Scene": + return this.traverseScene(resource, parent, path); + case "AnnotationCollection": + return this.traverseAnnotationCollection(resource, parent, path); + case "AnnotationPage": + return this.traverseAnnotationPage(resource, parent, path); + case "Annotation": + return this.traverseAnnotation(resource, parent, path); + case "Range": + return this.traverseRange(resource, parent, path); + case "SpecificResource": + return this.traverseSpecificResource(resource, undefined, parent, path); + case "Selector": + return this.traverseSelector(resource, parent, path); + case "Quantity": + return this.traverseQuantity(resource, parent, path); + case "Transform": + return this.traverseTransform(resource, parent, path); + case "Service": + return this.traverseService(resource, parent, path); + case "Agent": + return this.traverseAgent(resource, parent, path); + case "ContentResource": + return this.traverseContentResource(resource, parent, path); + default: { + if ( + containerTypes.has(type) || + structuralTypes.has(type) || + annotationTypes.has(type) || + sceneComponentTypes.has(type) + ) { + return this.traverseContentResource(resource, parent, path); + } + throw new Error(`Unknown or unsupported resource type ${type}`); + } + } + } +} + +export const traverse = new Traverse(); diff --git a/src/presentation-4/types/index.ts b/src/presentation-4/types/index.ts new file mode 100644 index 0000000..9a1d587 --- /dev/null +++ b/src/presentation-4/types/index.ts @@ -0,0 +1,121 @@ +export type * from "./legacy/index"; + +import { createPresentationHelpers, type ResourceSpecs } from "../../presentation-shared/helpers/create-helpers"; +import type { + Agent, + Annotation, + AnnotationCollection, + AnnotationPage, + Canvas, + Collection, + Manifest, + Range, + Scene, + Timeline, +} from "./legacy/index"; +import type { + ContentResourceLike, + AudioResource, + DatasetResource, + ImageResource, + ModelResource, + SpecificResource, + TextResource, + Quantity, + VideoResource, +} from "./legacy/index"; +import type { + AmbientAudio, + AmbientLight, + DirectionalLight, + OrthographicCamera, + PerspectiveCamera, + PointAudio, + PointLight, + SpotAudio, + SpotLight, +} from "./legacy/index"; +import type { Selector } from "./legacy/index"; +import type { Transform } from "./legacy/index"; + +export type Container = Collection | Manifest | Timeline | Canvas | Scene; + +export type Presentation4HelperTypes = { + Collection: Collection; + Manifest: Manifest; + Timeline: Timeline; + Canvas: Canvas; + Scene: Scene; + AnnotationPage: AnnotationPage; + AnnotationCollection: AnnotationCollection; + Annotation: Annotation; + ContentResource: ContentResourceLike; + Range: Range; + Service: { id: string; type: string; profile?: string | string[] }; + Selector: Selector; + Agent: Agent; + Quantity: Quantity; + Transform: Transform; + SpecificResource: SpecificResource; + Image: ImageResource; + Audio: AudioResource; + Video: VideoResource; + Model: ModelResource; + Text: TextResource; + Dataset: DatasetResource; + PerspectiveCamera: PerspectiveCamera; + OrthographicCamera: OrthographicCamera; + AmbientLight: AmbientLight; + DirectionalLight: DirectionalLight; + PointLight: PointLight; + SpotLight: SpotLight; + AmbientAudio: AmbientAudio; + PointAudio: PointAudio; + SpotAudio: SpotAudio; +}; + +const presentation4Specs: ResourceSpecs = { + Collection: { type: "Collection", aliases: ["sc:Collection"] }, + Manifest: { type: "Manifest", aliases: ["sc:Manifest"] }, + Timeline: { type: "Timeline" }, + Canvas: { type: "Canvas", aliases: ["sc:Canvas"] }, + Scene: { type: "Scene" }, + AnnotationPage: { type: "AnnotationPage", aliases: ["sc:AnnotationList"] }, + AnnotationCollection: { type: "AnnotationCollection", aliases: ["sc:Layer"] }, + Annotation: { type: "Annotation", aliases: ["oa:Annotation"] }, + ContentResource: { + type: "ContentResource", + aliases: ["Image", "Audio", "Sound", "Video", "Model", "Text", "Dataset", "TextualBody", "Choice"], + }, + Range: { type: "Range", aliases: ["sc:Range"] }, + Service: { type: "Service" }, + Selector: { type: "Selector" }, + Agent: { type: "Agent" }, + Quantity: { type: "Quantity" }, + Transform: { type: "Transform", aliases: ["RotateTransform", "ScaleTransform", "TranslateTransform"] }, + SpecificResource: { type: "SpecificResource", aliases: ["oa:SpecificResource"] }, + Image: { type: "Image", aliases: ["dctypes:Image"] }, + Audio: { type: "Audio", aliases: ["Sound", "dctypes:Sound"] }, + Video: { type: "Video" }, + Model: { type: "Model" }, + Text: { type: "Text", aliases: ["TextualBody", "dctypes:Text"] }, + Dataset: { type: "Dataset" }, + PerspectiveCamera: { type: "PerspectiveCamera" }, + OrthographicCamera: { type: "OrthographicCamera" }, + AmbientLight: { type: "AmbientLight" }, + DirectionalLight: { type: "DirectionalLight" }, + PointLight: { type: "PointLight" }, + SpotLight: { type: "SpotLight" }, + AmbientAudio: { type: "AmbientAudio" }, + PointAudio: { type: "PointAudio" }, + SpotAudio: { type: "SpotAudio" }, +}; + +const presentation4Helpers = createPresentationHelpers(presentation4Specs); + +/** Runtime-checked identity helpers for Presentation 4 resources. */ +export const infer = presentation4Helpers.infer; +/** Runtime assertion helpers for Presentation 4 resources. */ +export const cast = presentation4Helpers.cast; +/** Type guards for Presentation 4 discriminated resources. */ +export const narrow = presentation4Helpers.narrow; diff --git a/src/presentation-4/types/legacy/index.d.ts b/src/presentation-4/types/legacy/index.d.ts new file mode 100644 index 0000000..59ef3b4 --- /dev/null +++ b/src/presentation-4/types/legacy/index.d.ts @@ -0,0 +1,96 @@ +export * from "../../../presentation-3/types/legacy/src/services/auth-service"; +export * from "../../../presentation-3/types/legacy/src/services/geo-json"; +export * from "../../../presentation-3/types/legacy/src/services/image-service"; +export * from "../../../presentation-3/types/legacy/src/services/search"; +export * from "../../../presentation-3/types/legacy/src/services/search-2"; +export * from "../../../presentation-3/types/legacy/src/services/auth-2"; +export * from "../../../presentation-3/types/legacy/src/iiif/descriptive"; +export * from "../../../presentation-3/types/legacy/src/iiif/linking"; +export * from "../../../presentation-3/types/legacy/src/iiif/structural"; +export * from "../../../presentation-3/types/legacy/src/iiif/technical"; +export * from "../../../presentation-3/types/legacy/src/utility"; +export * from "../../../presentation-3/types/legacy/src/reference"; +export * from "../../../presentation-3/types/legacy/src/extensions/nav-place"; +export * from "../../../presentation-3/types/legacy/src/extensions/text-granularity"; +export * from "../../../presentation-3/types/legacy/src/change-discovery"; +export type { Agent } from "../../../presentation-3/types/legacy/src/resources/annotation"; +export type { ResourceProvider } from "../../../presentation-3/types/legacy/src/resources/provider"; + +export type { + Annotation, + ContentStateAnnotation, + ActivatingAnnotation, + Presentation4Annotation, +} from "./src/resources/annotation"; +export type { AnnotationCollection } from "./src/resources/annotationCollection"; +export type { AnnotationPage } from "./src/resources/annotationPage"; +export type { Canvas, CanvasItemSchemas } from "./src/resources/canvas"; +export type { Collection, CollectionItemSchemas } from "./src/resources/collection"; +export type { + LanguageMap, + MetadataItem, + ResourceReference, + ServiceReference, + ContentResourceBase, + ImageResource, + AudioResource, + VideoResource, + ModelResource, + TextResource, + DatasetResource, + TextualBodyResource, + ChoiceResource, + SpecificResource, + ContentResourceLike, + ContentResource, +} from "./src/resources/contentResource"; +export type { Manifest } from "./src/resources/manifest"; +export type { Range, RangeItem } from "./src/resources/range"; +export type { Service, GenericService } from "./src/resources/service"; +export type { Timeline } from "./src/resources/timeline"; +export type { Scene } from "./src/resources/scene"; +export type { + LookAtTarget, + SceneComponentBase, + PerspectiveCamera, + OrthographicCamera, + AmbientLight, + DirectionalLight, + PointLight, + SpotLight, + AmbientAudio, + PointAudio, + SpotAudio, + Camera, + Light, + AudioEmitter, + SceneComponent, +} from "./src/resources/scene-components"; + +export type { + SelectorBase, + PointSelector, + FragmentSelector, + ImageApiSelector, + AudioContentSelector, + VisualContentSelector, + WktSelector, + PolygonZSelector, + AnimationSelector, + CompositeSelector, + Selector, +} from "./src/extensions/presentation-4"; + +export type { + InteractionMode, + Provides, + ExcludeType, + Quantity, + SpatialScale, + TemporalScale, + TransformBase, + RotateTransform, + ScaleTransform, + TranslateTransform, + Transform, +} from "./src/iiif/technical-v4"; diff --git a/src/presentation-4/types/legacy/src/extensions/presentation-4.d.ts b/src/presentation-4/types/legacy/src/extensions/presentation-4.d.ts new file mode 100644 index 0000000..c3de362 --- /dev/null +++ b/src/presentation-4/types/legacy/src/extensions/presentation-4.d.ts @@ -0,0 +1,58 @@ +import type { + AudioContentSelector as AudioContentSelectorV3, + FragmentSelector as FragmentSelectorV3, + ImageApiSelector as ImageApiSelectorV3, + PointSelector as PointSelectorV3, + Selector as SelectorV3, + SpecificResource as SpecificResourceV3, + VisualContentSelector as VisualContentSelectorV3, +} from "../../../../../presentation-3/types/legacy/src/resources/annotation"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; + +export type SelectorBase = { + id?: string; + type: string; +}; +type OneOrMany = T | T[]; + +export type PointSelector = Prettify & { type: "PointSelector"; z?: number; t?: number }>; +export type FragmentSelector = Prettify; +export type ImageApiSelector = Prettify; +export type AudioContentSelector = Prettify; +export type VisualContentSelector = Prettify; + +export type WktSelector = SelectorBase & { + type: "WktSelector" | "WKTSelector"; + value: string; +}; + +export type PolygonZSelector = SelectorBase & { + type: "PolygonZSelector"; + value: string; +}; + +export type AnimationSelector = SelectorBase & { + type: "AnimationSelector"; + value: string; +}; + +export type CompositeSelector = SelectorBase & { + type: "CompositeSelector" | "ChoiceSelector"; + selectors: OneOrMany; +}; + +type LegacySelectorWithoutPoint = Exclude; + +export type Selector = + | LegacySelectorWithoutPoint + | PointSelector + | WktSelector + | PolygonZSelector + | AnimationSelector + | CompositeSelector; + +export type ContentStateSpecificResource = Prettify< + Omit & { + selector?: OneOrMany; + } +>; diff --git a/src/presentation-4/types/legacy/src/iiif/technical-v4.d.ts b/src/presentation-4/types/legacy/src/iiif/technical-v4.d.ts new file mode 100644 index 0000000..0c6624e --- /dev/null +++ b/src/presentation-4/types/legacy/src/iiif/technical-v4.d.ts @@ -0,0 +1,62 @@ +import type { InternationalString } from "../../../../../presentation-3/types/legacy/src/iiif/descriptive"; +import type { LiteralUnion, Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; + +export type InteractionMode = LiteralUnion<"locked" | "orbit" | "hemisphere-orbit" | "free" | "free-direction">; + +export type Provides = LiteralUnion< + | "closedCaptions" + | "alternativeText" + | "audioDescription" + | "longDescription" + | "signLanguage" + | "highContrastAudio" + | "highContrastDisplay" + | "braille" + | "tactileGraphic" + | "transcript" + | "translation" + | "subtitles" +>; + +export type ExcludeType = LiteralUnion<"Audio" | "Animations" | "Cameras" | "Lights">; + +export type Quantity = Prettify<{ + id?: string; + type: "Quantity" | "Value" | string; + value: number; + unit?: string; + label?: InternationalString; + [key: string]: unknown; +}>; + +export type SpatialScale = Quantity; +export type TemporalScale = Quantity; + +export type TransformBase = { + id?: string; + type: string; + label?: InternationalString; +}; + +export type RotateTransform = TransformBase & { + type: "RotateTransform"; + x?: number; + y?: number; + z?: number; +}; + +export type ScaleTransform = TransformBase & { + type: "ScaleTransform"; + x?: number; + y?: number; + z?: number; +}; + +export type TranslateTransform = TransformBase & { + type: "TranslateTransform"; + x?: number; + y?: number; + z?: number; +}; + +export type Transform = RotateTransform | ScaleTransform | TranslateTransform; diff --git a/src/presentation-4/types/legacy/src/resources/annotation.d.ts b/src/presentation-4/types/legacy/src/resources/annotation.d.ts new file mode 100644 index 0000000..8b743d3 --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/annotation.d.ts @@ -0,0 +1,89 @@ +import type { + Annotation as AnnotationV3, + AnyMotivation, + W3CMotivation, +} from "../../../../../presentation-3/types/legacy/src/resources/annotation"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { + AgentLike, + ContentResourceLike, + LinkedResource, + OneOrMany, + ResourceReference, + ServiceLike, + SpecificResource, +} from "./contentResource"; +import type { ExcludeType, Transform } from "../iiif/technical-v4"; +import type { Selector } from "../extensions/presentation-4"; + +export type AnnotationMotivation = AnyMotivation | W3CMotivation | "contentState" | "activating" | string; +export type AnnotationBody = + | ContentResourceLike + | SpecificResource + | ResourceReference + | string + | Record; +export type AnnotationTarget = SpecificResource | ResourceReference | string | Record; + +export type ContentStateAnnotation = { + id?: string; + type: "Annotation"; + motivation: "contentState"; + target: OneOrMany; + body?: OneOrMany; + action?: OneOrMany>; + [key: string]: unknown; +}; + +export type ActivatingAnnotation = { + id?: string; + type: "Annotation"; + motivation: "activating"; + body: OneOrMany; + target: OneOrMany; + [key: string]: unknown; +}; + +export type Annotation = Prettify< + Omit< + AnnotationV3, + | "body" + | "target" + | "motivation" + | "timeMode" + | "selector" + | "thumbnail" + | "provider" + | "seeAlso" + | "service" + | "services" + | "homepage" + | "rendering" + | "partOf" + | "logo" + | "supplementary" + > & { + type: "Annotation"; + motivation?: OneOrMany; + body?: OneOrMany; + target: OneOrMany; + thumbnail?: OneOrMany; + provider?: OneOrMany>; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + homepage?: OneOrMany; + rendering?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + selector?: OneOrMany; + action?: OneOrMany>; + exclude?: OneOrMany; + position?: Selector; + timeMode?: string | null; + [key: string]: unknown; + } +>; + +export type Presentation4Annotation = Annotation | ActivatingAnnotation | ContentStateAnnotation; diff --git a/src/presentation-4/types/legacy/src/resources/annotationCollection.d.ts b/src/presentation-4/types/legacy/src/resources/annotationCollection.d.ts new file mode 100644 index 0000000..08848dd --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/annotationCollection.d.ts @@ -0,0 +1,41 @@ +import type { AnnotationCollection as AnnotationCollectionV3 } from "../../../../../presentation-3/types/legacy/src/resources/annotationCollection"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { Annotation } from "./annotation"; +import type { + ContentResourceLike, + LinkedResource, + MetadataItem, + OneOrMany, + ResourceReference, + ServiceLike, +} from "./contentResource"; + +export type AnnotationCollection = Prettify< + Omit< + AnnotationCollectionV3, + | "id" + | "items" + | "metadata" + | "seeAlso" + | "service" + | "services" + | "rendering" + | "homepage" + | "partOf" + | "logo" + | "supplementary" + > & { + id?: string; + type: "AnnotationCollection"; + items?: OneOrMany; + metadata?: OneOrMany; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + rendering?: OneOrMany; + homepage?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + } +>; diff --git a/src/presentation-4/types/legacy/src/resources/annotationPage.d.ts b/src/presentation-4/types/legacy/src/resources/annotationPage.d.ts new file mode 100644 index 0000000..bbbe2c9 --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/annotationPage.d.ts @@ -0,0 +1,41 @@ +import type { AnnotationPage as AnnotationPageV3 } from "../../../../../presentation-3/types/legacy/src/resources/annotationPage"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { Annotation } from "./annotation"; +import type { + ContentResourceLike, + LinkedResource, + MetadataItem, + OneOrMany, + ResourceReference, + ServiceLike, +} from "./contentResource"; + +export type AnnotationPage = Prettify< + Omit< + AnnotationPageV3, + | "id" + | "items" + | "metadata" + | "seeAlso" + | "service" + | "services" + | "rendering" + | "homepage" + | "partOf" + | "logo" + | "supplementary" + > & { + id?: string; + type: "AnnotationPage"; + items?: OneOrMany; + metadata?: OneOrMany; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + rendering?: OneOrMany; + homepage?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + } +>; diff --git a/src/presentation-4/types/legacy/src/resources/canvas.d.ts b/src/presentation-4/types/legacy/src/resources/canvas.d.ts new file mode 100644 index 0000000..62e4fb6 --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/canvas.d.ts @@ -0,0 +1,57 @@ +import type { Canvas as CanvasV3 } from "../../../../../presentation-3/types/legacy/src/resources/canvas"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { GeoJSON } from "../../../../../shared/geojson"; +import type { Quantity } from "../iiif/technical-v4"; +import type { AnnotationPage } from "./annotationPage"; +import type { AgentLike, LinkedResource, OneOrMany, ResourceReference, ServiceLike } from "./contentResource"; +import type { Scene } from "./scene"; +import type { Timeline } from "./timeline"; + +export type CanvasItem = + | AnnotationPage + | ResourceReference<"AnnotationPage" | "Canvas" | "Scene" | "Timeline"> + | string; +export type CanvasAnnotation = AnnotationPage | ResourceReference<"AnnotationPage"> | string; + +export type Canvas = Prettify< + Omit< + CanvasV3, + | "items" + | "annotations" + | "timeMode" + | "placeholderCanvas" + | "accompanyingCanvas" + | "thumbnail" + | "provider" + | "seeAlso" + | "service" + | "services" + | "rendering" + | "homepage" + | "partOf" + | "logo" + | "supplementary" + > & { + type: "Canvas"; + items?: OneOrMany; + annotations?: OneOrMany; + thumbnail?: OneOrMany; + provider?: OneOrMany>; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + navPlace?: Prettify; + rendering?: OneOrMany; + homepage?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + spatialScale?: Quantity | null; + timeMode?: string | null; + backgroundColor?: string | null; + placeholderContainer?: Canvas | Timeline | Scene | null; + accompanyingContainer?: Canvas | Timeline | Scene | null; + } +>; + +export type CanvasItemSchemas = "AnnotationPage" | "Canvas" | "Scene" | "Timeline"; diff --git a/src/presentation-4/types/legacy/src/resources/collection.d.ts b/src/presentation-4/types/legacy/src/resources/collection.d.ts new file mode 100644 index 0000000..af16e16 --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/collection.d.ts @@ -0,0 +1,49 @@ +import type { Collection as CollectionV3 } from "../../../../../presentation-3/types/legacy/src/resources/collection"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { AnnotationPage } from "./annotationPage"; +import type { Canvas } from "./canvas"; +import type { Manifest } from "./manifest"; +import type { AgentLike, LinkedResource, OneOrMany, ResourceReference, ServiceLike } from "./contentResource"; +import type { Scene } from "./scene"; +import type { Timeline } from "./timeline"; + +export type CollectionItem = Collection | Manifest | ResourceReference<"Collection" | "Manifest"> | string; +export type CollectionAnnotation = AnnotationPage | ResourceReference<"AnnotationPage"> | string; + +export type Collection = Prettify< + Omit< + CollectionV3, + | "items" + | "annotations" + | "placeholderCanvas" + | "accompanyingCanvas" + | "thumbnail" + | "provider" + | "seeAlso" + | "service" + | "services" + | "rendering" + | "homepage" + | "partOf" + | "logo" + | "supplementary" + > & { + type: "Collection"; + items: OneOrMany; + annotations?: OneOrMany; + thumbnail?: OneOrMany; + provider?: OneOrMany>; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + rendering?: OneOrMany; + homepage?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + placeholderContainer?: Canvas | Timeline | Scene | null; + accompanyingContainer?: Canvas | Timeline | Scene | null; + } +>; + +export type CollectionItemSchemas = "Collection" | "Manifest"; diff --git a/src/presentation-4/types/legacy/src/resources/contentResource.d.ts b/src/presentation-4/types/legacy/src/resources/contentResource.d.ts new file mode 100644 index 0000000..0059a85 --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/contentResource.d.ts @@ -0,0 +1,174 @@ +import type { + AnyMotivation, + SpecificResource as SpecificResourceV3, +} from "../../../../../presentation-3/types/legacy/src/resources/annotation"; +import type { IIIFExternalWebResource as IIIFExternalWebResourceV3 } from "../../../../../presentation-3/types/legacy/src/resources/contentResource"; +import type { + InternationalString, + MetadataItem as MetadataItemV3, +} from "../../../../../presentation-3/types/legacy/src/iiif/descriptive"; +import type { Reference } from "../../../../../presentation-3/types/legacy/src/reference"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { Selector } from "../extensions/presentation-4"; +import type { Provides, Quantity, Transform } from "../iiif/technical-v4"; +import type { SceneComponent } from "./scene-components"; + +export type LanguageMap = InternationalString & { + "@none"?: string[]; + none?: string[]; +}; +export type MetadataItem = + | MetadataItemV3 + | { label: LanguageMap; value: { [language: string]: Array } }; +export type OneOrMany = T | T[]; + +export type ResourceReference = Prettify< + Reference & { + label?: LanguageMap | string | null; + summary?: LanguageMap | null; + profile?: string | string[] | Record; + format?: string; + height?: number; + width?: number; + duration?: number; + first?: string | ResourceReference; + last?: string | ResourceReference; + next?: string | ResourceReference; + prev?: string | ResourceReference; + total?: number; + } +>; + +export type ServiceReference = { + id?: string; + "@id"?: string; + type?: string; + "@type"?: string; + profile?: string | string[] | Record; + label?: LanguageMap | string; + service?: OneOrMany; + services?: OneOrMany; + format?: string; + [key: string]: unknown; +}; + +export type ServiceLike = ServiceReference | string; +export type LinkedAnnotationLike = { + id?: string; + type: string; + motivation?: OneOrMany; + body?: OneOrMany; + target?: OneOrMany; +}; +export type LinkedResource = ContentResourceLike | SpecificResource | ResourceReference | LinkedAnnotationLike | string; +export type AgentLike = { + id: string; + type: "Agent"; + label?: LanguageMap | null; + homepage?: OneOrMany; + logo?: OneOrMany; + seeAlso?: OneOrMany; + service?: OneOrMany; + profile?: string | string[] | Record; +}; + +export type ContentResourceBase = Prettify< + Omit & { + id?: string; + "@id"?: string; + type?: string; + "@type"?: string; + profile?: string | string[] | Record; + label?: LanguageMap | string | null; + language?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + thumbnail?: OneOrMany; + metadata?: OneOrMany; + summary?: LanguageMap; + requiredStatement?: MetadataItem; + rights?: string | null; + seeAlso?: OneOrMany; + homepage?: OneOrMany; + rendering?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + spatialScale?: Quantity | null; + temporalScale?: Quantity | null; + provides?: OneOrMany; + fileSize?: number; + [key: string]: unknown; + } +>; + +export type ImageResource = Prettify< + Omit & { + type: "Image"; + height: number; + width: number; + } +>; + +export type AudioResource = Prettify< + Omit & { + type: "Audio" | "Sound"; + duration: number; + } +>; + +export type VideoResource = Prettify< + Omit & { + type: "Video"; + duration: number; + height: number; + width: number; + } +>; + +export type ModelResource = Prettify & { type: "Model" }>; +export type TextResource = Prettify & { type: "Text" }>; +export type DatasetResource = Prettify & { type: "Dataset" }>; + +export type TextualBodyResource = Prettify< + Omit & { + type: "TextualBody"; + value: string; + purpose?: OneOrMany; + } +>; + +export type ChoiceResource = Prettify< + Omit & { + type: "Choice"; + items?: OneOrMany; + default?: LinkedResource; + } +>; + +export type SpecificResource = Prettify< + Omit & { + type: "SpecificResource"; + source: OneOrMany; + selector?: OneOrMany; + transform?: OneOrMany; + action?: OneOrMany; + purpose?: OneOrMany; + scope?: OneOrMany; + [key: string]: unknown; + } +>; + +export type ContentResourceLike = + | ImageResource + | AudioResource + | VideoResource + | ModelResource + | TextResource + | DatasetResource + | TextualBodyResource + | ChoiceResource + | ContentResourceBase + | SceneComponent; + +export type ContentResource = ContentResourceLike | SpecificResource; diff --git a/src/presentation-4/types/legacy/src/resources/manifest.d.ts b/src/presentation-4/types/legacy/src/resources/manifest.d.ts new file mode 100644 index 0000000..6c28c2f --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/manifest.d.ts @@ -0,0 +1,62 @@ +import type { Manifest as ManifestV3 } from "../../../../../presentation-3/types/legacy/src/resources/manifest"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { AnnotationPage } from "./annotationPage"; +import type { + AgentLike, + LinkedResource, + OneOrMany, + ResourceReference, + ServiceLike, + SpecificResource, +} from "./contentResource"; +import type { Canvas } from "./canvas"; +import type { Range } from "./range"; +import type { Scene } from "./scene"; +import type { Timeline } from "./timeline"; + +export type ManifestItem = Canvas | Scene | Timeline | ResourceReference<"Canvas" | "Scene" | "Timeline"> | string; +export type ManifestStructure = Range | ResourceReference<"Range"> | string; +export type ManifestAnnotation = AnnotationPage | ResourceReference<"AnnotationPage"> | string; + +export type Manifest = Prettify< + Omit< + ManifestV3, + | "items" + | "structures" + | "annotations" + | "start" + | "placeholderCanvas" + | "accompanyingCanvas" + | "thumbnail" + | "provider" + | "seeAlso" + | "service" + | "services" + | "rendering" + | "homepage" + | "partOf" + | "logo" + | "supplementary" + > & { + type: "Manifest"; + items: OneOrMany; + structures?: OneOrMany; + annotations?: OneOrMany; + thumbnail?: OneOrMany; + provider?: OneOrMany>; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + rendering?: OneOrMany; + homepage?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + placeholderContainer?: Canvas | Timeline | Scene | null; + accompanyingContainer?: Canvas | Timeline | Scene | null; + start?: OneOrMany | string> | null; + guid?: string; + "dcterms:created"?: string; + "dcterms:modified"?: string; + } +>; diff --git a/src/presentation-4/types/legacy/src/resources/range.d.ts b/src/presentation-4/types/legacy/src/resources/range.d.ts new file mode 100644 index 0000000..a62864b --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/range.d.ts @@ -0,0 +1,59 @@ +import type { Range as RangeV3 } from "../../../../../presentation-3/types/legacy/src/resources/range"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { AnnotationPage } from "./annotationPage"; +import type { Canvas } from "./canvas"; +import type { + AgentLike, + LinkedResource, + OneOrMany, + ResourceReference, + ServiceLike, + SpecificResource, +} from "./contentResource"; +import type { Scene } from "./scene"; +import type { Timeline } from "./timeline"; + +export type RangeItem = + | Range + | Canvas + | Scene + | Timeline + | string + | SpecificResource + | ResourceReference<"Range" | "Canvas" | "Scene" | "Timeline">; + +export type RangeAnnotation = AnnotationPage | ResourceReference<"AnnotationPage"> | string; + +export type Range = Prettify< + Omit< + RangeV3, + | "items" + | "annotations" + | "start" + | "thumbnail" + | "provider" + | "seeAlso" + | "service" + | "services" + | "rendering" + | "homepage" + | "partOf" + | "logo" + | "supplementary" + > & { + type: "Range"; + items?: OneOrMany; + annotations?: OneOrMany; + thumbnail?: OneOrMany; + provider?: OneOrMany>; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + rendering?: OneOrMany; + homepage?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + start?: OneOrMany | string> | null; + } +>; diff --git a/src/presentation-4/types/legacy/src/resources/scene-components.d.ts b/src/presentation-4/types/legacy/src/resources/scene-components.d.ts new file mode 100644 index 0000000..e565c54 --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/scene-components.d.ts @@ -0,0 +1,84 @@ +import type { AudioResource, OneOrMany } from "./contentResource"; +import type { PointSelector, WktSelector } from "../extensions/presentation-4"; +import type { InteractionMode, Quantity } from "../iiif/technical-v4"; +import type { InternationalString } from "../../../../../presentation-3/types/legacy/src/iiif/descriptive"; +import type { Reference } from "../../../../../presentation-3/types/legacy/src/reference"; + +export type LookAtTarget = PointSelector | WktSelector | Reference; + +export type SceneComponentBase = { + id: string; + type: string; + label?: InternationalString; + [key: string]: unknown; +}; + +export type PerspectiveCamera = SceneComponentBase & { + type: "PerspectiveCamera"; + near?: number; + far?: number; + fieldOfView?: number; + lookAt?: LookAtTarget; + interactionMode?: OneOrMany; +}; + +export type OrthographicCamera = SceneComponentBase & { + type: "OrthographicCamera"; + near?: number; + far?: number; + viewHeight?: number; + lookAt?: LookAtTarget; + interactionMode?: OneOrMany; +}; + +export type AmbientLight = SceneComponentBase & { + type: "AmbientLight"; + color?: string; + intensity?: Quantity; +}; + +export type DirectionalLight = SceneComponentBase & { + type: "DirectionalLight"; + color?: string; + intensity?: Quantity; + lookAt?: LookAtTarget; +}; + +export type PointLight = SceneComponentBase & { + type: "PointLight"; + color?: string; + intensity?: Quantity; +}; + +export type SpotLight = SceneComponentBase & { + type: "SpotLight"; + color?: string; + intensity?: Quantity; + angle?: number; + lookAt?: LookAtTarget; +}; + +export type AmbientAudio = SceneComponentBase & { + type: "AmbientAudio"; + source: AudioResource | Reference<"Audio" | "Sound">; + volume?: Quantity; +}; + +export type PointAudio = SceneComponentBase & { + type: "PointAudio"; + source: AudioResource | Reference<"Audio" | "Sound">; + volume?: Quantity; +}; + +export type SpotAudio = SceneComponentBase & { + type: "SpotAudio"; + source: AudioResource | Reference<"Audio" | "Sound">; + volume?: Quantity; + angle?: number; + lookAt?: LookAtTarget; +}; + +export type Camera = PerspectiveCamera | OrthographicCamera; +export type Light = AmbientLight | DirectionalLight | PointLight | SpotLight; +export type AudioEmitter = AmbientAudio | PointAudio | SpotAudio; +export type SceneComponent = Camera | Light | AudioEmitter; diff --git a/src/presentation-4/types/legacy/src/resources/scene.d.ts b/src/presentation-4/types/legacy/src/resources/scene.d.ts new file mode 100644 index 0000000..aa8bd4c --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/scene.d.ts @@ -0,0 +1,55 @@ +import type { Canvas as CanvasV3 } from "../../../../../presentation-3/types/legacy/src/resources/canvas"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { GeoJSON } from "../../../../../shared/geojson"; +import type { Quantity } from "../iiif/technical-v4"; +import type { AnnotationPage } from "./annotationPage"; +import type { AgentLike, LinkedResource, OneOrMany, ResourceReference, ServiceLike } from "./contentResource"; +import type { Canvas } from "./canvas"; +import type { Timeline } from "./timeline"; + +export type SceneItem = AnnotationPage | ResourceReference<"AnnotationPage" | "Canvas" | "Scene" | "Timeline"> | string; +export type SceneAnnotation = AnnotationPage | ResourceReference<"AnnotationPage"> | string; + +export type Scene = Prettify< + Omit< + CanvasV3, + | "type" + | "width" + | "height" + | "timeMode" + | "viewingDirection" + | "items" + | "annotations" + | "placeholderCanvas" + | "accompanyingCanvas" + | "thumbnail" + | "provider" + | "seeAlso" + | "service" + | "services" + | "rendering" + | "homepage" + | "partOf" + | "logo" + | "supplementary" + > & { + type: "Scene"; + items?: OneOrMany; + annotations?: OneOrMany; + thumbnail?: OneOrMany; + provider?: OneOrMany>; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + navPlace?: Prettify; + rendering?: OneOrMany; + homepage?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + spatialScale?: Quantity | null; + backgroundColor?: string | null; + placeholderContainer?: Canvas | Timeline | Scene | null; + accompanyingContainer?: Canvas | Timeline | Scene | null; + } +>; diff --git a/src/presentation-4/types/legacy/src/resources/service.d.ts b/src/presentation-4/types/legacy/src/resources/service.d.ts new file mode 100644 index 0000000..661c103 --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/service.d.ts @@ -0,0 +1,32 @@ +import type { Service as ServiceV3 } from "../../../../../presentation-3/types/legacy/src/resources/service"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { LanguageMap, OneOrMany } from "./contentResource"; + +export type ServiceReference = { + id?: string; + "@id"?: string; + type?: string; + "@type"?: string; + profile?: string | string[] | Record; + label?: LanguageMap | string; + service?: OneOrMany; + services?: OneOrMany; + format?: string; + [key: string]: unknown; +}; + +export type GenericService = Prettify< + ServiceReference & { + id?: string; + "@id"?: string; + type?: string; + "@type"?: string; + profile?: string | string[] | Record; + label?: LanguageMap | string; + service?: OneOrMany; + services?: OneOrMany; + [key: string]: unknown; + } +>; + +export type Service = ServiceV3 | GenericService | string | Record; diff --git a/src/presentation-4/types/legacy/src/resources/timeline.d.ts b/src/presentation-4/types/legacy/src/resources/timeline.d.ts new file mode 100644 index 0000000..b7e4eab --- /dev/null +++ b/src/presentation-4/types/legacy/src/resources/timeline.d.ts @@ -0,0 +1,56 @@ +import type { Canvas as CanvasV3 } from "../../../../../presentation-3/types/legacy/src/resources/canvas"; +import type { Prettify } from "../../../../../presentation-3/types/legacy/src/utility"; +import type { GeoJSON } from "../../../../../shared/geojson"; +import type { AnnotationPage } from "./annotationPage"; +import type { AgentLike, LinkedResource, OneOrMany, ResourceReference, ServiceLike } from "./contentResource"; +import type { Canvas } from "./canvas"; +import type { Scene } from "./scene"; + +export type TimelineItem = + | AnnotationPage + | ResourceReference<"AnnotationPage" | "Canvas" | "Scene" | "Timeline"> + | string; +export type TimelineAnnotation = AnnotationPage | ResourceReference<"AnnotationPage"> | string; + +export type Timeline = Prettify< + Omit< + CanvasV3, + | "type" + | "width" + | "height" + | "timeMode" + | "viewingDirection" + | "items" + | "annotations" + | "placeholderCanvas" + | "accompanyingCanvas" + | "thumbnail" + | "provider" + | "seeAlso" + | "service" + | "services" + | "rendering" + | "homepage" + | "partOf" + | "logo" + | "supplementary" + > & { + type: "Timeline"; + duration: number; + items?: OneOrMany; + annotations?: OneOrMany; + thumbnail?: OneOrMany; + provider?: OneOrMany>; + seeAlso?: OneOrMany; + service?: OneOrMany; + services?: OneOrMany; + navPlace?: Prettify; + rendering?: OneOrMany; + homepage?: OneOrMany; + partOf?: OneOrMany; + logo?: OneOrMany; + supplementary?: OneOrMany; + placeholderContainer?: Canvas | Timeline | Scene | null; + accompanyingContainer?: Canvas | Timeline | Scene | null; + } +>; diff --git a/src/presentation-4/upgrade.ts b/src/presentation-4/upgrade.ts new file mode 100644 index 0000000..8f539bd --- /dev/null +++ b/src/presentation-4/upgrade.ts @@ -0,0 +1,237 @@ +import { convertPresentation2 } from "../presentation-2"; +import { + deepClone, + ensureArray, + getType, + PRESENTATION_4_CONTEXT, + setType, + setId, + getId, + isPlainObject, +} from "./utilities"; + +const containerTypes = new Set(["Timeline", "Canvas", "Scene"]); +type TypeLookup = Record; + +function hasPresentation4Context(resource: any): boolean { + if (!resource || typeof resource !== "object") { + return false; + } + const context = resource["@context"]; + if (typeof context === "string") { + return context.includes("/presentation/4/"); + } + if (Array.isArray(context)) { + return context.some((item) => typeof item === "string" && item.includes("/presentation/4/")); + } + return false; +} + +function toIdAndType(resource: any) { + if (!resource || typeof resource !== "object") { + return; + } + + if (typeof resource["@id"] === "string" && typeof resource.id !== "string") { + setId(resource, resource["@id"]); + } + + const atType = resource["@type"]; + if (typeof atType === "string" && typeof resource.type !== "string") { + setType(resource, atType); + } +} + +function inferTypeById(id: string | undefined, typeLookup: TypeLookup, fallbackType: string): string { + if (!id) { + return fallbackType; + } + const directMatch = typeLookup[id]; + if (typeof directMatch === "string") { + return directMatch; + } + const fragmentIndex = id.indexOf("#"); + if (fragmentIndex !== -1) { + const withoutFragment = id.slice(0, fragmentIndex); + const fragmentMatch = typeLookup[withoutFragment]; + if (typeof fragmentMatch === "string") { + return fragmentMatch; + } + } + return fallbackType; +} + +function collectKnownTypes(resource: any, typeLookup: TypeLookup = {}): TypeLookup { + if (Array.isArray(resource)) { + for (const item of resource) { + collectKnownTypes(item, typeLookup); + } + return typeLookup; + } + + if (!isPlainObject(resource)) { + return typeLookup; + } + + toIdAndType(resource); + + const id = getId(resource); + const type = getType(resource); + if (id && type && !typeLookup[id]) { + typeLookup[id] = type; + } + + for (const value of Object.values(resource)) { + if (value && typeof value === "object") { + collectKnownTypes(value, typeLookup); + } + } + + return typeLookup; +} + +function coerceSpecificResourceSource(source: any, typeLookup: TypeLookup, fallbackType: string): any { + if (Array.isArray(source)) { + const coerced = source.map((item) => coerceSpecificResourceSource(item, typeLookup, fallbackType)); + return coerced.length === 1 ? coerced[0] : coerced; + } + if (typeof source === "string") { + return { + id: source, + type: inferTypeById(source, typeLookup, fallbackType), + }; + } + if (!isPlainObject(source)) { + return source; + } + + toIdAndType(source); + const sourceId = getId(source); + if (sourceId && !getType(source)) { + setType(source, inferTypeById(sourceId, typeLookup, fallbackType)); + } + return source; +} + +function coerceAnnotationTarget(target: any, typeLookup: TypeLookup, fallbackType: string): any { + if (typeof target === "string") { + return { + id: target, + type: inferTypeById(target, typeLookup, fallbackType), + }; + } + + if (!isPlainObject(target)) { + return target; + } + + toIdAndType(target); + const targetType = getType(target); + + if (!targetType && (target.source || target.selector || target.transform || target.action)) { + setType(target, "SpecificResource"); + } + + if (getType(target) === "SpecificResource") { + if (typeof target.source !== "undefined") { + target.source = coerceSpecificResourceSource(target.source, typeLookup, fallbackType); + } else { + const targetId = getId(target); + if (targetId) { + target.source = { + id: targetId, + type: inferTypeById(targetId, typeLookup, fallbackType), + }; + } + } + return target; + } + + const targetId = getId(target); + if (targetId && !getType(target)) { + setType(target, inferTypeById(targetId, typeLookup, fallbackType)); + } + return target; +} + +function coerceAnnotation(annotation: any, typeLookup: TypeLookup, fallbackTargetType: string) { + annotation.motivation = ensureArray(annotation.motivation); + annotation.body = ensureArray(annotation.body); + annotation.target = ensureArray(annotation.target).map((target: any) => + coerceAnnotationTarget(target, typeLookup, fallbackTargetType) + ); + + if (annotation.bodyValue && annotation.body.length === 0) { + annotation.body = [ + { + type: "TextualBody", + value: annotation.bodyValue, + language: annotation.language, + }, + ]; + delete annotation.bodyValue; + } +} + +function coerceV4Shape( + resource: any, + typeLookup: TypeLookup, + isTopLevel = false, + containerTypeHint: string = "Canvas" +): any { + if (Array.isArray(resource)) { + return resource.map((item) => coerceV4Shape(item, typeLookup, false, containerTypeHint)); + } + + if (!isPlainObject(resource)) { + return resource; + } + + if (!isTopLevel && "@context" in resource) { + delete resource["@context"]; + } + + toIdAndType(resource); + const type = getType(resource); + const currentContainerType = type && containerTypes.has(type) ? type : containerTypeHint; + + if (resource.placeholderCanvas && !resource.placeholderContainer) { + resource.placeholderContainer = resource.placeholderCanvas; + delete resource.placeholderCanvas; + } + if (resource.accompanyingCanvas && !resource.accompanyingContainer) { + resource.accompanyingContainer = resource.accompanyingCanvas; + delete resource.accompanyingCanvas; + } + + if (type === "Annotation") { + coerceAnnotation(resource, typeLookup, currentContainerType); + } + + for (const [key, value] of Object.entries(resource)) { + if (value && typeof value === "object") { + resource[key] = coerceV4Shape(value, typeLookup, false, currentContainerType); + } + } + + if (isTopLevel && (type === "Manifest" || type === "Collection")) { + resource["@context"] = PRESENTATION_4_CONTEXT; + } + + return resource; +} + +export function upgradePresentation3To4(entity: any): any { + const clone = deepClone(entity); + const typeLookup = collectKnownTypes(clone); + return coerceV4Shape(clone, typeLookup, true); +} + +export function upgradeToPresentation4(entity: any): any { + const upgraded = convertPresentation2(deepClone(entity)); + const typeLookup = collectKnownTypes(upgraded); + if (hasPresentation4Context(upgraded)) { + return coerceV4Shape(upgraded, typeLookup, true); + } + return coerceV4Shape(upgraded, typeLookup, true); +} diff --git a/src/presentation-4/utilities.ts b/src/presentation-4/utilities.ts new file mode 100644 index 0000000..50801ad --- /dev/null +++ b/src/presentation-4/utilities.ts @@ -0,0 +1,260 @@ +export const EMPTY_ARRAY = Object.freeze([]) as readonly never[]; +export const EMPTY_OBJECT = Object.freeze({}) as Readonly>; +export const PRESENTATION_4_CONTEXT = "http://iiif.io/api/presentation/4/context.json"; +export const PRESENTATION_3_CONTEXT = "http://iiif.io/api/presentation/3/context.json"; +export const WILDCARD = Object.freeze({}); +export const HAS_PART = "iiif-parser:hasPart"; +export const PART_OF = "iiif-parser:partOf"; +export const EMPTY = Object.freeze([]); + +export type ValidationSeverity = "error" | "warning" | "info"; + +export type ValidationIssue = { + code: string; + severity: ValidationSeverity; + message: string; + path: string; + resourceType?: string; + resourceId?: string; + specRef?: string; +}; + +export type ValidationReport = { + valid: boolean; + issues: ValidationIssue[]; + stats: { + errors: number; + warnings: number; + info: number; + }; +}; + +export function createValidationReport(issues: ValidationIssue[]): ValidationReport { + const stats = { + errors: issues.filter((issue) => issue.severity === "error").length, + warnings: issues.filter((issue) => issue.severity === "warning").length, + info: issues.filter((issue) => issue.severity === "info").length, + }; + + return { + valid: stats.errors === 0, + issues, + stats, + }; +} + +export function isWildcard(object: any) { + if (object === WILDCARD || (object && typeof object === "object" && Object.keys(object).length === 0)) { + return true; + } + for (const i in object) { + return false; + } + return true; +} + +export function isPlainObject(value: unknown): value is Record { + return !!value && Object.prototype.toString.call(value) === "[object Object]"; +} + +export function deepClone(value: T): T { + if (typeof structuredClone !== "undefined") { + return structuredClone(value); + } + return JSON.parse(JSON.stringify(value)) as T; +} + +export function ensureArray(value: T | T[] | undefined | null): T[] { + if (value === null || typeof value === "undefined") { + return []; + } + return Array.isArray(value) ? value : [value]; +} + +export function ensureStringArray(value: unknown): string[] { + if (Array.isArray(value)) { + return value.filter((v): v is string => typeof v === "string"); + } + if (typeof value === "string") { + return [value]; + } + return []; +} + +export function getId(resource: any): string | undefined { + if (!resource || typeof resource !== "object") { + return undefined; + } + if (typeof resource.id === "string") { + return resource.id; + } + if (typeof resource["@id"] === "string") { + return resource["@id"]; + } + return undefined; +} + +export function getType(resource: any): string | undefined { + if (!resource || typeof resource !== "object") { + return undefined; + } + if (typeof resource.type === "string") { + return resource.type; + } + if (typeof resource["@type"] === "string") { + return resource["@type"]; + } + if (Array.isArray(resource["@type"])) { + return resource["@type"].find((type: unknown) => typeof type === "string"); + } + return undefined; +} + +export function setId(resource: Record, id: string) { + resource.id = id; + delete resource["@id"]; +} + +export function setType(resource: Record, type: string) { + resource.type = type; + delete resource["@type"]; +} + +export function isSpecificResource(resource: any): boolean { + return getType(resource) === "SpecificResource"; +} + +export function isSelector(resource: any): boolean { + const type = getType(resource); + return !!type && type.endsWith("Selector"); +} + +export function isQuantity(resource: any): boolean { + return getType(resource) === "Quantity"; +} + +export function isServiceLike(resource: any): boolean { + if (!resource || typeof resource !== "object") { + return false; + } + const type = getType(resource); + if (type && type.includes("Service")) { + return true; + } + return typeof resource.profile === "string" || Array.isArray(resource.service); +} + +export function hashString(input: string): string { + let hash = 5381; + let index = input.length; + while (index) { + hash = (hash * 33) ^ input.charCodeAt(--index); + } + const hex = (hash >>> 0).toString(16); + return hex.length % 2 === 1 ? `0${hex}` : hex; +} + +export function stableStringify(value: unknown): string { + if (Array.isArray(value)) { + return `[${value.map((item) => stableStringify(item)).join(",")}]`; + } + if (value && typeof value === "object") { + const object = value as Record; + const keys = Object.keys(object).sort(); + return `{${keys.map((key) => `${JSON.stringify(key)}:${stableStringify(object[key])}`).join(",")}}`; + } + return JSON.stringify(value); +} + +export function mintDeterministicId(resource: unknown, type: string, path = "$"): string { + const fingerprint = stableStringify({ type, path, resource }); + return `vault://iiif-parser/v4/${type}/${hashString(fingerprint)}`; +} + +export const containerTypes = new Set(["Timeline", "Canvas", "Scene"]); +export const structuralTypes = new Set(["Collection", "Manifest", "Range"]); +export const annotationTypes = new Set(["Annotation", "AnnotationPage", "AnnotationCollection"]); +export const sceneComponentTypes = new Set([ + "PerspectiveCamera", + "OrthographicCamera", + "AmbientLight", + "DirectionalLight", + "PointLight", + "SpotLight", + "AmbientAudio", + "PointAudio", + "SpotAudio", +]); +export const transformTypes = new Set(["RotateTransform", "ScaleTransform", "TranslateTransform"]); +export const contentTypes = new Set([ + "Image", + "Audio", + "Sound", + "Video", + "Model", + "Text", + "TextualBody", + "Dataset", + "Choice", +]); + +export function identifyResourceType(resource: any, typeHint?: string): string { + if (Array.isArray(resource)) { + if (typeHint) { + return typeHint; + } + throw new Error("Resource type is not known"); + } + + if (!resource || typeof resource !== "object") { + if (typeHint) { + return typeHint; + } + throw new Error("Resource must be an object"); + } + + const type = getType(resource); + if (type) { + if (containerTypes.has(type)) { + return type; + } + if (structuralTypes.has(type)) { + return type; + } + if (annotationTypes.has(type)) { + return type; + } + if (type === "SpecificResource") { + return "SpecificResource"; + } + if (type === "Agent") { + return "Agent"; + } + if (type === "Quantity") { + return "Quantity"; + } + if (type.endsWith("Selector")) { + return "Selector"; + } + if (transformTypes.has(type)) { + return "Transform"; + } + if (type.includes("Service") || type === "Service") { + return "Service"; + } + if (sceneComponentTypes.has(type) || contentTypes.has(type)) { + return "ContentResource"; + } + return "ContentResource"; + } + + if (isServiceLike(resource)) { + return "Service"; + } + + if (typeHint) { + return typeHint; + } + + throw new Error("Resource type is not known"); +} diff --git a/src/presentation-4/validator.ts b/src/presentation-4/validator.ts new file mode 100644 index 0000000..2b09c67 --- /dev/null +++ b/src/presentation-4/validator.ts @@ -0,0 +1,492 @@ +import { normalize, NormalizeResult } from "./normalize"; +import { Traverse } from "./traverse"; +import { upgradeToPresentation4 } from "./upgrade"; +import { + ValidationIssue, + ValidationReport, + createValidationReport, + ensureArray, + getId, + getType, + identifyResourceType, + isSpecificResource, +} from "./utilities"; + +export type ValidationMode = "tolerant" | "strict"; + +export type ValidateOptions = { + mode?: ValidationMode; + includePostNormalization?: boolean; +}; + +function hasPresentation4Context(resource: unknown): boolean { + if (!resource || typeof resource !== "object") { + return false; + } + + const context = (resource as any)["@context"]; + const values = Array.isArray(context) ? context : [context]; + return values.some((value) => typeof value === "string" && value.includes("/presentation/4/")); +} + +function issue( + issues: ValidationIssue[], + params: { + code: string; + message: string; + path: string; + severity?: ValidationIssue["severity"]; + resource?: any; + specRef?: string; + } +) { + issues.push({ + code: params.code, + severity: params.severity || "error", + message: params.message, + path: params.path, + resourceId: params.resource ? getId(params.resource) : undefined, + resourceType: params.resource ? getType(params.resource) : undefined, + specRef: params.specRef, + }); +} + +function isPositiveInteger(value: any): boolean { + return typeof value === "number" && Number.isInteger(value) && value > 0; +} + +function isPositiveNumber(value: any): boolean { + return typeof value === "number" && Number.isFinite(value) && value > 0; +} + +function isArrayOrUndefined(value: any): boolean { + return typeof value === "undefined" || Array.isArray(value); +} + +function walkResourceTree(resource: any, path: string, visitor: (node: any, nodePath: string) => void) { + if (Array.isArray(resource)) { + for (let i = 0; i < resource.length; i++) { + walkResourceTree(resource[i], `${path}[${i}]`, visitor); + } + return; + } + + if (!resource || typeof resource !== "object") { + return; + } + + visitor(resource, path); + + for (const [key, value] of Object.entries(resource)) { + if (value && typeof value === "object") { + walkResourceTree(value, `${path}.${key}`, visitor); + } + } +} + +export function runAuthoredShapeValidation(resource: any): ValidationIssue[] { + const issues: ValidationIssue[] = []; + + walkResourceTree(resource, "$", (node, nodePath) => { + if (getType(node) !== "Annotation") { + return; + } + + if (!Array.isArray(node.target)) { + issue(issues, { + code: "annotation-target-array", + message: "Annotation.target must be an array", + path: `${nodePath}.target`, + resource: node, + specRef: "#target", + }); + } else { + for (let i = 0; i < node.target.length; i++) { + const target = node.target[i]; + const targetPath = `${nodePath}.target[${i}]`; + + if (!target || typeof target !== "object" || Array.isArray(target)) { + issue(issues, { + code: "annotation-target-object", + message: "Annotation.target entries must be JSON objects", + path: targetPath, + resource: node, + specRef: "#target", + }); + continue; + } + + const targetType = getType(target); + if (!targetType) { + issue(issues, { + code: "annotation-target-type-required", + message: "Annotation.target object entries must include a type", + path: `${targetPath}.type`, + resource: node, + specRef: "#target", + }); + } + + const targetId = getId(target); + if (!targetId && targetType !== "SpecificResource") { + issue(issues, { + code: "annotation-target-id-required", + message: "Annotation.target object entries must include an id", + path: `${targetPath}.id`, + resource: node, + specRef: "#target", + }); + } + } + } + + if (typeof node.body !== "undefined" && !Array.isArray(node.body)) { + issue(issues, { + code: "annotation-body-array", + message: "Annotation.body must be an array when present", + path: `${nodePath}.body`, + resource: node, + specRef: "#body", + }); + } + + if (!isArrayOrUndefined(node.motivation)) { + issue(issues, { + code: "annotation-motivation-array", + message: "Annotation.motivation must be an array", + path: `${nodePath}.motivation`, + resource: node, + specRef: "#motivation", + }); + } + }); + + return issues; +} + +export function runRawValidation(resource: any): ValidationIssue[] { + const issues: ValidationIssue[] = []; + + const traversal = new Traverse({ + collection: [ + (collection, context) => { + if (collection.items && !Array.isArray(collection.items)) { + issue(issues, { + code: "collection-items-array", + message: "Collection.items must be an array", + path: `${context.path}.items`, + resource: collection, + specRef: "#items", + }); + } + }, + ], + manifest: [ + (manifest, context) => { + if (!Array.isArray(manifest.items) || manifest.items.length === 0) { + issue(issues, { + code: "manifest-items-required", + message: "Manifest.items must contain at least one container", + path: `${context.path}.items`, + resource: manifest, + specRef: "#items", + }); + return; + } + for (let i = 0; i < manifest.items.length; i++) { + const item = manifest.items[i]; + const type = identifyResourceType(item); + if (type !== "Timeline" && type !== "Canvas" && type !== "Scene") { + issue(issues, { + code: "manifest-item-invalid-type", + message: `Manifest.items[${i}] must be Timeline, Canvas, or Scene`, + path: `${context.path}.items[${i}]`, + resource: manifest, + specRef: "#items", + }); + } + } + }, + ], + timeline: [ + (timeline, context) => { + if (!isPositiveNumber(timeline.duration)) { + issue(issues, { + code: "timeline-duration-required", + message: "Timeline.duration must be a positive number", + path: `${context.path}.duration`, + resource: timeline, + specRef: "#duration", + }); + } + }, + ], + canvas: [ + (canvas, context) => { + if (!isPositiveInteger(canvas.width)) { + issue(issues, { + code: "canvas-width-required", + message: "Canvas.width must be a positive integer", + path: `${context.path}.width`, + resource: canvas, + specRef: "#width", + }); + } + if (!isPositiveInteger(canvas.height)) { + issue(issues, { + code: "canvas-height-required", + message: "Canvas.height must be a positive integer", + path: `${context.path}.height`, + resource: canvas, + specRef: "#height", + }); + } + }, + ], + annotation: [ + (annotation, context) => { + if (!Array.isArray(annotation.target)) { + issue(issues, { + code: "annotation-target-array", + message: "Annotation.target must be an array", + path: `${context.path}.target`, + resource: annotation, + specRef: "#target", + }); + } else { + for (let i = 0; i < annotation.target.length; i++) { + const target = annotation.target[i]; + const targetPath = `${context.path}.target[${i}]`; + + if (!target || typeof target !== "object" || Array.isArray(target)) { + issue(issues, { + code: "annotation-target-object", + message: "Annotation.target entries must be JSON objects", + path: targetPath, + resource: annotation, + specRef: "#target", + }); + continue; + } + + const targetType = getType(target); + if (!targetType) { + issue(issues, { + code: "annotation-target-type-required", + message: "Annotation.target object entries must include a type", + path: `${targetPath}.type`, + resource: annotation, + specRef: "#target", + }); + } + + const targetId = getId(target); + if (!targetId && targetType !== "SpecificResource") { + issue(issues, { + code: "annotation-target-id-required", + message: "Annotation.target object entries must include an id", + path: `${targetPath}.id`, + resource: annotation, + specRef: "#target", + }); + } + } + } + + if (typeof annotation.body !== "undefined" && !Array.isArray(annotation.body)) { + issue(issues, { + code: "annotation-body-array", + message: "Annotation.body must be an array when present", + path: `${context.path}.body`, + resource: annotation, + specRef: "#body", + }); + } + + if (!isArrayOrUndefined(annotation.motivation)) { + issue(issues, { + code: "annotation-motivation-array", + message: "Annotation.motivation must be an array", + path: `${context.path}.motivation`, + resource: annotation, + specRef: "#motivation", + }); + } + + const motivations = ensureArray(annotation.motivation); + if (motivations.includes("activating")) { + const body = ensureArray(annotation.body); + for (let i = 0; i < body.length; i++) { + const item = body[i]; + if (!isSpecificResource(item)) { + issue(issues, { + code: "activating-body-specific-resource", + message: "Activating annotation body entries must be SpecificResource", + path: `${context.path}.body[${i}]`, + resource: annotation, + specRef: "#action", + }); + continue; + } + if (!Array.isArray(item.action) || item.action.length === 0) { + issue(issues, { + code: "activating-body-action-array", + message: "SpecificResource.action must be a non-empty array on activating annotations", + path: `${context.path}.body[${i}].action`, + resource: annotation, + specRef: "#action", + }); + } + } + } + }, + ], + specificResource: [ + (specificResource, context) => { + if (!specificResource.source) { + issue(issues, { + code: "specific-resource-source-required", + message: "SpecificResource.source is required", + path: `${context.path}.source`, + resource: specificResource, + specRef: "#source", + }); + } + if (specificResource.action && !Array.isArray(specificResource.action)) { + issue(issues, { + code: "specific-resource-action-array", + message: "SpecificResource.action must be an array when present", + path: `${context.path}.action`, + resource: specificResource, + specRef: "#action", + }); + } + }, + ], + selector: [ + (selector, context) => { + if (!selector.type || !selector.type.endsWith("Selector")) { + issue(issues, { + code: "selector-type-invalid", + message: 'Selector.type must end with "Selector"', + path: `${context.path}.type`, + resource: selector, + specRef: "#Selectors", + }); + } + }, + ], + quantity: [ + (quantity, context) => { + if (typeof quantity.quantityValue !== "number") { + issue(issues, { + code: "quantity-value-required", + message: "Quantity.quantityValue must be a number", + path: `${context.path}.quantityValue`, + resource: quantity, + specRef: "#quantityValue", + }); + } + if (typeof quantity.unit !== "string") { + issue(issues, { + code: "quantity-unit-required", + message: "Quantity.unit must be a string", + path: `${context.path}.unit`, + resource: quantity, + specRef: "#unit", + }); + } + }, + ], + contentResource: [ + (resource, context) => { + if (resource.spatialScale && resource.spatialScale.type !== "Quantity") { + issue(issues, { + code: "spatial-scale-quantity", + message: "spatialScale must be a Quantity object", + path: `${context.path}.spatialScale`, + resource, + specRef: "#spatialScale", + }); + } + if (resource.temporalScale && resource.temporalScale.type !== "Quantity") { + issue(issues, { + code: "temporal-scale-quantity", + message: "temporalScale must be a Quantity object", + path: `${context.path}.temporalScale`, + resource, + specRef: "#temporalScale", + }); + } + }, + ], + }); + + traversal.traverseUnknown(resource, { path: "$" }); + return issues; +} + +export function runPostNormalizationValidation(result: NormalizeResult): ValidationIssue[] { + const issues: ValidationIssue[] = []; + const { entities, mapping, resource } = result; + + if (!resource || !resource.id || !resource.type) { + issue(issues, { + code: "normalized-root-ref-invalid", + message: "Normalized result is missing root resource reference", + path: "$.resource", + severity: "error", + }); + } else if (!entities[resource.type as keyof typeof entities]?.[resource.id]) { + issue(issues, { + code: "normalized-root-not-found", + message: "Normalized root reference does not resolve in entities", + path: "$.resource", + severity: "error", + }); + } + + for (const [id, type] of Object.entries(mapping)) { + const store = entities[type as keyof typeof entities]; + if (!store || !store[id]) { + issue(issues, { + code: "mapping-unresolved-entity", + message: `Mapping references missing entity ${type}(${id})`, + path: `$.mapping["${id}"]`, + severity: "error", + }); + } + } + + return issues; +} + +export function validatePresentation4(input: unknown, options: ValidateOptions = {}): ValidationReport { + const mode = options.mode || "tolerant"; + const includePostNormalization = + typeof options.includePostNormalization === "undefined" ? true : options.includePostNormalization; + + const issues: ValidationIssue[] = []; + if (hasPresentation4Context(input)) { + issues.push(...runAuthoredShapeValidation(input as any)); + } + + const upgraded = upgradeToPresentation4(input); + issues.push(...runRawValidation(upgraded)); + + if (includePostNormalization) { + const normalized = normalize(upgraded); + issues.push(...runPostNormalizationValidation(normalized)); + } + + const report = createValidationReport(issues); + + if (mode === "strict" && !report.valid) { + const first = report.issues.find((item) => item.severity === "error") || report.issues[0]; + const error = new Error(first ? `${first.code}: ${first.message}` : "Validation failed"); + (error as any).report = report; + throw error; + } + + return report; +} diff --git a/src/presentation-shared/helpers/create-helpers.ts b/src/presentation-shared/helpers/create-helpers.ts new file mode 100644 index 0000000..9a8429c --- /dev/null +++ b/src/presentation-shared/helpers/create-helpers.ts @@ -0,0 +1,186 @@ +export type DiscriminatedObject = { + type?: unknown; + "@type"?: unknown; + id?: unknown; + "@id"?: unknown; +}; + +export type ResourceSpec = { + type: string; + aliases?: readonly string[]; +}; + +export type ResourceSpecs> = { + [K in keyof T]: ResourceSpec; +}; + +/** + * Runtime-checked identity helpers that preserve the exact input literal type. + * + * Useful with `satisfies` to keep narrow literals while ensuring the expected + * IIIF discriminant and id shape are present at runtime. + */ +export type InferApi> = { + [K in keyof T]: (value: U) => U; +}; + +/** + * Runtime assertion helpers that return typed values from unknown input. + * + * Throws `TypeError` when the value does not match the expected discriminant + * or has an invalid `id` / `@id` shape. + */ +export type CastApi> = { + [K in keyof T]: (value: unknown) => T[K]; +}; + +type GuardName = `is${Capitalize}`; + +export type NarrowApi> = { + /** + * Generic discriminant check for any `type` / `@type` value. + */ + isType(value: unknown, type: string): boolean; + /** + * Build a reusable type guard for a discriminant string. + */ + byType(type: TType): (value: unknown) => value is { type: TType } | { "@type": TType }; +} & { + [K in keyof T as GuardName]: (value: unknown) => value is T[K]; +}; + +export type PresentationHelpers> = { + infer: InferApi; + cast: CastApi; + narrow: NarrowApi; + specs: ResourceSpecs; +}; + +function isObject(value: unknown): value is Record { + return !!value && typeof value === "object" && !Array.isArray(value); +} + +function capitalize(value: string): string { + return value.length > 0 ? `${value.slice(0, 1).toUpperCase()}${value.slice(1)}` : value; +} + +function getType(value: DiscriminatedObject): string | undefined { + if (typeof value.type === "string") { + return value.type; + } + + if (typeof value["@type"] === "string") { + return value["@type"]; + } + + if (Array.isArray(value["@type"])) { + const firstString = value["@type"].find((entry): entry is string => typeof entry === "string"); + return firstString; + } + + return undefined; +} + +function hasValidIdShape(value: DiscriminatedObject): boolean { + if (typeof value.id !== "undefined" && typeof value.id !== "string") { + return false; + } + + if (typeof value["@id"] !== "undefined" && typeof value["@id"] !== "string") { + return false; + } + + return true; +} + +function isExpectedType(actualType: string | undefined, expected: ResourceSpec): boolean { + if (!actualType) { + return false; + } + + if (actualType === expected.type) { + return true; + } + + return !!expected.aliases?.includes(actualType); +} + +function describeExpected(expected: ResourceSpec): string { + return [expected.type, ...(expected.aliases || [])].join(" | "); +} + +function assertDiscriminatedResource( + value: unknown, + expected: ResourceSpec, + label: string +): asserts value is DiscriminatedObject { + if (!isObject(value)) { + throw new TypeError(`${label} expected an object value.`); + } + + if (!hasValidIdShape(value)) { + throw new TypeError(`${label} expected id/@id to be a string when present.`); + } + + const actualType = getType(value); + if (!isExpectedType(actualType, expected)) { + const received = typeof actualType === "string" ? actualType : "undefined"; + throw new TypeError(`${label} expected type ${describeExpected(expected)} but received ${received}.`); + } +} + +function isDiscriminatedResource(value: unknown, expected: ResourceSpec): boolean { + if (!isObject(value) || !hasValidIdShape(value)) { + return false; + } + + return isExpectedType(getType(value), expected); +} + +/** + * Create version-specific `infer`, `cast`, and `narrow` helper APIs from a + * discriminant registry. + */ +export function createPresentationHelpers>( + specs: ResourceSpecs +): PresentationHelpers { + const infer = {} as InferApi; + const cast = {} as CastApi; + const narrow = { + isType(value: unknown, type: string): boolean { + return isDiscriminatedResource(value, { type }); + }, + byType(type: TType) { + return (value: unknown): value is { type: TType } | { "@type": TType } => + isDiscriminatedResource(value, { type }); + }, + } as NarrowApi; + + for (const key of Object.keys(specs) as Array) { + const expected = specs[key]; + const helperLabel = `infer.${key}`; + const castLabel = `cast.${key}`; + + infer[key] = ((value: TValue): TValue => { + assertDiscriminatedResource(value, expected, helperLabel); + return value; + }) as InferApi[typeof key]; + + cast[key] = ((value: unknown): T[typeof key] => { + assertDiscriminatedResource(value, expected, castLabel); + return value as T[typeof key]; + }) as CastApi[typeof key]; + + const guardName = `is${capitalize(key)}` as keyof NarrowApi; + (narrow as Record)[guardName as string] = ((value: unknown) => { + return isDiscriminatedResource(value, expected); + }) as unknown; + } + + return { + infer, + cast, + narrow, + specs, + }; +} diff --git a/src/presentation-types/UPSTREAM.md b/src/presentation-types/UPSTREAM.md new file mode 100644 index 0000000..a026887 --- /dev/null +++ b/src/presentation-types/UPSTREAM.md @@ -0,0 +1,13 @@ +# Upstream Type Provenance + +Vendored type definitions in this repository originate from the following upstream commits: + +- `presentation-2-types`: `7bc2399` +- `presentation-3-types`: `0622158` +- `presentation-3-normalized`: `86bc45a` + +These sources were vendored into: + +- `src/presentation-2/types/legacy` +- `src/presentation-3/types/legacy` +- `src/presentation-3-normalized/types/legacy` diff --git a/src/shared/canvas-fragments.ts b/src/shared/canvas-fragments.ts index a831a89..014aedb 100644 --- a/src/shared/canvas-fragments.ts +++ b/src/shared/canvas-fragments.ts @@ -1,11 +1,11 @@ export function splitCanvasFragment(originalUrl?: string): string[] { - const [url, fragment] = (originalUrl || '').split('#'); + const [url, fragment] = (originalUrl || "").split("#"); if (!fragment || !isValidCanvasFragment(fragment)) { - return [originalUrl || '', ''] as const; + return [originalUrl || "", ""] as const; } return [url as string, fragment] as const; } export function isValidCanvasFragment(fragment: string): boolean { - return fragment.includes('xywh=') || fragment.includes('t='); + return fragment.includes("xywh=") || fragment.includes("t="); } diff --git a/src/shared/compress-specific-resource.ts b/src/shared/compress-specific-resource.ts index 5b74bc5..9de8328 100644 --- a/src/shared/compress-specific-resource.ts +++ b/src/shared/compress-specific-resource.ts @@ -1,11 +1,15 @@ -import { SpecificResource } from '@iiif/presentation-3'; +import type { SpecificResource } from "../presentation-3/types"; export function compressSpecificResource( target: undefined | SpecificResource, - { allowSourceString = true, allowString = false, allowedStringType }: { allowString?: boolean; allowSourceString?: boolean; allowedStringType?: string } = {} + { + allowSourceString = true, + allowString = false, + allowedStringType, + }: { allowString?: boolean; allowSourceString?: boolean; allowedStringType?: string } = {} ): any { const fixSource = (resource: any) => { - if (allowSourceString && resource && resource.source && typeof resource.source !== 'string') { + if (allowSourceString && resource && resource.source && typeof resource.source !== "string") { const keys = Object.keys(resource.source); if (resource.source.id && resource.source.type && keys.length === 2) { return { ...resource, source: resource.source.id }; @@ -22,14 +26,14 @@ export function compressSpecificResource( const keys = Object.keys(target); if ( (keys.length === 2 && target.type && target.source) || - (keys.length === 3 && target.type && target.source && keys.indexOf('selector') !== -1 && !target.selector) + (keys.length === 3 && target.type && target.source && keys.indexOf("selector") !== -1 && !target.selector) ) { if (allowString && (!allowedStringType || allowedStringType === target.source.type)) { return target.source.id; } - if (target.source.type === 'ContentResource') { - return { type: 'SpecificResource', source: target.source.id }; + if (target.source.type === "ContentResource") { + return { type: "SpecificResource", source: target.source.id }; } // If all we have is the wrapped source, just return the ID. @@ -38,8 +42,8 @@ export function compressSpecificResource( if (target.selector) { if ( !Array.isArray(target.selector) && - typeof target.selector !== 'string' && - target.selector.type === 'FragmentSelector' + typeof target.selector !== "string" && + target.selector.type === "FragmentSelector" ) { const newId = `${target.source.id}#${target.selector.value}`; return allowString ? newId : { id: newId, type: target.source.type }; diff --git a/src/shared/expand-target.ts b/src/shared/expand-target.ts index 1d37091..1ec158c 100644 --- a/src/shared/expand-target.ts +++ b/src/shared/expand-target.ts @@ -1,5 +1,5 @@ -import type { ExternalWebResource, SpecificResource, W3CAnnotationTarget } from '@iiif/presentation-3'; -import { splitCanvasFragment } from './canvas-fragments'; +import type { ExternalWebResource, SpecificResource, W3CAnnotationTarget } from "../presentation-3/types"; +import { splitCanvasFragment } from "./canvas-fragments"; export function expandTargetToSpecificResource( target: W3CAnnotationTarget | W3CAnnotationTarget[], @@ -13,25 +13,25 @@ export function expandTargetToSpecificResource( return expandTargetToSpecificResource(target[0]!); } - if (typeof target === 'string') { + if (typeof target === "string") { const [id, fragment] = splitCanvasFragment(target); if (!fragment) { // This is an unknown selector. return { - type: 'SpecificResource', + type: "SpecificResource", source: { id, - type: (options.typeMap && (options.typeMap[id!] as any)) || options.typeHint || 'Unknown', + type: (options.typeMap && (options.typeMap[id!] as any)) || options.typeHint || "Unknown", }, }; } return { - type: 'SpecificResource', - source: { id, type: options.typeHint || 'Unknown' }, + type: "SpecificResource", + source: { id, type: options.typeHint || "Unknown" }, selector: { - type: 'FragmentSelector', + type: "FragmentSelector", value: fragment, }, }; @@ -39,29 +39,29 @@ export function expandTargetToSpecificResource( // @todo, how do we want to support choices for targets. if ( - target.type === 'Choice' || - target.type === 'List' || - target.type === 'Composite' || - target.type === 'Independents' + target.type === "Choice" || + target.type === "List" || + target.type === "Composite" || + target.type === "Independents" ) { // we also don't support these, just choose the first. return expandTargetToSpecificResource(target.items[0]!); } - if (!target.type && 'source' in target) { - (target as any).type = 'SpecificResource'; + if (!target.type && "source" in target) { + (target as any).type = "SpecificResource"; } - if (target.type === 'SpecificResource') { - if (target.source.type === 'Canvas' && target.source.partOf && typeof target.source.partOf === 'string') { + if (target.type === "SpecificResource") { + if (target.source.type === "Canvas" && target.source.partOf && typeof target.source.partOf === "string") { target.source.partOf = [ { id: target.source.partOf, - type: 'Manifest', + type: "Manifest", }, ]; } - const targetId = typeof target.source === 'string' ? target.source : target.source.id; + const targetId = typeof target.source === "string" ? target.source : target.source.id; const [, sourceFragment] = splitCanvasFragment(targetId); if (sourceFragment) { const parsed = expandTargetToSpecificResource(targetId, options); @@ -74,24 +74,24 @@ export function expandTargetToSpecificResource( if (target.selector) { return { ...target, - type: 'SpecificResource', + type: "SpecificResource", source: target.source, selector: target.selector, }; } return { ...target, - type: 'SpecificResource', + type: "SpecificResource", source: target.source, }; } if (target.id) { - if ((target as any).type === 'Canvas' && (target as any).partOf && typeof (target as any).partOf === 'string') { + if ((target as any).type === "Canvas" && (target as any).partOf && typeof (target as any).partOf === "string") { (target as any).partOf = [ { id: (target as any).partOf, - type: 'Manifest', + type: "Manifest", }, ]; } @@ -100,7 +100,7 @@ export function expandTargetToSpecificResource( if (!fragment) { // This is an unknown selector. return { - type: 'SpecificResource', + type: "SpecificResource", source: { ...(target as any), id, @@ -109,20 +109,20 @@ export function expandTargetToSpecificResource( } return { - type: 'SpecificResource', + type: "SpecificResource", source: { ...(target as any), id, }, selector: { - type: 'FragmentSelector', + type: "FragmentSelector", value: fragment, }, }; } return { - type: 'SpecificResource', + type: "SpecificResource", source: target as ExternalWebResource, }; } diff --git a/src/shared/geojson.ts b/src/shared/geojson.ts new file mode 100644 index 0000000..a166bee --- /dev/null +++ b/src/shared/geojson.ts @@ -0,0 +1,167 @@ +// Note: as of the RFC 7946 version of GeoJSON, Coordinate Reference Systems +// are no longer supported. (See https://tools.ietf.org/html/rfc7946#appendix-B)} + +/** + * The valid values for the "type" property of GeoJSON geometry objects. + * https://tools.ietf.org/html/rfc7946#section-1.4 + */ +export type GeoJsonGeometryTypes = Geometry["type"]; + +/** + * The value values for the "type" property of GeoJSON Objects. + * https://tools.ietf.org/html/rfc7946#section-1.4 + */ +export type GeoJsonTypes = GeoJSON["type"]; + +/** + * Bounding box + * https://tools.ietf.org/html/rfc7946#section-5 + */ +export type BBox = [number, number, number, number] | [number, number, number, number, number, number]; + +/** + * A Position is an array of coordinates. + * https://tools.ietf.org/html/rfc7946#section-3.1.1 + * Array should contain between two and three elements. + * The previous GeoJSON specification allowed more elements (e.g., which could be used to represent M values), + * but the current specification only allows X, Y, and (optionally) Z to be defined. + */ +export type Position = number[]; // [number, number] | [number, number, number]; + +/** + * The base GeoJSON object. + * https://tools.ietf.org/html/rfc7946#section-3 + * The GeoJSON specification also allows foreign members + * (https://tools.ietf.org/html/rfc7946#section-6.1) + * Developers should use "&" type in TypeScript or extend the interface + * to add these foreign members. + */ +export interface GeoJsonObject { + // Don't include foreign members directly into this type def. + // in order to preserve type safety. + // [key: string]: any; + /** + * Specifies the type of GeoJSON object. + */ + type: GeoJsonTypes; + /** + * Optional identifier used by some GeoJSON producers (including IIIF navPlace payloads). + */ + id?: string | number | undefined; + /** + * Bounding box of the coordinate range of the object's Geometries, Features, or Feature Collections. + * The value of the bbox member is an array of length 2*n where n is the number of dimensions + * represented in the contained geometries, with all axes of the most southwesterly point + * followed by all axes of the more northeasterly point. + * The axes order of a bbox follows the axes order of geometries. + * https://tools.ietf.org/html/rfc7946#section-5 + */ + bbox?: BBox | undefined; +} + +/** + * Union of GeoJSON objects. + */ +export type GeoJSON = Geometry | Feature | FeatureCollection; + +/** + * Geometry object. + * https://tools.ietf.org/html/rfc7946#section-3 + */ +export type Geometry = Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon | GeometryCollection; +export type GeometryObject = Geometry; + +/** + * Point geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.2 + */ +export interface Point extends GeoJsonObject { + type: "Point"; + coordinates: Position; +} + +/** + * MultiPoint geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.3 + */ +export interface MultiPoint extends GeoJsonObject { + type: "MultiPoint"; + coordinates: Position[]; +} + +/** + * LineString geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.4 + */ +export interface LineString extends GeoJsonObject { + type: "LineString"; + coordinates: Position[]; +} + +/** + * MultiLineString geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.5 + */ +export interface MultiLineString extends GeoJsonObject { + type: "MultiLineString"; + coordinates: Position[][]; +} + +/** + * Polygon geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.6 + */ +export interface Polygon extends GeoJsonObject { + type: "Polygon"; + coordinates: Position[][]; +} + +/** + * MultiPolygon geometry object. + * https://tools.ietf.org/html/rfc7946#section-3.1.7 + */ +export interface MultiPolygon extends GeoJsonObject { + type: "MultiPolygon"; + coordinates: Position[][][]; +} + +/** + * Geometry Collection + * https://tools.ietf.org/html/rfc7946#section-3.1.8 + */ +export interface GeometryCollection extends GeoJsonObject { + type: "GeometryCollection"; + geometries: G[]; +} + +export type GeoJsonProperties = { [name: string]: any } | null; + +/** + * A feature object which contains a geometry and associated properties. + * https://tools.ietf.org/html/rfc7946#section-3.2 + */ +export interface Feature extends GeoJsonObject { + type: "Feature"; + /** + * The feature's geometry + */ + geometry: G; + /** + * A value that uniquely identifies this feature in a + * https://tools.ietf.org/html/rfc7946#section-3.2. + */ + id?: string | number | undefined; + /** + * Properties associated with this feature. + */ + properties: P; +} + +/** + * A collection of feature objects. + * https://tools.ietf.org/html/rfc7946#section-3.3 + */ +export interface FeatureCollection extends GeoJsonObject { + type: "FeatureCollection"; + features: Array>; +} diff --git a/src/shared/image-api-profiles.ts b/src/shared/image-api-profiles.ts index 2ce0680..2bd272e 100644 --- a/src/shared/image-api-profiles.ts +++ b/src/shared/image-api-profiles.ts @@ -1,41 +1,41 @@ -export const STANFORD_IIIF_IMAGE_COMPLIANCE_0 = 'http://library.stanford.edu/iiif/image-api/compliance.html#level0'; -export const STANFORD_IIIF_IMAGE_COMPLIANCE_1 = 'http://library.stanford.edu/iiif/image-api/compliance.html#level1'; -export const STANFORD_IIIF_IMAGE_COMPLIANCE_2 = 'http://library.stanford.edu/iiif/image-api/compliance.html#level2'; -export const STANFORD_IIIF_IMAGE_CONFORMANCE_0 = 'http://library.stanford.edu/iiif/image-api/conformance.html#level0'; -export const STANFORD_IIIF_IMAGE_CONFORMANCE_1 = 'http://library.stanford.edu/iiif/image-api/conformance.html#level1'; -export const STANFORD_IIIF_IMAGE_CONFORMANCE_2 = 'http://library.stanford.edu/iiif/image-api/conformance.html#level2'; +export const STANFORD_IIIF_IMAGE_COMPLIANCE_0 = "http://library.stanford.edu/iiif/image-api/compliance.html#level0"; +export const STANFORD_IIIF_IMAGE_COMPLIANCE_1 = "http://library.stanford.edu/iiif/image-api/compliance.html#level1"; +export const STANFORD_IIIF_IMAGE_COMPLIANCE_2 = "http://library.stanford.edu/iiif/image-api/compliance.html#level2"; +export const STANFORD_IIIF_IMAGE_CONFORMANCE_0 = "http://library.stanford.edu/iiif/image-api/conformance.html#level0"; +export const STANFORD_IIIF_IMAGE_CONFORMANCE_1 = "http://library.stanford.edu/iiif/image-api/conformance.html#level1"; +export const STANFORD_IIIF_IMAGE_CONFORMANCE_2 = "http://library.stanford.edu/iiif/image-api/conformance.html#level2"; export const STANFORD_IIIF_1_IMAGE_COMPLIANCE_0 = - 'http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level0'; + "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level0"; export const STANFORD_IIIF_1_IMAGE_COMPLIANCE_1 = - 'http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1'; + "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level1"; export const STANFORD_IIIF_1_IMAGE_COMPLIANCE_2 = - 'http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2'; + "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2"; export const STANFORD_IIIF_1_IMAGE_CONFORMANCE_0 = - 'http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level0'; + "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level0"; export const STANFORD_IIIF_1_IMAGE_CONFORMANCE_1 = - 'http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1'; + "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1"; export const STANFORD_IIIF_1_IMAGE_CONFORMANCE_2 = - 'http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level2'; -export const IIIF_1_IMAGE_LEVEL_0 = 'http://iiif.io/api/image/1/level0.json'; -export const IIIF_1_IMAGE_LEVEL_0_PROFILE = 'http://iiif.io/api/image/1/profiles/level0.json'; -export const IIIF_1_IMAGE_LEVEL_1 = 'http://iiif.io/api/image/1/level1.json'; -export const IIIF_1_IMAGE_LEVEL_1_PROFILE = 'http://iiif.io/api/image/1/profiles/level1.json'; -export const IIIF_1_IMAGE_LEVEL_2 = 'http://iiif.io/api/image/1/level2.json'; -export const IIIF_1_IMAGE_LEVEL_2_PROFILE = 'http://iiif.io/api/image/1/profiles/level2.json'; -export const IIIF_2_IMAGE_LEVEL_0 = 'http://iiif.io/api/image/2/level0.json'; -export const IIIF_2_IMAGE_LEVEL_0_PROFILE = 'http://iiif.io/api/image/2/profiles/level0.json'; -export const IIIF_2_IMAGE_LEVEL_1 = 'http://iiif.io/api/image/2/level1.json'; -export const IIIF_2_IMAGE_LEVEL_1_PROFILE = 'http://iiif.io/api/image/2/profiles/level1.json'; -export const IIIF_2_IMAGE_LEVEL_2 = 'http://iiif.io/api/image/2/level2.json'; -export const IIIF_2_IMAGE_LEVEL_2_PROFILE = 'http://iiif.io/api/image/2/profiles/level2.json'; -export const IIIF_3_IMAGE_LEVEL_0 = 'level0'; -export const IIIF_3_IMAGE_LEVEL_1 = 'level1'; -export const IIIF_3_IMAGE_LEVEL_2 = 'level2'; + "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level2"; +export const IIIF_1_IMAGE_LEVEL_0 = "http://iiif.io/api/image/1/level0.json"; +export const IIIF_1_IMAGE_LEVEL_0_PROFILE = "http://iiif.io/api/image/1/profiles/level0.json"; +export const IIIF_1_IMAGE_LEVEL_1 = "http://iiif.io/api/image/1/level1.json"; +export const IIIF_1_IMAGE_LEVEL_1_PROFILE = "http://iiif.io/api/image/1/profiles/level1.json"; +export const IIIF_1_IMAGE_LEVEL_2 = "http://iiif.io/api/image/1/level2.json"; +export const IIIF_1_IMAGE_LEVEL_2_PROFILE = "http://iiif.io/api/image/1/profiles/level2.json"; +export const IIIF_2_IMAGE_LEVEL_0 = "http://iiif.io/api/image/2/level0.json"; +export const IIIF_2_IMAGE_LEVEL_0_PROFILE = "http://iiif.io/api/image/2/profiles/level0.json"; +export const IIIF_2_IMAGE_LEVEL_1 = "http://iiif.io/api/image/2/level1.json"; +export const IIIF_2_IMAGE_LEVEL_1_PROFILE = "http://iiif.io/api/image/2/profiles/level1.json"; +export const IIIF_2_IMAGE_LEVEL_2 = "http://iiif.io/api/image/2/level2.json"; +export const IIIF_2_IMAGE_LEVEL_2_PROFILE = "http://iiif.io/api/image/2/profiles/level2.json"; +export const IIIF_3_IMAGE_LEVEL_0 = "level0"; +export const IIIF_3_IMAGE_LEVEL_1 = "level1"; +export const IIIF_3_IMAGE_LEVEL_2 = "level2"; // Non-standard -export const IIIF_2_IMAGE_LEVEL_0_NO_JSON = 'http://iiif.io/api/image/2/level0'; -export const IIIF_2_IMAGE_LEVEL_1_NO_JSON = 'http://iiif.io/api/image/2/level1'; -export const IIIF_2_IMAGE_LEVEL_2_NO_JSON = 'http://iiif.io/api/image/2/level2'; +export const IIIF_2_IMAGE_LEVEL_0_NO_JSON = "http://iiif.io/api/image/2/level0"; +export const IIIF_2_IMAGE_LEVEL_1_NO_JSON = "http://iiif.io/api/image/2/level1"; +export const IIIF_2_IMAGE_LEVEL_2_NO_JSON = "http://iiif.io/api/image/2/level2"; export const level1Support = [ IIIF_2_IMAGE_LEVEL_1_NO_JSON, diff --git a/src/shared/is-specific-resource.ts b/src/shared/is-specific-resource.ts index 5e96b2f..800cf38 100644 --- a/src/shared/is-specific-resource.ts +++ b/src/shared/is-specific-resource.ts @@ -1,14 +1,14 @@ -import { SpecificResource } from '@iiif/presentation-3'; +import type { SpecificResource } from "../presentation-3/types"; export function isSpecificResource(resource: unknown): resource is SpecificResource { - if (typeof resource === 'string') { + if (typeof resource === "string") { return false; } - if (resource && !(resource as any).type && 'source' in (resource as any)) { - (resource as any).type = 'SpecificResource'; + if (resource && !(resource as any).type && "source" in (resource as any)) { + (resource as any).type = "SpecificResource"; return true; } - return !!resource && (resource as any).type === 'SpecificResource'; + return !!resource && (resource as any).type === "SpecificResource"; } diff --git a/src/shared/remove-undefined-properties.ts b/src/shared/remove-undefined-properties.ts index e9dc1b2..705bf3d 100644 --- a/src/shared/remove-undefined-properties.ts +++ b/src/shared/remove-undefined-properties.ts @@ -1,6 +1,6 @@ export function removeUndefinedProperties(obj: any) { for (const prop in obj) { - if (typeof obj[prop] === 'undefined' || obj[prop] === null) { + if (typeof obj[prop] === "undefined" || obj[prop] === null) { delete obj[prop]; } } diff --git a/src/shared/to-ref.ts b/src/shared/to-ref.ts index af9b6dd..d603699 100644 --- a/src/shared/to-ref.ts +++ b/src/shared/to-ref.ts @@ -1,14 +1,14 @@ -import { Reference } from '@iiif/presentation-3'; -import { isSpecificResource } from './is-specific-resource'; +import type { Reference } from "../presentation-3/types"; +import { isSpecificResource } from "./is-specific-resource"; export function toRef(reference: any, _typeHint?: T): Reference | undefined { - const type = (_typeHint || 'unknown') as T; + const type = (_typeHint || "unknown") as T; if (!reference) { return undefined; } - if (typeof reference === 'string') { + if (typeof reference === "string") { return { id: reference, type }; } @@ -16,11 +16,11 @@ export function toRef(reference: any, _typeHint?: T): Re return toRef(reference.source, _typeHint); } - let _type = type && type !== 'unknown' ? type : (reference as any).type || (reference as any)['@type']; - const _id = (reference as any).id || (reference as any)['@id']; + let _type = type && type !== "unknown" ? type : (reference as any).type || (reference as any)["@type"]; + const _id = (reference as any).id || (reference as any)["@id"]; - if (_type && _type.indexOf(':') !== -1) { - _type = _type.split(':').pop(); + if (_type && _type.indexOf(":") !== -1) { + _type = _type.split(":").pop(); } if (_id && _type) { diff --git a/src/upgrader.ts b/src/upgrader.ts index 6857755..8f7ac05 100644 --- a/src/upgrader.ts +++ b/src/upgrader.ts @@ -1,3 +1,3 @@ -import { convertPresentation2 } from './presentation-2/upgrader'; +import { convertPresentation2 } from "./presentation-2/upgrader"; export const upgrade = convertPresentation2; diff --git a/tsconfig.json b/tsconfig.json index c3a09c1..87fc52c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,7 @@ "strict": true, "target": "ES2022", "allowJs": true, - "types": ["vitest/globals"] + "types": ["vitest/globals", "@types/node"] }, "include": ["./src/**/*", "./src/*", "./__tests__/**/*", "./demos/**/*", "./fixtures/**/*"], "exclude": ["node_modules", "dist"] diff --git a/tsdown.config.ts b/tsdown.config.ts index 172efd2..c02d6f5 100644 --- a/tsdown.config.ts +++ b/tsdown.config.ts @@ -9,7 +9,15 @@ export default defineConfig({ index: 'src/index.ts', 'image-3': 'src/image-3/index.ts', 'presentation-2': 'src/presentation-2/index.ts', + 'presentation-2/types': 'src/presentation-2/types/index.ts', 'presentation-3': 'src/presentation-3/index.ts', + 'presentation-3/types': 'src/presentation-3/types/index.ts', + 'presentation-3-normalized': 'src/presentation-3-normalized/index.ts', + 'presentation-3-normalized/types': 'src/presentation-3-normalized/types/index.ts', + 'presentation-4': 'src/presentation-4/index.ts', + 'presentation-4/types': 'src/presentation-4/types/index.ts', + 'presentation-4-normalized': 'src/presentation-4-normalized/index.ts', + 'presentation-4-normalized/types': 'src/presentation-4-normalized/types/index.ts', upgrader: 'src/upgrader.ts', strict: 'src/presentation-3/strict-upgrade.ts', }, diff --git a/vite.config.ts b/vite.config.ts index cf361c0..0dfb4b0 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,6 +4,10 @@ export default defineConfig({ plugins: [], test: { include: ['**/*.{test,tests,spec}.{js,mjs,cjs,ts,mts,cts}'], + typecheck: { + include: ['__tests__/types/**/*.test-d.ts'], + exclude: ['node_modules/**', 'dist/**'], + }, environment: 'happy-dom', globals: true, },